@charset "utf-8";

:root {
  color: var();
}

/* common */

.h2title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.h3title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--title-color);

}

.sec-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--title-color);
  position: relative;
  display: flex;
  align-items: center;
}

#jigyo .sec-title::before {
  content: "";
  margin-right: 16px;
  background: url(../img/icon__question.svg) no-repeat center;
  background-size: contain;
  width: 19px;
  aspect-ratio: 19 / 30;
  display: block;
}

#flow .sec-title::before {
  content: "";
  margin-right: 16px;
  background: url(../img/icon__money.svg) no-repeat center;
  background-size: contain;
  width: 25px;
  aspect-ratio: 25 / 30;
  display: block;
}

#faq .sec-title::before {
  content: "";
  margin-right: 16px;
  background: url(../img/icon__qa.svg) no-repeat center;
  background-size: contain;
  width: 30px;
  aspect-ratio: 30 / 30;
  display: block;
}

.sec-child {
  margin-left: auto;
  margin-right: auto;
  max-width: 926px;
}

.sec-child .center {
  text-align: center;
}

.sec-child-title {
  padding: 4px 40px;
  font-size: 2.8rem;
  font-weight: bold;
  background-color: #EEFAFB;
  border-radius: 25px;
  display: inline-block;

}

.navBlock {
  width: 100%;
  background-color: #FAE2D5;
  position: relative;
}

.navBlock .nav__menu {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  justify-content: center;
}

.navBlock .nav__item {
  margin-left: 15px;
  margin-right: 15px;
  background-color: #fff;
  border-radius: 5px;
}

.navBlock .nav__link {
  padding: 10px 12px;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navBlock .nav__link img {
  margin-right: 8px;
}

.navBlock .nav__link-jigyo img {
  width: 16px;
  aspect-ratio: 16 / 25;
}

.navBlock .nav__link-flow img {
  width: 22px;
  aspect-ratio: 22 / 27;
}

.navBlock .nav__link-faq img {
  width: 25px;
  aspect-ratio: 25 / 26;
}

.navBlock .nav__link-contact img {
  width: 19px;
  aspect-ratio: 19 / 24;
}


/* sec __01*/

.sec.__01 {
  padding-top: 50px;
  padding-bottom: 80px;
}

.sec.__01 .h2title {
  margin-bottom: 56px;
}

.sec.__01 .h3title {
  margin-bottom: 32px;
  font-size: 2.6rem;
  text-align: center;
}

.sec.__01 .newsBlock {
  margin-left: auto;
  margin-right: auto;
  max-width: 610px;
  width: 100%;
}

.sec.__01 .newsBlock a {
  font-size: 1.8rem;
  color: #333;
  text-decoration: none;
}

.sec.__01 .newsBlock .news__list {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #C8C8C8;
  display: flex;
}

.sec.__01 .newsBlock .news__list .date {
  min-width: 120px;
}

/* sec __02*/

.sec.__02 .sec-title {
  margin-bottom: 64px;
}

.sec.__02 .sec-child {
  margin-bottom: 64px
}

.sec.__02 .sec-child-title {
  margin-bottom: 48px;
}

.sec.__02 .sec-child.__01 .formulaBlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sec.__02 .sec-child.__01 .formulaBlock .answer {
  margin-bottom: 40px;
  width: 208px;
  height: 111px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  background-color: var(--accent-color);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec.__02 .sec-child.__01 .formulaBlock .formulaGroup {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec.__02 .sec-child.__01 .formulaBlock .formula {
  margin-left: 48px;
  width: 182px;
  height: 111px;
  border-radius: 9px;
  border: 5px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sec.__02 .sec-child.__01 .formulaBlock .formula.equal {
  margin-left: 72px;

}

.sec.__02 .sec-child.__01 .formulaBlock .formula.equal::before {
  content: "";
  background: url(../img/icon__equal.svg) no-repeat center;
  background-size: contain;
  width: 29px;
  aspect-ratio: 29 / 15;
  display: block;
  position: absolute;
  left: -58px;
}

.sec.__02 .sec-child.__01 .formulaBlock .formula.multiplied::before {
  content: "";
  background: url(../img/icon__multiplied.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  aspect-ratio: 24 / 24;
  display: block;
  position: absolute;
  left: -40px;
}

.sec.__02 .sec-child.__01 .formulaBlock .formula .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.sec.__02 .sec-child.__01 .formulaBlock .formula::after {
  content: "";
  font-size: 2.3rem;
  font-weight: bold;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background-color: #EEFAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -16px;
  left: -16px;
}

.sec.__02 .sec-child.__01 .formulaBlock .formula.a::after {
  content: "a";
}

.sec.__02 .sec-child.__01 .formulaBlock .formula.b::after {
  content: "b";
}

.sec.__02 .sec-child.__01 .formulaBlock .formula.c::after {
  content: "c";
}

.sec.__02 .sec-child.__01 .sideNote {
  margin-bottom: 64px;
}

.sec.__02 .sec-child.__01 .sideNote .sideNote__item {
  margin-bottom: 24px;
  position: relative;
  margin-left: 2.3rem;
  text-indent: -1.6rem;
  font-size: 1.8rem;
}

.sec.__02 .sec-child.__01 .sideNote .sideNote__item:before {
  margin-right: 0.5rem;
  content: "";
  font-size: 2rem;
  font-weight: bold;
  color: var(--title-color);
}

.sec.__02 .sec-child.__01 .sideNote .sideNote__item.a:before {
  content: "a";
}

.sec.__02 .sec-child.__01 .sideNote .sideNote__item.b:before {
  content: "b";
}

.sec.__02 .sec-child.__01 .sideNote .sideNote__item.c:before {
  content: "c";
}

.sec.__02 .sec-child.__01 .table {
  margin-bottom: 16px;
  width: 100%;
  border-collapse: collapse;
}

.sec.__02 .sec-child.__01 .table .title {
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: bold;
}

.sec.__02 .sec-child.__01 .table th {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background-color: var(--accent-color);
  border-top: 2px solid #A8A8A8;
  border-left: 2px solid #A8A8A8;
  border-right: 2px solid #A8A8A8;
}

.sec.__02 .sec-child.__01 .table td {
  padding: 12px 88px;
  font-size: 1.8rem;
  text-align: center;
  border-top: 2px solid #A8A8A8;
  border-left: 2px solid #A8A8A8;
  border-right: 2px solid #A8A8A8;
}

.sec.__02 .sec-child.__01 .table th:last-child,
.sec.__02 .sec-child.__01 .table td:last-child {
  border-left: none;
}

.sec.__02 .sec-child.__01 .table tr:last-child td {
  border-bottom: 2px solid #A8A8A8;
}

.sec.__02 .sec-child.__02 .comparisonChartBlock {
  margin-top: 28px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.sec.__02 .sec-child.__02 .comparisonChart {
  width: calc((100% - 18px) / 2);
  border: 2px solid #CBCBCB;
}

.sec.__02 .sec-child.__02 .comparisonChart .title {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.sec.__02 .sec-child.__02 .comparisonChart.target .title {
  background-color: var(--accent-color);
}

.sec.__02 .sec-child.__02 .comparisonChart.non-target .title {
  background-color: #797979;
}

.sec.__02 .sec-child.__02 .comparisonChart .body {
  padding: 20px 24px;
}

.sec.__02 .sec-child.__02 .comparisonChart ul {
  margin-bottom: 20px;
}

.sec.__02 .sec-child.__02 .comparisonChart.non-target ul {
  margin-bottom: 64px;
}

.sec.__02 .sec-child.__02 .comparisonChart ul li {
  margin-left: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-indent: -1rem;
  line-height: 1.666;
}

.sec.__02 .sec-child.__02 .comparisonChart.target ul+.attention {
  margin-bottom: 16px;
}

.sec.__02 .sec-child.__02 .comparisonChart .conjunction {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: bold;
  color: #515151;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.sec.__02 .sec-child.__02 .comparisonChart.target .conjunction {
  background-color: #EEFAFB;
}

.sec.__02 .sec-child.__02 .comparisonChart.non-target .conjunction {
  background-color: #EDEDED;
}

.sec.__02 .sec-child.__02 .comparisonChart .conjunction+.text {
  min-height: 88px;

}

.sec.__02 .sec-child.__02>.attention {
  margin-bottom: 24px;
  display: block;

}

.sec.__02 .sec-child.__03 .targetBlock {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  padding-top: 32px;
  padding-bottom: 40px;
  max-width: 542px;
  width: 100%;
  font-size: 2.1rem;
  color: #fff;
  background-color: var(--accent-color);
  border-radius: 32px;
  text-align: center;
}

.sec.__02 .sec-child.__03 .targetBlock strong {
  font-size: 4.5rem;
  font-weight: bold;
}

.sec.__02 .sec-child.__04 .imgWrapper {
  margin-bottom: 48px;
  width: 100%;
}

.sec.__02 .sec-child.__04 .imgWrapper img {
  aspect-ratio: 40 / 17;
}

.sec.__02 .sec-child.__04 .scheduleBlock {
  padding: 32px 64px;
  border: 2px solid #F2CECE;
  border-radius: 19px;
}
.sec.__02 .sec-child.__04 .schedule__list {
  display: flex;
  font-size: 1.8rem;
  line-height: 1.8;
}
.sec.__02 .sec-child.__04 .schedule__list dt{
  min-width: 300px;
}

/* sec __03*/
.sec.__03 .sec-title {
  margin-bottom: 32px;
}

.sec.__03 .sec-child.__01 .text {
  margin-bottom: 32px;
  font-size: 1.8rem;
}

.sec.__03 .sec-child.__01 .linkBlock {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
}

.sec.__03 .sec-child.__01 .link__card {
  padding-top: 32px;
  padding-bottom: 64px;
  width: calc((100% - 36px) / 2);
  border: 3px solid var(--accent-color);
  border-radius: 31px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sec.__03 .sec-child.__01 .link__card:after {
  content: "";
  background: url(../img/icon__arrow-down.svg) no-repeat center;
  background-size: contain;
  width: 23px;
  height: 13px;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);

}

.sec.__03 .sec-child.__01 .link__card img {
  margin-right: 16px;
}

.sec.__03 .sec-child.__01 .link__card.--post img {
  width: 65px;
  aspect-ratio: 65 / 63;
}

.sec.__03 .sec-child.__01 .link__card.--mail img {
  width: 60px;
  aspect-ratio: 60 / 51;
}

.sec.__03 .sec-child.__01 .link__card .title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--accent-color);
}

.sec.__03 .sec-child.__02,
.sec.__03 .sec-child.__03 {
  margin-bottom: 72px;
}

.sec.__03 .sec-child-title {
  margin-bottom: 32px;
}

.sec.__03 .sec-child .center+.text {
  margin-bottom: 32px;
}

.sec.__03 .sec-child .flow__list {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}

.sec.__03 .sec-child .flow__item {
  width: calc((100% - 36px) / 4);
  padding-left: 36px;
  height: 72px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.25;
  white-space: nowrap;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sec.__03 .sec-child .flow__item.__01 {
  background-color: #D6ECF0;
  z-index: 4;
}

.sec.__03 .sec-child .flow__item.__02 {
  background-color: #99D8E3;
  z-index: 3;
}

.sec.__03 .sec-child .flow__item.__03 {
  background-color: #76CAD9;
  z-index: 2;
}

.sec.__03 .sec-child .flow__item.__04 {
  background-color: #5CBCD1;
  z-index: 1;
}

.sec.__03 .sec-child .flow__item:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
  border-left: 36px solid #fff;
  border-right: 0;
  position: absolute;
  right: -35px;
}

.sec.__03 .sec-child .flow__item.__01:after {
  border-left: 36px solid #D6ECF0;
}

.sec.__03 .sec-child .flow__item.__02:after {
  border-left: 36px solid #99D8E3;
}

.sec.__03 .sec-child .flow__item.__03:after {
  border-left: 36px solid #76CAD9;
}

.sec.__03 .sec-child .flow__item.__04:after {
  border-left: 36px solid #5CBCD1;
}

.sec.__03 .sec-child .downloadBlock {
  padding: 28px 36px 36px;
  margin-bottom: 32px;
  border-radius: 19px;
  background-color: #FFF7F7;
}

.sec.__03 .sec-child .downloadBlock .title {
  margin-bottom: 16px;
  text-align: center;
}

.sec.__03 .sec-child .downloadBlock .downloadLinkBlock {
  margin-left: auto;
  margin-right: auto;
  max-width: 405px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sec.__03 .sec-child .downloadBlock .download__link {
  color: #1E698B;
  font-weight: bold;
  line-height: 1.85;
  display: flex;
  align-items: center;
  position: relative;
}

.sec.__03 .sec-child .downloadBlock .download__link::before {
  content: "";
  margin-right: 8px;
  background: url(../img/icon__download.svg) no-repeat center;
  background-size: contain;
  min-width: 15px;
  height: 18px;
  display: block;
}

.sec.__03 .sec-child .mailaddress {
  margin-bottom: 12px;
  padding: 28px 36px 36px;
  border: 2px solid #F2CECE;
  border-radius: 19px;
  background-color: #fff;
  text-align: center;
}

.sec.__03 .sec-child .mailaddress .title {
  margin-bottom: 8px;
}

.sec.__03 .sec-child .mailaddress .text {
  font-size: 1.8rem;
}

.sec.__03 .sec-child .mailaddress .mail__link {
  color: #1E698B;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.85;
}

.sec.__03 .sec-child .mailaddress+.attention {
  text-align: right;
  font-size: 1.6rem;
}

/* sec __04*/
.sec.__04 {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #DDEDEF;
}

.sec.__04 .sec-title {
  margin-bottom: 32px;
}

/* アコーディオン実装 *******************/
.accordion-list .accordion-item {
  margin-bottom: 16px;
  padding: 0 56px;
  background-color: #fff;
  border-radius: 16px;
}

.accordion-list .accordion-item:last-child {
  margin-bottom: 0;
}

.acc-ttl {
  padding: 18px 52px 24px 60px;
  font-size: 1.8rem;
  text-indent: -52px;
  position: relative;
}

.acc-ttl::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: url(../img/icon__plus.svg) no-repeat center #7AC0C8;
  background-size: 60%;
  position: absolute;
  top: 30px;
  right: 0;
  transition: all .3s;
}

.acc-ttl.active::after {
  background: url(../img/icon__minus.svg) no-repeat center #6C7A7B;
  transition: all .3s;
}

.acc-txt {
  padding-left: 54px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 1.8rem;
  border-top: 1px solid #C8C8C8;
  text-indent: -44px;
  display: none;
}

.acc-ttl::before {
  margin-right: 32px;
  content: "Q";
  font-size: 2.8rem;
  font-weight: bold;
  color: #7AC0C8;
}

.acc-txt::before {
  margin-right: 32px;
  content: "A";
  font-size: 2.8rem;
  font-weight: bold;
  color: #C87A7A;
}

@media screen and (max-width:966px) {
  .sec.__02 .sec-child.__01 .formulaBlock {
    justify-content: center;
  }

  .sec.__03 .sec-child.__01 .link__card .title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width:767px) {
  .h2title {
    font-size: 7.5vw;
  }

  .h3title {
    font-size: 6.5vw;

  }

  .sec-title {
    font-size: 5.5vw;
  }

  #jigyo .sec-title::before {
    content: "";
    margin-right: 16px;
    background: url(../img/icon__question.svg) no-repeat center;
    background-size: contain;
    width: 19px;
    aspect-ratio: 19 / 30;
    display: block;
  }

  #flow .sec-title::before {
    content: "";
    margin-right: 16px;
    background: url(../img/icon__money.svg) no-repeat center;
    background-size: contain;
    width: 25px;
    aspect-ratio: 25 / 30;
    display: block;
  }

  #faq .sec-title::before {
    content: "";
    margin-right: 16px;
    background: url(../img/icon__qa.svg) no-repeat center;
    background-size: contain;
    width: 30px;
    aspect-ratio: 30 / 30;
    display: block;
  }

  .sec-child {
    max-width: 100%;
  }

  .sec-child-title {
    font-size: 5.5vw;
  }

  .navBlock {
    width: 100%;
    background-color: #FAE2D5;
  }

  .navBlock .nav__menu {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-direction: column;
  }

  .navBlock .nav__item {
    margin-bottom: 10px;
  }

  .navBlock .nav__item:last-child {
    margin-bottom: 0;
  }

  .navBlock .nav__link {
    font-size: 5vw;
  }


  /* sec __01*/

  .sec.__01 {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .sec.__01 .h2title {
    margin-bottom: 56px;
  }

  .sec.__01 .h3title {
    font-size: 6.5vw;
  }

  .sec.__01 .newsBlock {
    max-width: 100%;
  }

  .sec.__01 .newsBlock a {
    font-size: 4.5vw;
  }

  .sec.__01 .newsBlock .news__list {
    flex-direction: column;
  }

  .sec.__01 .newsBlock .news__list .date {
    margin-bottom: 1rem;
    min-width: 100%;
  }

  /* sec __02*/

  .sec.__02 .sec-title {
    margin-bottom: 48px;
  }

  .sec.__02 .sec-child {
    margin-bottom: 48px
  }

  .sec.__02 .sec-child.__01 .formulaBlock {
    flex-direction: column;
  }

  .sec.__02 .sec-child.__01 .formulaBlock .answer {
    margin-bottom: 80px;
    width: 80%;
    font-size: 5.5vw;
  }

  .sec.__02 .sec-child.__01 .formulaBlock .formulaGroup {
    width: 100%;
    margin-bottom: 40px;
    flex-direction: column;
  }

  .sec.__02 .sec-child.__01 .formulaBlock .formula {
    margin-left: 0;
    margin-bottom: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 80%;
    height: auto;
  }

  .sec.__02 .sec-child.__01 .formulaBlock .formula:last-child {
    margin-bottom: 0;
  }

  .sec.__02 .sec-child.__01 .formulaBlock .formula.equal {
    margin-left: 0;

  }

  .sec.__02 .sec-child.__01 .formulaBlock .formula.equal::before {
    top: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .sec.__02 .sec-child.__01 .formulaBlock .formula.multiplied::before {
    top: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .sec.__02 .sec-child.__01 .formulaBlock .formula .title {
    font-size: 5vw;
  }

  .sec.__02 .sec-child.__01 .formulaBlock .formula::after {
    content: "";
    font-size: 4.5vw;
  }

  .sec.__02 .sec-child.__01 .sideNote .sideNote__item {
    font-size: 4.5vw;
  }
  .sec.__02 .sec-child.__01 .sideNote .sideNote__item:before {
    font-size: 5vw;
  }

  .sec.__02 .sec-child.__01 .table {
    margin-bottom: 16px;
    width: 100%;
    border-collapse: collapse;
  }

  .sec.__02 .sec-child.__01 .table .title {
    font-size: 5vw;
    font-weight: bold;
  }

  .sec.__02 .sec-child.__01 .table th {
    font-size: 4.5vw;
  }

  .sec.__02 .sec-child.__01 .table td {
    padding: 12px 2.5vw;
    font-size: 4.5vw;
  }

  .sec.__02 .sec-child.__01 .table th:last-child,
  .sec.__02 .sec-child.__01 .table td:last-child {
    width: 30%;
  }

  .sec.__02 .sec-child.__02 .comparisonChartBlock {
    flex-direction: column;
  }

  .sec.__02 .sec-child.__02 .comparisonChart {
    width: 100%;
    margin-bottom: 18px;
  }

  .sec.__02 .sec-child.__02 .comparisonChart:last-child {
    margin-bottom: 0;
  }

  .sec.__02 .sec-child.__02 .comparisonChart .title {
    font-size: 5vw;
  }

  .sec.__02 .sec-child.__02 .comparisonChart.non-target ul {
    margin-bottom: 24px;
  }

  .sec.__02 .sec-child.__02 .comparisonChart ul li {
    font-size: 4.5vw;
  }

  .sec.__02 .sec-child.__02 .comparisonChart .conjunction+.text {
    margin-bottom: 24px;
    min-height: auto;
  }


  .sec.__02 .sec-child.__03 .targetBlock {
    font-size: 4.5vw;
  }

  .sec.__02 .sec-child.__03 .targetBlock strong {
    font-size: 7.5vw;
  }

  .sec.__02 .sec-child.__04 .imgWrapper {
    margin-bottom: 8px;
    overflow-x: scroll;
  }

  .sec.__02 .sec-child.__04 .imgWrapper img {
    min-width: 767px;
  }
  .sec.__02 .sec-child.__04 .imgWrapper + small {
    margin-bottom: 48px;
  }
  .sec.__02 .sec-child.__04 .scheduleBlock {
    padding: 32px 5vw;
  }
  .sec.__02 .sec-child.__04 .scheduleBlock .schedule__list{
    margin-bottom: 8px;
    flex-direction: column;
    font-size: 4.5vw;
  }
  .sec.__02 .sec-child.__04 .scheduleBlock .schedule__list dt{
    min-width: 100%;
  }

  /* sec __03*/

  .sec.__03 .sec-child.__01 .text {
    font-size: 4.5vw;
  }


  .sec.__03 .sec-child.__01 .linkBlock {
    flex-direction: column;
  }

  .sec.__03 .sec-child.__01 .link__card {
    margin-bottom: 16px;
    width: 100%;
  }
  .sec.__03 .sec-child.__01 .link__card:last-child {
    margin-bottom: 0;
  }

  .sec.__03 .sec-child.__01 .link__card img {
    margin-right: 16px;
  }

  .sec.__03 .sec-child.__01 .link__card.--post img {
    width: 30px;
  }

  .sec.__03 .sec-child.__01 .link__card.--mail img {
    width: 27px;
  }

  .sec.__03 .sec-child.__01 .link__card .title {
    font-size: 6vw;
  }

  .sec.__03 .sec-child .flow__list {
    flex-direction: column;
  }

  .sec.__03 .sec-child .flow__item {
    width: calc(100% - 36px);
    font-size: 5vw;
  }
  .sec.__03 .sec-child .mailaddress .mail__link{
    font-size: 4.5vw;
  }
  .sec.__03 .sec-child .mailaddress .title {
    margin-bottom: 16px;
  }
  .sec.__03 .sec-child .mailaddress .text {
    font-size: 4.5vw;
  }

  .sec.__03 .sec-child .mailaddress+.attention {
    text-align: left;
    font-size: 4.5vw;
  }


  /* アコーディオン実装 *******************/
  .accordion-list .accordion-item {
    padding: 0 5vw;
  }

  .acc-ttl {
    padding: 18px 30px 24px 60px;
    font-size: 5vw;
  }
  .acc-txt {
    font-size: 5vw;
    padding-left: 40px;
    text-indent: -30px;
  }
  .acc-ttl::after {
    width: 20px;
    height: 20px;
  }

  .acc-ttl::before {
    margin-right: 16px;
    font-size: 5.5vw;
    font-weight: bold;
    color: #7AC0C8;
  }

  .acc-txt::before {
    margin-right: 16px;
    font-size: 5.5vw;
  }
}