@import url(common.css);

section:nth-of-type(1) .main-text {
  padding-top: 1em;
}

.main-text p {
  font-size: clamp(25px, 1.8vw, 28px);
  text-align: center;
  font-weight: bold;
}
.gray_arrow_box {
  position: relative;
  max-width: 700px;
  margin: 0.5em auto;
  padding: 1.5em 1em 1.5em 2em;
  background: #f2f2f2;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 100px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
}
.gray_arrow_box::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(242, 242, 242, 0);
  border-top-width: 31px;
  border-bottom-width: 31px;
  border-left-width: 29px;
  border-right-width: 29px;
  margin-left: -29px;
  border-top-color: #f2f2f2;
  top: 100%;
  left: 50%;
}
.gray_arrow_box ul li {
  font-size: clamp(18px, 1.8vw, 21px);
  list-style-type: disc;
  list-style-position: inside;
  text-align: left;
  line-height: 1.7;
  text-indent: -1.5em;
  padding-left: 1em;
}
.main-text img {
  display: block;
  max-width: 200px;
  margin: auto;
}
.blue_box {
  background-color: #005bac;
  padding: 2.5em 1em;
}
.blue_box p {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: clamp(36px, 1.8vw, 55px);
}
.blue_box p span {
  background-color: var(--main_red);
  padding: 0.2em 0.5em;
}
.blue_box ul {
  margin: 2em auto 0;
  padding-left: 1em;
  color: #fff;
}
.blue_box ul li {
  list-style-type: square;
  list-style-position: inside;
  text-indent: -1.5em;
  padding: 0.5em 0.5em 0.5em 1em;
  font-size: clamp(16px, 1.8vw, 18px);
  border-bottom: #78bcf7 1px dotted;
}
.triangle {
  margin: 1.5em auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 70px solid transparent;
  border-left: 70px solid transparent;
  border-top: 45px solid #ff8800;
  border-bottom: 0;
}
.contact_red {
  max-width: 700px;
  margin: auto;
  color: var(--main_red);
  font-weight: bold;
}
.contact_red p {
  animation: myAnim 2s ease 0s 1 normal forwards;
  text-align: center;
  font-size: clamp(18px, 1.8vw, 22px);
}
@keyframes myAnim {
  0%,
  100% {
    transform: translateY(0);
  }

  10%,
  30%,
  50%,
  70% {
    transform: translateY(-8px);
  }

  20%,
  40%,
  60% {
    transform: translateY(8px);
  }

  80% {
    transform: translateY(6.4px);
  }

  90% {
    transform: translateY(-6.4px);
  }
}
.contact_red a {
  display: block;
  color: #fff;
  background-color: var(--main_red);
  max-width: 700px;
  margin: 0.5em auto;
  padding: 1.2em 1em;
  font-size: clamp(22px, 1.8vw, 24px);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact_red {
    margin: 0 1em;
  }
}

/* ////////////////////////////////

セクション2
他社との比較

//////////////////////////////// */
section:nth-of-type(2) {
  background-color: #e8f0f9;
  padding: 4em 0.5em;
}
.table_box {
  max-width: 820px;
  margin: 1em auto;
}
section:nth-of-type(2) table {
  width: 100%;
  background-color: #fff;
  margin: auto;
  border-collapse: collapse;
}
section:nth-of-type(2) table tr th,
section:nth-of-type(2) table tr td {
  border: 1px solid var(--border_gray);
  padding: 0.5em;
}
section:nth-of-type(2) table tr th {
  background-color: #005bac;
  color: #fff;
  padding: 0.8em;
}
section:nth-of-type(2) ul {
  padding: 2em 1em 3em 2em;
}
section:nth-of-type(2) ul li {
  list-style-type: disc;
  list-style-position: inside;
  font-weight: bold;
  font-size: clamp(18px, 1.8vw, 20px);
  text-indent: -1.5em;
  padding-left: 1em;
}
section:nth-of-type(2) .contact_red {
  max-width: 400px;
}
section:nth-of-type(2) .contact_red a {
  font-size: clamp(16px, 1.8vw, 18px);
  animation: anim_wobble 2s ease 0s 1 normal forwards;
}
@keyframes anim_wobble {
  0%,
  100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }

  15% {
    transform: translateX(-30px) rotate(-6deg);
  }

  30% {
    transform: translateX(15px) rotate(6deg);
  }

  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }

  60% {
    transform: translateX(9px) rotate(2.4deg);
  }

  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
@media only screen and (max-width: 768px) {
  section:nth-of-type(2) h2 {
    text-align: center;
  }
}

/* ////////////////////////////////

セクション3
加盟するメリット

//////////////////////////////// */
section:nth-of-type(3) {
  padding: 0 0 8em;
}
section:nth-of-type(3) h2 {
  background-color: var(--main_green);
  color: #fff;
  padding: 1em;
}
.merit_block {
  max-width: 820px;
  margin: 2em auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.merit_block p {
  flex: 1;
  font-size: clamp(20px, 1.8vw, 22px);
  color: var(--main_green);
  font-weight: bold;
  padding: 3em 1em;
  border: 1px solid #444;
}
.merit_item {
  padding: 2.5em 0;
}
.marit_text {
  padding: 1em 1.5em;
}
.marit_text p {
  font-size: clamp(18px, 1.8vw, 19px);
}

.merit_item ul li {
  list-style-type: disc;
  list-style-position: inside;
  font-size: clamp(18px, 1.8vw, 19px);
}
.merit_item .yellow_box {
  max-width: 820px;
  margin: auto;
  background-color: #fff9e2;
  padding: 1em;
}
.merit_item .yellow_box p {
  font-weight: bold;
  font-size: clamp(18px, 1.8vw, 19px);
}
.merit_item .yellow_box table {
  width: 80%;
  border-collapse: collapse;
  margin: 1em 0;
}
.merit_item .yellow_box table td {
  padding: 0.5em;
}
.merit_item .yellow_box aside {
  font-size: clamp(13px, 1.8vw, 15px);
  color: #858585;
}
@media only screen and (max-width: 768px) {
  .merit_block {
    display: block;
  }
  .merit_block p {
    padding: 1em 0.5em;
    margin: 0.5em;
  }
  .merit_item .yellow_box table {
    width: 100%;
  }
}

/* ////////////////////////////////

セクション4
加盟店の声

//////////////////////////////// */
section:nth-of-type(4) {
  background-color: #f5f9f1;
  padding-bottom: unset;
}
section:nth-of-type(4) h2 {
  background-color: var(--main_green);
  color: #fff;
  padding: 1em;
}
section:nth-of-type(4) .voice {
  max-width: 820px;
  margin: 2em auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

section:nth-of-type(4) .voice .img_left img {
  display: block;
  margin: auto;
}
section:nth-of-type(4) .img_left p {
  font-size: clamp(14px, 1.8vw, 14px);
  padding-top: 1em;
  text-align: center;
}
.arrow_right {
  position: relative;
  width: 600px;
  background: #ffffff;
  padding: 20px;
  text-align: left;
  border: 2px solid #707070;
  font-weight: bold;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}
.arrow_right::after,
.arrow_right::before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  right: 100%;
  top: 50%;
}
.arrow_right::after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 30px;
  border-right-width: 30px;
  margin-top: -10px;
  border-right-color: #ffffff;
}
.arrow_right::before {
  border-color: rgba(56, 27, 20, 0);
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 36px;
  border-right-width: 36px;
  margin-top: -11px;
  margin-right: 0px;
  border-right-color: #707070;
}
@media only screen and (max-width: 768px) {
  section:nth-of-type(4) .voice {
    margin: 1em;
  }
  section:nth-of-type(4) .voice .img_left {
    flex: 0.5;
    max-width: 100px;
  }
  .arrow_right {
    flex: 2;
    width: 100%;
  }
}

/* アコーディオン
//////////////////////////////// */

.accordion-005 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border-left: 5px solid #04951c;
  background-color: #f2f2f2;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  font-size: clamp(18px, 1.8vw, 20px);
}

.accordion-005 summary::-webkit-details-marker {
  display: none;
}

.accordion-005 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #c2c2c2;
  border-right: 3px solid #c2c2c2;
  content: "";
  transition: transform 0.3s;
}

.accordion-005[open] summary::after {
  transform: rotate(225deg);
}
.accordion-005 .border_gray {
  border: 1px solid #d9d9d9;
  background-color: #fff;
  padding: 2em 2em 3em;
}
.accordion-005 p {
  font-weight: bold;
  font-size: clamp(18px, 1.8vw, 19px);
}
.accordion-005 .border_gray aside {
  font-size: clamp(12px, 1.8vw, 14px);
  color: #a3a3a3;
  display: block;
}
.accordion-005 ul {
  padding: 1em 0;
}
.accordion-005 ul li {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

/* 加盟条件
//////////////////////////////// */
.accordion-005:nth-of-type(1) table {
  width: 100%;
}

/* 選定済みエリア
//////////////////////////////// */
.accordion-005 .border_gray table {
  margin: 2em 0 0;
  word-break: keep-all;
}
.accordion-005 .border_gray table td {
  padding: 1em;
  border-bottom: 1px solid var(--border_gray);
  line-height: 1.7;
}

/* 加盟店一覧
//////////////////////////////// */
.accordion-005 ul.all_company {
  font-weight: bold;
}
.accordion-005 ul.all_company li {
  line-height: 2;
}
.accordion-005 ul.all_company li span {
  font-weight: 400;
  font-size: clamp(11px, 1.8vw, 13px);
}

/* よくある質問
//////////////////////////////// */
.accordion-005:nth-of-type(4) dl {
  padding: 1.5em 0;
  border-bottom: 1px dotted var(--border_gray);
}
.accordion-005:nth-of-type(4) dl dt {
  position: relative;
  font-weight: bold;
  padding: 0.5em 0 1em 2em;
  font-size: clamp(18px, 1.8vw, 20px);
}
.accordion-005:nth-of-type(4) dl dt::before {
  position: absolute;
  content: "Q.";
  color: var(--main_green);
  font-weight: bold;
  font-size: 25px;
  top: 28%;
  left: 0%;
  transform: translate(0%, -28%);
}
.accordion-005:nth-of-type(4) dl dd {
  line-height: 1.7;
  position: relative;
  padding-left: 2.5em;
  padding-top: 1em;
}
.accordion-005:nth-of-type(4) dl dd::before {
  position: absolute;
  content: "A.";
  color: var(--main_green);
  font-weight: bold;
  font-size: 25px;
  top: 10%;
  left: 0%;
  transform: translate(0%, -10%);
}

/* 運営会社について
//////////////////////////////// */
.accordion-005:nth-of-type(5) p {
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 17px);
}
.accordion-005:nth-of-type(5) .img_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
}
.accordion-005:nth-of-type(5) .img_flex .left {
  flex: 2;
}
.accordion-005:nth-of-type(5) .img_flex .left p {
  font-size: 22px;
  font-weight: bold;
  font-family: Yu Mincho;
  margin: 0 0 1em 0;
}
.accordion-005:nth-of-type(5) .img_flex .left img {
  display: block;
  max-width: 500px;
}
.fukuda-link-wap {
  padding: 2em 0 1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.fukuda-link-wap a {
  display: block;
  padding-bottom: 0.5em;
}
.fukuda-link-wap img {
  display: block;
  max-width: 320px;
  margin: auto;
}

/* ////////////////////////////////

セクション6
まずはお問い合わせください

//////////////////////////////// */
section:nth-of-type(5) {
  background-color: #f6faff;
  padding: 4em 0;
}
section:nth-of-type(5) h2 {
  color: #005bac;
  text-align: center;
  font-size: clamp(22px, 1.8vw, 30px);
  padding-bottom: 1em;
}
section:nth-of-type(5) img {
  display: block;
  max-width: 300px;
  margin: auto;
}
.step-wap {
  max-width: 820px;
  margin: auto;
  padding: 0 0 1em;
}
.step-wap dl {
  position: relative;
  background: #fff;
  border: #005bac 1px solid;
  max-width: 700px;
  margin: auto;
  padding: 2em 2em 2em;
}

.step-wap dl dt {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #005aaa;
  padding: 0 0 0.5em;
}
.step-wap dl dd {
  line-height: 1.7;
}
.flow_design10 {
  max-width: 820px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow10 {
  padding-left: 0;
}

.flow10 > li {
  list-style-type: none;
  border: 2px solid #005bac;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

.flow10 > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow10 > li:not(:last-child)::after {
  content: "";
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #005bac;
}

.flow10 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2pt dashed #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.flow10 > li .icon10 {
  color: #005bac;
  margin-right: 0.5em;
}

.flow10 > li dl dd {
  margin: 0;
}
.flow10 li.last {
  border: unset;
  background-color: unset;
  padding-bottom: 5em;
}
.flow10 li.last p {
  text-align: center;
  font-size: clamp(28px, 1.8vw, 30px);
  font-weight: bold;
  color: #005aaa;
}
@media only screen and (max-width: 768px) {
  .flow_design10 {
    margin: 1em;
  }
}
