#guideline-anchor2 {
  padding-bottom: 40px;
}

@media screen and (max-width: 991px) {
  #guideline-anchor2 {
    padding-bottom: 30px;
  }
}

.guideline {
  width: 100%;
}

.guideline-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .guideline-contents {
    gap: 40px;
    margin-top: 30px;
  }
}

.guideline-wrap {
  width: 100%;
}

.guideline-title {
  position: relative;
  max-width: 100%;
}

.guideline-title>picture img {
  display: block;
  width: 100%;
  height: auto;
}

.guideline-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15%;
  margin: 0 auto;
  width: 254px;
  height: 53px;
  padding: 9px 0;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: bold;
  text-decoration: none;
}


@media screen and (min-width: 992px) {
  .guideline-title.tgtt02 .guideline-btn {
    left: 22%;
  }
}

.guideline-title.tgtt01 .guideline-btn {
  background: #84ccc9;
  box-shadow: 0 6px 0 #519390;
}

.guideline-title.tgtt02 .guideline-btn {
  background: #8db33f;
  box-shadow: 0 6px 0 #6e8e2e;
}

.guideline-title.tgtt03 .guideline-btn {
  background: #e9837f;
  box-shadow: 0 6px 0 #ac5551;
}

.guideline-title.tgtt04 .guideline-btn {
  background: #6e9c9e;
  box-shadow: 0 6px 0 #467577;
}

@media screen and (max-width: 991px) {
  .guideline-btn {
    height: auto;
    font-size: 3vw;
    left: 7%;
    right: auto;
    width: 43%;
    bottom: 20%;
    letter-spacing: 0;
  }

  .guideline-title.tgtt01 .guideline-btn {
    left: 0;
    right: 0;
    width: 53%;
    bottom: 8%;
    letter-spacing: 3px;
  }
}

.guideline-title .guideline-btn .btn-img {
  position: absolute;
  top: 10px;
  right: -8px;
  width: 50px;
}

.guideline-title.tgtt01 .guideline-btn {
  animation: autoPush01 2s infinite;
}

.guideline-title.tgtt02 .guideline-btn {
  animation: autoPush02 2s infinite;
}

.guideline-title.tgtt03 .guideline-btn {
  animation: autoPush03 2s infinite;
}

.guideline-title.tgtt04 .guideline-btn {
  animation: autoPush04 2s infinite;
}

@keyframes autoPush01 {
  0%, 80%, 100% {
    transform: translateX(0) translateY(0);
    box-shadow: 0 6px 0 #519390;
  }

  85% {
    transform: translateX(0) translateY(6px);
    box-shadow: 0 1px 0 #519390;
  }

  92% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes autoPush02 {
  0%, 80%, 100% {
    transform: translateX(0) translateY(0);
    box-shadow: 0 6px 0 #6e8e2e;
  }

  85% {
    transform: translateX(0) translateY(6px);
    box-shadow: 0 1px 0 #6e8e2e;
  }

  92% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes autoPush03 {
  0%, 80%, 100% {
    transform: translateX(0) translateY(0);
    box-shadow: 0 6px 0 #ac5551;
  }

  85% {
    transform: translateX(0) translateY(6px);
    box-shadow: 0 1px 0 #ac5551;
  }

  92% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes autoPush04 {
  0%, 80%, 100% {
    transform: translateX(0) translateY(0);
    box-shadow: 0 6px 0 #467577;
  }

  85% {
    transform: translateX(0) translateY(6px);
    box-shadow: 0 1px 0 #467577;
  }

  92% {
    transform: translateX(0) translateY(0);
  }
}

@media screen and (max-width: 991px) {
  .guideline-title {
    margin-bottom: 20px;
  }
}

.toggle_title {
  cursor: pointer;
}

.guideline-content {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
}

@media screen and (max-width: 991px) {
  .guideline-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* utility-------------------------------- */
span.red {
  color: #f25540;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.marker {
  padding-bottom: 2px;
  background: linear-gradient(transparent 50%, #faf29c 0%);
}

.tx-style01 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  font-size: 110%;
}

/* 共通-------------------------------- */
/* block */
.block {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .block {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.block_title {
  width: 100%;
  height: 50px;
}

@media screen and (max-width: 991px) {
  .block_title {
    height: 40px;
  }

  .guideline02_point .block_title {
    height: 90px;
  }
}

.block_title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.block_content {
  width: 100%;
}

/* problem */
.problem_content {
  width: 100%;
}

.problem_content-list-wrap {
  padding: 20px 10px 25px 40px;
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 991px) {
  .problem_content-list-wrap {
    padding: 20px 10px 0;
    flex-direction: column;
    align-items: initial;
  }
}

.problem_content-list-bg {
  width: 272px;
  flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .problem_content-list-bg {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.problem_content-list {
  width: 100%;
  transform: translateX(-30px);
  padding-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .problem_content-list {
    transform: none;
    padding-bottom: 0;
  }
}

.problem_content-list ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem_content-list ul li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .problem_content-list ul li {
    font-size: 17px;
  }
}

.problem_content-list ul li::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.guideline02_problem .problem_content-list ul li::before {
  background-image: url(../../common/img/guideline_e/guideline02_problem-check.png);
}

.guideline03_problem .problem_content-list ul li::before {
  background-image: url(../../common/img/guideline_e/guideline03_problem-check.png);
}

.problem_content-text {
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .problem_content-text {
    font-size: 15px;
    margin-top: 20px;
    text-align: left;
    margin-bottom: 40px;
  }
}

.problem_content-arrow-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
}

@media screen and (max-width: 991px) {
  .problem_content-arrow-wrap {
    gap: 20px;
  }
}

.problem_content-arrow-img {
  width: 100%;
}

.problem_content-arrow {
  width: 180px;
  height: 35px;
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0%);
  background-color: #a8cccc;
}

@media screen and (max-width: 991px) {
  .problem_content-arrow {
    width: 100px;
    height: 20px;
  }
}

.problem_content-arrow-text {
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .problem_content-arrow-text {
    font-size: 15px;
    text-align: left;
  }
}

/* cta */
.guideline_cta {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

/* cta */
.guideline_cta {
  width: 90%;
  max-width: 800px;
  margin-top: 30px;
}

.btn-guideline_cta {
  opacity: 1;
  display: block;
  padding-bottom: 6px;
}

.btn-guideline_cta:hover {
  transform: translateY(6px);
}

.guideline_cta .btm-img {
  position: relative;
  z-index: 2;
}

.guideline_cta .btm-img img {
  max-width: 100%;
  width: auto;
}

.guideline_cta .btm-tx {
  color: #FFF;
  font-weight: bold;
  font-size: 35px;
  background: #f25540;
  box-shadow: 0 6px 0 #bd4131;
  padding: 35px 20px 30px;
  border-radius: 50px;
  margin-top: -30px;
}

.guideline_cta a:hover,
.guideline_cta a:active {
  opacity: 1;
}

.guideline_cta a:hover .btm-tx,
.guideline_cta a:active .btm-tx {
  transform: translateY(6px);
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .guideline_cta {
    margin-top: 20px;
  }

  .guideline_cta .btm-tx {
    font-size: 4vw;
  }

  .guideline_cta .btm-img {
    width: 75%;
    margin: 0 auto;
  }
}

/*about -------------------------------- */
.about {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about_wrap {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-areas:
    'img title'
    'img text';
  grid-template-columns: max-content 1fr;
  gap: 20px 30px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  border: 4px solid #d3efc5;
}

@media screen and (max-width: 991px) {
  .about_wrap {
    grid-template-areas:
      'img title'
      'text text';
    grid-template-columns: 1fr 2.2fr;
    align-items: center;
    gap: 35px 20px;
    padding: 20px 25px 35px;
  }
}

.about_logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 92px;
}

@media screen and (max-width: 991px) {
  .about_logo {
    width: 72px;
  }
}

.about_title{
  grid-area: title;
}
.about_title img {
  width: 100%;
  max-width: 375px;
}

@media screen and (max-width: 991px) {
  .about_title {
    max-width: initial;
  }
}

.about_title-inner picture img {
  width: 100%;
}

.about_img {
  grid-area: img;
  width: 100%;
  max-width: 130px;
}

@media screen and (max-width: 991px) {
  .about_img {
    max-width: initial;
  }
}

.about_text {
  grid-area: text;
}

@media screen and (max-width: 991px) {
  .about_text {
    padding-top: 0;
  }
}

.about_text p {
  font-size: 18px;
  padding-bottom: 20px;
}

@media screen and (max-width: 500px) {
  .about_text p {
    font-size: 16px;
  }
}

.about_text p:last-child {
  padding-bottom: 0;
}

/* 01 写真共有が、こんなに楽になるなんて。 -------------------------------- */
/* intro */
.guideline01_intro {
  width: 100%;
}

.guideline01_intro_title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  .guideline01_intro_title {
    align-items: flex-start;
    gap: 10px;
  }
}

.guideline01_intro_title-img {
  width: 100%;
  max-width: 620px;
}

@media screen and (max-width: 991px) {
  .guideline01_intro_title-img {
    align-self: center;
    max-width: 310px;
  }
}

.guideline01_intro_title-text {
  font-size: 36px;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .guideline01_intro_title-text {
    font-size: 20px;
  }
}

.guideline01_intro_text {
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .guideline01_intro_text {
    margin-top: 25px;
  }
}

.guideline01_intro_text p {
  font-size: 18px;
  padding-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .guideline01_intro_text p {
    font-size: 15px;
    padding-bottom: 15px;
  }
}

.guideline01_intro_text p:last-child {
  padding-bottom: 0;
}

.guideline01_intro_case {
  width: 100%;
  margin-top: 40px;
}

.guideline01_intro_case-title {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .guideline01_intro_case-title {
    font-size: 18px;
  }
}

.guideline01_intro_case-img {
  width: 100%;
  margin-top: 5px;
}

@media screen and (max-width: 991px) {
  .guideline01_intro_case-img {
    margin-top: 10px;
  }
}

.guideline01_intro_case-caption {
  display: block;
  text-align: right;
  font-size: 16px;
  margin-top: 5px;
}

@media screen and (max-width: 991px) {
  .guideline01_intro_case-caption {
    font-size: 12px;
  }
}

/* interview */
.guideline01_interview {
  width: 100%;
}

.guideline01_interview_summary {
  width: 100%;
}

.guideline01_interview_items {
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .guideline01_interview_items {
    margin-top: 20px;
  }
}

.guideline01_interview_item {
  width: 100%;
  padding: 40px 60px 50px 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  .guideline01_interview_item {
    padding: 30px 25px 40px;
  }
}

.guideline01_interview_item.item01 {
  background-image: url(../../common/img/guideline_e/guideline01_interview_item01_pc.jpg);
}

@media screen and (max-width: 991px) {
  .guideline01_interview_item.item01 {
    background-image: url(../../common/img/guideline_e/guideline01_interview_item01_sp.jpg);
  }
}

.guideline01_interview_item.item02 {
  background-image: url(../../common/img/guideline_e/guideline01_interview_item02_pc.jpg);
}

@media screen and (max-width: 991px) {
  .guideline01_interview_item.item02 {
    background-image: url(../../common/img/guideline_e/guideline01_interview_item02_sp.jpg);
  }
}

.guideline01_interview_item.item03 {
  background-image: url(../../common/img/guideline_e/guideline01_interview_item03_pc.jpg);
}

@media screen and (max-width: 991px) {
  .guideline01_interview_item.item03 {
    background-image: url(../../common/img/guideline_e/guideline01_interview_item03_sp.jpg);
  }
}

.guideline01_interview_item.item04 {
  background-image: url(../../common/img/guideline_e/guideline01_interview_item04_pc.jpg);
}

@media screen and (max-width: 991px) {
  .guideline01_interview_item.item04 {
    background-image: url(../../common/img/guideline_e/guideline01_interview_item04_sp.jpg);
  }
}

.guideline01_interview_item-question {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .guideline01_interview_item-question {
    font-size: 16px;
  }
}

.guideline01_interview_item-answer {
  width: 100%;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .guideline01_interview_item-answer {
    display: block;
    margin-top: 25px;
  }
}

.guideline01_interview_item-answer-icon {
  width: 100%;
  max-width: 160px;
}

@media screen and (max-width: 991px) {
  .guideline01_interview_item-answer-icon {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
  }
}

.guideline01_interview_item-answer-icon img {
  width: 100%;
}

.guideline01_interview_item-answer-text {
  width: 100%;
  border-radius: 0 60px 60px 60px;
  background-color: #fff;
  padding: 40px 55px;
}

@media screen and (max-width: 991px) {
  .guideline01_interview_item-answer-text {
    margin-top: -40px;
    padding: 60px 25px 20px;
    border-radius: 0 30px 30px 30px;
  }
}

.guideline01_interview_item-answer-text-dashed-line {
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
    linear-gradient(180deg, #ccc 2px, transparent 2px);
  background-size: 8px 100%, 100% 2.5em;
  line-height: 2.5em;
  padding-bottom: 2px;
}

.guideline01_interview_item-answer-text-dashed-line.item01 {
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
    linear-gradient(180deg, #bdd6b2 2px, transparent 2px);
}

.guideline01_interview_item-answer-text-dashed-line.item02 {
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
    linear-gradient(180deg, #d6d3b2 2px, transparent 2px);
}

.guideline01_interview_item-answer-text-dashed-line.item03 {
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
    linear-gradient(180deg, #b2ccd6 2px, transparent 2px);
}

.guideline01_interview_item-answer-text-dashed-line.item04 {
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
    linear-gradient(180deg, #b2b2d6 2px, transparent 2px);
}

/* voice */
.guideline01_voice {
  width: 100%;
}

.guideline01_voice_contents {
  width: 100%;
}

/* comparison */
.guideline01_comparison {
  width: 100%;
}

.guideline01_comparison_text {
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .guideline01_comparison_text {
    font-size: 16px;
    text-align: left;
  }
}

.guideline01_comparison_table {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .guideline01_comparison_table {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0;
  }
}

/* 02 失敗しない3つの選び方 -------------------------------- */
/* point */
.guideline02_point_content {
  width: 100%;
  padding-top: 40px;
}

@media screen and (max-width: 991px) {
  .guideline02_point_content {
    padding-top: 20px;
  }
}

.guideline02_point_cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 991px) {
  .guideline02_point_cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.guideline02_point-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.guideline02_point-card .min{
  font-size: 1rem;
}

.guideline02_point-card-title {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: #7aa965;
  padding: 15px 20px;
  text-align: center;
}

.guideline02_point-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 30px;
  background-color: #cae6be;
}

@media screen and (max-width: 991px) {
  .guideline02_point-card-body {
    padding: 20px 15px 20px;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
}

.guideline02_point-card-icon {
  width: 100%;
  max-width: 90px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .guideline02_point-card-icon {
    max-width: 60px;
    flex-shrink: 0;
  }
}

.guideline02_point-card-icon img {
  width: 100%;
}

.guideline02_point-card-body-inner {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.guideline02_point-card-heading {
  display: block;
  width: max-content;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
  font-weight: bold;
  color: #7aa965;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
}

@media screen and (max-width: 991px) {
  .guideline02_point-card-heading {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }
}

@media screen and (min-width: 992px) {
  .guideline02_point-card-heading.longtx {
    margin-left: -2px;
  }
}

.guideline02_point-card-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 15px;
}

@media screen and (max-width: 991px) {
  .guideline02_point-card-text {
    font-size: 17px;
    margin-top: 0;
  }

  .guideline02_point-card-heading+.guideline02_point-card-text {
    margin-top: 15px;
  }
}

.guideline02_point-text {
  font-size: 18px;
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .guideline02_point-text {
    font-size: 15px;
    margin-top: 20px;
    text-align: left;
  }
}

.guideline04_problem_txbox {
  margin-top: 1em;
  text-align: center;
  line-height: 2;
  font-size: 110%;
}

.guideline04_problem_txbox p {
  margin-bottom: 1em;
}

.guideline_lasttable {
  font-size: 20px;
  font-weight: bold;
  color: #0263b5;
  /* margin-bottom: 12px; */
  padding: 8px 12px;
  text-align: left;
  /* background-color: #0263b5; */
  margin: auto;
  margin-bottom: 12px;
  width: 100%;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #0263b5;
  border-left-style: solid;
  border-left-width: 8px;
  border-left-color: #0263b5;
}

.guideline02_box01 .problem_content-list ul li::before {
  background-image: url(../../common/img/guideline_e/guideline02_problem-check_box.png);
}

.guideline02_point_cards.gd03type .guideline02_point-card-title {
  background-color: #e8918d;
}

.guideline02_point_cards.gd03type .guideline02_point-card-body {
  background-color: #f8e6e6;
}

.guideline02_box01 {
  background: #cae6be;
  padding: 30px;
  border-radius: 25px;
  position: relative;
}

.guideline02_box01_inner {
  background: #FFF;
  padding: 40px 30px 30px;
}

.guideline02_box01_inner .fmimg {
  position: absolute;
  top: 0;
  left: 0;
}

.guideline02_box01_inner .tt {
  display: flex;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .guideline02_box01_inner .tt {
    font-size: 18px;
  }
}

.guideline02_box01_inner .tt .ic {
  width: 120px;
}

.guideline02_box01_inner .guideline01_box01_cont {
  display: flex;
}

.guideline02_box01_inner .guideline01_box01_cont .img {
  width: 45%;
}

.guideline02_box01_inner .guideline01_box01_cont .problem_content-list {
  width: 55%;
  transform: none;
}

@media screen and (max-width: 991px) {
  .guideline02_box01_inner .guideline01_box01_cont {
    display: block;
  }

  .guideline02_box01_inner .guideline01_box01_cont .img {
    width: 95%;
    margin-left: 5%;
    margin-bottom: 20px;
  }

  .guideline02_box01_inner .guideline01_box01_cont .problem_content-list {
    width: auto;
  }

  .guideline02_box01_inner .tt {
    margin-left: -50px;
    margin-right: -20px;
    font-size: 25px;
    text-align: left;
  }

  .guideline02_box01_inner .tt p {
    margin-left: 10px;
  }

  .guideline02_box01_inner .guideline01_box01_cont .problem_content-list ul li {
    text-align: left;
  }
}

.guideline_phototxbox {
  margin-top: 100px;
  line-height: 2;
}

.guideline_phototxbox>ul {
  width: auto;
  display: grid;
  gap: 50px;
}

.guideline_phototxbox>ul>li {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}

.guideline_phototxbox ul li .tx {
  width: 47.5%
}

.guideline_phototxbox ul li .tx p {
  font-size: 110%;
}

.guideline_phototxbox ul li .tx .catch {
  font-size: 22px;
  font-weight: bold;
}

.guideline_phototxbox ul li .tx .catch span {
  color: #FFF;
  background: #6e9c9e;
  display: inline-block;
  border-radius: 5px;
  padding: 0 10px;
  margin-bottom: 5px;
}

.guideline_phototxbox ul li .img {
  width: 47.5%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.guideline_phototxbox ul li .img img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width: 992px) {
  .guideline_phototxbox ul li .img.sp-block {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .guideline_phototxbox ul li .img.pc-block {
    display: none;
  }

  .guideline_phototxbox>ul>li {
    display: block;
  }

  .guideline_phototxbox ul li .img {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .guideline_phototxbox ul li .img img {
    position: static;
  }

  .guideline_phototxbox ul li .tx {
    width: 100%;
  }
}


.about_title .copy {
    background: #f25540;
    display: inline-block;
    color: #FFF;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 20px;
text-align: center;
}
@media screen and (max-width: 991px) {
.about_title .copy {
    max-width: 375px;
}
}
@media screen and (max-width: 600px) {
.about_title .copy {
font-size: 3.5vw;
}
}