@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  font-family: "Hiragino Kaku Gothic", sans-serif;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 18px;
  line-height: 1.4;
  overflow-x: hidden;
}
@media (min-width: 760px) and (max-width:1100px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 759px) {
  body {
    font-size: 14px;
  }
}

a {
  cursor: pointer;
}

img {
  width: 100%;
}

.inner {
  padding: 0 100px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 760px) and (max-width:1100px) {
  .inner {
    padding: 0;
    max-width: none;
    width: 730px;
  }
}
@media screen and (max-width: 759px) {
  .inner {
    max-width: 370px;
    padding: 0 20px;
    width: 100%;
  }
}

.section__title-wrap {
  background-color: #00A8E6;
  position: relative;
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 759px) {
  .section__title-wrap {
    padding: 15px 0;
  }
}
.section__title-wrap::after {
  content: "";
  position: absolute;
  bottom: -60px; /* 矢印を下部に配置 */
  left: 50%; /* 中央寄せ */
  transform: translateX(-50%); /* 中央寄せ */
  width: 10%; /* 矢印の幅を狭く設定 */
  height: 60px; /* 矢印の高さ */
  background-color: #00A8E6;
  -webkit-clip-path: polygon(10% 0, 50% 90%, 90% 0);
          clip-path: polygon(10% 0, 50% 90%, 90% 0); /* 矢印形状 */
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); /* シャドウを追加 */
  z-index: 1;
}
@media (min-width: 760px) and (max-width:1100px) {
  .section__title-wrap::after {
    height: 40px;
    bottom: -40px;
  }
}
@media screen and (max-width: 759px) {
  .section__title-wrap::after {
    height: 20px;
    bottom: -20px;
  }
}

.section__title {
  color: #ffffff;
  font-weight: 700;
  font-size: 65px;
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 760px) and (max-width:1100px) {
  .section__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 759px) {
  .section__title {
    font-size: 24px;
  }
}
.section__title img {
  width: 180px;
  position: absolute;
  right: -180px;
  top: -20px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .section__title img {
    width: 130px;
    right: -130px;
  }
}
@media screen and (max-width: 759px) {
  .section__title img {
    width: 54px;
    right: -50px;
    top: 0px;
  }
}

@media (min-width: 760px) and (max-width:1100px) {
  .pc-only {
    display: none;
  }
}

.pc-none {
  display: none;
}
@media (min-width: 760px) and (max-width:1100px) {
  .pc-none {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 759px) {
  .sp-only {
    display: block;
  }
}

.fixed {
  display: none;
}
@media screen and (max-width: 759px) {
  .fixed {
    display: block;
  }
}

.sp-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 400;
}

.contact__fixed {
  background-color: #F39800;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: calc(100% - 50px);
}
.contact__fixed p {
  color: #ffffff;
  font-size: 18px;
  padding: 0 10px;
}

.fixed-banner {
  display: inline-block;
  width: auto;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.fixed-mail {
  height: 20px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-top {
  height: 50px;
  width: 50px;
  background-color: #808080;
  padding-top: 5px;
  text-align: center;
  transition: all 0.8s;
}
.page-top:hover {
  opacity: 0.5;
}
.page-top img {
  width: 18px;
}
.page-top span {
  display: block;
  font-size: 10px;
  color: #ffffff;
  margin-top: 5px;
}

.pc-fixed {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s, visibility 0.8s;
}
@media screen and (max-width: 759px) {
  .pc-fixed {
    display: none;
  }
}

.pc-fixed.show {
  opacity: 1;
  visibility: visible;
}
.pc-fixed.show:hover {
  opacity: 0.5;
}

.header {
  width: 100%;
}

.header__top {
  display: flex;
  justify-content: space-between;
  padding: 15px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 760px) and (max-width:1100px) {
  .header__top {
    max-width: none;
    width: 740px;
    padding: 15px 0;
  }
}
@media screen and (max-width: 759px) {
  .header__top {
    padding: 13px 20px;
  }
}

.header__logo {
  width: 360px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .header__logo {
    width: 320px;
  }
}
@media screen and (max-width: 759px) {
  .header__logo {
    width: 200px;
  }
}

.header__contact-btn {
  padding-top: 25px;
}
.header__contact-btn a {
  padding: 10px;
  border: 2px solid #000000;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  transition: all 0.5s;
}
.header__contact-btn a:hover {
  opacity: 0.5;
}
.header__contact-btn a img {
  width: 20px;
  margin-left: 10px;
  margin-bottom: 4px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .header__contact-btn {
    padding-top: 20px;
  }
}
@media screen and (max-width: 759px) {
  .header__contact-btn {
    display: none;
  }
}

.header__nav {
  display: flex;
  justify-content: center;
  background-color: #00A8E6;
  padding: 15px 0;
}
@media screen and (max-width: 759px) {
  .header__nav {
    display: none;
  }
}

.header__nav-item a {
  color: #ffffff;
  padding: 20px;
  font-weight: 600;
  transition: all 0.8s;
}
@media (min-width: 760px) and (max-width:1100px) {
  .header__nav-item a {
    padding: 15px;
  }
}
.header__nav-item a:hover {
  color: #036EB8;
}

.sp-header__bottom {
  display: none;
}
@media screen and (max-width: 759px) {
  .sp-header__bottom {
    display: block;
  }
}

.sp-header__nav-item {
  flex: 1;
  height: 60px;
  background-color: #036EB8;
  text-align: center;
  padding-top: 10px;
}
.sp-header__nav-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.sp-header__nav-item a:hover {
  opacity: 0.5;
}
.sp-header__nav-item a p {
  color: #ffffff;
  font-size: 8px;
}
.sp-header__nav-item a img {
  width: 30px;
  margin-bottom: 3px;
}

.sp-header__nav--3 img {
  margin-top: 5px;
}

.sp-header__nav {
  display: flex;
  height: 60px;
}

.sp-header__nav-icon {
  flex: 0 0 60px;
  background-color: #00A8E6;
  transition: transform 0.5s ease 0s;
  padding-top: 18px;
  z-index: 300;
}
.sp-header__nav-icon.is-active .drawer-icon-bar1 {
  top: 8px;
  transform: rotate(-45deg);
  background: #ffffff;
}
.sp-header__nav-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.sp-header__nav-icon.is-active .drawer-icon-bar3 {
  top: 8px;
  transform: rotate(45deg);
  background: #ffffff;
}

.drawer-icon-bars {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.drawer-icon-bars span {
  font-size: 8px;
  color: #ffffff;
  position: absolute;
  top: 24px;
  white-space: nowrap;
}

.menu.is-active {
  display: none;
}

.close {
  display: none;
}
.close.is-active {
  display: block;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 26px;
  height: 4px;
  border-radius: 5px;
  background: #FFFFFF;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

.drawer-icon-bar1 {
  top: 0px;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  position: fixed;
  width: calc(100% - 50px);
  height: 100%;
  right: 0;
  left: 50px;
  top: 118px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  background: #00A8E6;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content-item {
  padding: 20px;
  border-bottom: 2px dotted #ffffff;
}
.drawer-content-item a {
  display: block;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: all 0.8s;
  font-weight: 500;
}
.drawer-content-item a:hover {
  color: #036EB8;
}
.drawer-content-item a img {
  width: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.drawer__contact-btn {
  margin: 20px auto 20px auto;
  text-align: center;
}
.drawer__contact-btn a {
  padding: 10px 15px;
  background-color: #036EB8;
  color: #ffffff;
  border-radius: 40px;
  transition: all 0.8s ease;
}
.drawer__contact-btn a img {
  width: 10px;
  margin-bottom: 6px;
  margin-left: 10px;
}
.drawer__contact-btn a:hover {
  opacity: 0.6;
}

.drawer__logo {
  width: 90px;
  margin: 0 auto;
}

.drawer-background {
  z-index: 290;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*----------------------


hero


=========================*/
.hero {
  padding-top: 60px;
}

.hero__inner {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 759px) {
  .hero__inner {
    display: block;
  }
}

.hero__left {
  width: 110%;
}
@media screen and (max-width: 759px) {
  .hero__left {
    margin-top: 60px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__voice {
  width: 300px;
}

.hero__image {
  width: 100%;
  margin-top: -30px;
}
@media screen and (max-width: 759px) {
  .hero__image {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
  }
  .hero__image img {
    text-align: center;
  }
}

.hero__right {
  width: 95%;
  position: relative;
}
@media screen and (max-width: 759px) {
  .hero__right {
    width: 100%;
  }
}

.hero__title {
  width: 110%;
  right: 0;
  position: absolute;
}
@media screen and (max-width: 759px) {
  .hero__title {
    width: 340px;
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: -370px;
  }
}

.hero__faqs {
  margin-top: 11rem;
  padding: 2.22rem 0;
  font-weight: 600;
}
@media (min-width: 760px) and (max-width:1100px) {
  .hero__faqs {
    margin-top: 8rem;
    padding: 1.2rem 0;
  }
}
@media screen and (max-width: 759px) {
  .hero__faqs {
    margin-top: 0;
    padding: 20px 0 10px 0;
  }
}

.hero__question p {
  font-size: 20px;
  line-height: 0.2;
}
.hero__question img {
  width: 110px;
}
@media screen and (max-width: 759px) {
  .hero__question {
    text-align: center;
  }
}

.hero__answer {
  padding-top: 1.111rem;
}
@media (min-width: 760px) and (max-width:1100px) {
  .hero__answer {
    padding-top: 0.8rem;
  }
}
@media screen and (max-width: 759px) {
  .hero__answer {
    padding-top: 10px;
    font-size: 15px;
  }
}

.hero__tax {
  width: 100%;
}
@media screen and (max-width: 759px) {
  .hero__tax {
    width: 80%;
    margin: 0 auto 10px auto;
  }
}

/*----------------------


trouble


=========================*/
.parent {
  position: relative;
}
.parent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 101%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
          clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  filter: blur(10px);
  transform: translate(-50%, 5px);
}
@media screen and (max-width: 759px) {
  .parent::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
            clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  }
}

.trouble {
  position: relative;
  background-color: #DAEDF6;
  padding-top: 20px;
  margin: 0 -10px;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
          clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  z-index: 1;
}
@media screen and (max-width: 759px) {
  .trouble {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
            clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    margin: 0;
  }
}

.trouble__inner {
  position: relative;
}
@media screen and (max-width: 759px) {
  .trouble__inner {
    width: 100%;
    max-width: 370px;
  }
}

.trouble__title {
  width: 600px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
@media (min-width: 760px) and (max-width:1100px) {
  .trouble__title {
    width: 500px;
  }
}
@media screen and (max-width: 759px) {
  .trouble__title {
    width: 333px;
    margin-top: 20px;
  }
}

.trouble__bubble {
  position: absolute;
}

.trouble__bubble--1 {
  width: 32%;
  left: 100px;
  top: 150px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .trouble__bubble--1 {
    width: 35%;
    left: 50px;
  }
}
@media screen and (max-width: 759px) {
  .trouble__bubble--1 {
    left: 10px;
    top: 80px;
    width: 216px;
    z-index: 3;
  }
}

.trouble__bubble--2 {
  width: 28%;
  right: 100px;
  top: 150px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .trouble__bubble--2 {
    top: 220px;
    width: 37%;
    right: 50px;
  }
}
@media screen and (max-width: 759px) {
  .trouble__bubble--2 {
    right: 0;
    top: 90px;
    width: 166px;
    z-index: 2;
  }
}

.trouble__bubble--3 {
  width: 24%;
  left: 100px;
  bottom: 100px;
  z-index: 5;
}
@media (min-width: 760px) and (max-width:1100px) {
  .trouble__bubble--3 {
    width: 33%;
    left: 50px;
  }
}
@media screen and (max-width: 759px) {
  .trouble__bubble--3 {
    width: 166px;
    left: 10px;
    bottom: 115px;
    z-index: 2;
  }
}

.trouble__bubble--4 {
  width: 30%;
  right: 100px;
  bottom: 100px;
  z-index: 5;
}
@media (min-width: 760px) and (max-width:1100px) {
  .trouble__bubble--4 {
    width: 34%;
    right: 50px;
    bottom: 60px;
  }
}
@media screen and (max-width: 759px) {
  .trouble__bubble--4 {
    width: 182px;
    right: 0;
    bottom: 135px;
  }
}

.tornado__icon {
  width: 100px;
  position: absolute;
  right: 33%;
}
@media (min-width: 760px) and (max-width:1100px) {
  .tornado__icon {
    width: 70px;
    right: 33%;
    top: 170px;
  }
}
@media screen and (max-width: 759px) {
  .tornado__icon {
    width: 30px;
    top: 250px;
    right: 47%;
  }
}

.trouble__man-wrap {
  padding-top: 200px;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 759px) {
  .trouble__man-wrap {
    padding-top: 280px;
  }
}

.trouble__man {
  display: block;
  z-index: 2;
  width: 600px;
  margin: 0 auto -10px auto;
}
@media (min-width: 760px) and (max-width:1100px) {
  .trouble__man {
    width: 400px;
  }
}
@media screen and (max-width: 759px) {
  .trouble__man {
    width: 200px;
    margin-bottom: -10px;
  }
}

/*----------------------


resolve


=========================*/
.resolve {
  width: 100%;
  margin-top: -160px;
  padding-bottom: 310px;
  background: url(../img/result-back.png) no-repeat center center/cover;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve {
    margin-top: -120px;
    padding-bottom: 240px;
  }
}
@media screen and (max-width: 759px) {
  .resolve {
    margin-top: -50px;
    padding-bottom: 0;
  }
}

.resolve__title {
  padding-top: 230px;
  font-size: 55px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__title {
    padding-top: 170px;
    font-size: 45px;
  }
}
@media screen and (max-width: 759px) {
  .resolve__title {
    padding-top: 70px;
    font-size: 21px;
  }
}

.resolve__content {
  position: relative;
}
@media screen and (max-width: 759px) {
  .resolve__content {
    display: none;
  }
}

.resolve__h3 {
  width: 350px;
  margin: 0 auto;
  margin-top: 60px;
  padding-right: 80px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__h3 {
    width: 300px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 759px) {
  .resolve__h3 {
    width: 86px;
  }
}

.resolve__subtitle {
  width: 300px;
  margin: 0 auto;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__subtitle {
    width: 240px;
  }
}
@media screen and (max-width: 759px) {
  .resolve__subtitle {
    width: 257px;
  }
}

.resolve__voice {
  position: absolute;
}
@media screen and (max-width: 759px) {
  .resolve__voice {
    position: static;
  }
}

.resolve__voice--1 {
  width: 33%;
  left: 0;
  top: 0;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__voice--1 {
    width: 39%;
  }
}
@media screen and (max-width: 759px) {
  .resolve__voice--1 {
    width: 230px;
  }
}

.resolve__voice--2 {
  width: 36%;
  right: 0;
  top: 0;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__voice--2 {
    width: 40%;
  }
}
@media screen and (max-width: 759px) {
  .resolve__voice--2 {
    width: 230px;
    top: 0;
  }
}

.resolve__voice--3 {
  width: 28%;
  left: 0;
  top: 300px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__voice--3 {
    width: 33%;
    top: 260px;
  }
}
@media screen and (max-width: 759px) {
  .resolve__voice--3 {
    width: 200px;
    bottom: 0;
    right: 0;
  }
}

.resolve__voice--4 {
  width: 34%;
  right: 30px;
  top: 490px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__voice--4 {
    width: 37%;
    top: 420px;
    right: 30px;
  }
}
@media screen and (max-width: 759px) {
  .resolve__voice--4 {
    width: 210px;
  }
}

.resolve__voice--5 {
  width: 33%;
  left: 0;
  bottom: -230px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__voice--5 {
    width: 42%;
    bottom: -210px;
  }
}
@media screen and (max-width: 759px) {
  .resolve__voice--5 {
    width: 303px;
  }
}

.resolve__voice--6 {
  width: 32%;
  right: 340px;
  bottom: -240px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__voice--6 {
    width: 37%;
    right: 250px;
    bottom: -210px;
  }
}

.resolve__contact-btn {
  width: 250px;
  margin-left: auto;
  position: fixed;
  right: 120px;
  bottom: 30px;
  z-index: 100;
}
.resolve__contact-btn a {
  transition: all 0.5s;
}
.resolve__contact-btn a:hover {
  opacity: 0.7;
}
@media (min-width: 760px) and (max-width:1100px) {
  .resolve__contact-btn {
    width: 200px;
  }
}
@media screen and (max-width: 759px) {
  .resolve__contact-btn {
    display: none;
  }
}

.resolve__sp {
  display: none;
  margin: 0 auto;
}
@media screen and (max-width: 759px) {
  .resolve__sp {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 400px;
  }
}

/*----------------------


how


=========================*/
.how {
  margin-bottom: 60px;
}

.how__youtube {
  margin: 120px auto 40px auto;
  width: 660px;
  height: 446px;
  position: relative;
  background: url(../img/youtube-flame.png) no-repeat center center/contain;
}
.how__youtube iframe {
  width: calc(100% - 160px);
  height: calc(100% - 180px);
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translateX(-50%);
}
@media (min-width: 760px) and (max-width:1100px) {
  .how__youtube iframe {
    width: calc(100% - 140px);
    height: calc(100% - 140px);
    top: 50px;
  }
}
@media screen and (max-width: 759px) {
  .how__youtube iframe {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    top: 20px;
  }
}
@media (min-width: 760px) and (max-width:1100px) {
  .how__youtube {
    margin: 80px auto 20px auto;
    width: 500px;
    height: 338px;
  }
}
@media screen and (max-width: 759px) {
  .how__youtube {
    width: 300px;
    height: 205px;
    margin-top: 80px;
    margin-bottom: 20px;
  }
}

.how__youtube-text {
  position: absolute;
  width: 66px;
  top: 50%;
  transform: translateY(-50%);
  left: -70px;
}
@media screen and (max-width: 759px) {
  .how__youtube-text {
    top: -30px;
    left: 20px;
    width: 160px;
  }
}

.how__content {
  padding: 30px 0;
  text-align: center;
}
@media (min-width: 760px) and (max-width:1100px) {
  .how__content {
    padding: 20px 0;
  }
}
@media screen and (max-width: 759px) {
  .how__content {
    padding: 20px 0;
  }
}

.how__content-title {
  display: inline-block;
  font-size: 38px;
  font-weight: 700;
  padding: 5px 30px;
  color: #ffffff;
  background-color: #036EB8;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 30px;
  margin-bottom: 30px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .how__content-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 759px) {
  .how__content-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.how__subtitle {
  font-size: 48px;
  font-weight: 700;
  color: #036EB8;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 760px) and (max-width:1100px) {
  .how__subtitle {
    font-size: 40px;
  }
}
@media screen and (max-width: 759px) {
  .how__subtitle {
    font-size: 23px;
    margin-bottom: 20px;
  }
}

.how__text {
  line-height: 1.8;
  text-align: left;
}

/*----------------------


activity


=========================*/
.activity__title-wrap {
  margin-bottom: 80px;
}

.activity__title img {
  right: -250px;
  top: -20px;
}
@media screen and (max-width: 759px) {
  .activity__title img {
    right: -80px;
    top: 0;
  }
}

.activity__inner {
  width: 790px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .activity__inner {
    width: 530px;
  }
}
@media screen and (max-width: 759px) {
  .activity__inner {
    width: 365px;
  }
}

.activity__content {
  padding-bottom: 40px;
}

.activity__content-title {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .activity__content-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 759px) {
  .activity__content-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.activity__content-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 4px;
  left: 0;
}
.activity__content-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.activity__content-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 759px) {
  .activity__content-wrap {
    display: block;
  }
}

.activity__content-left {
  padding-right: 20px;
  width: 420px;
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: flex-start;
}
@media (min-width: 760px) and (max-width:1100px) {
  .activity__content-left {
    width: 297px;
  }
}
@media screen and (max-width: 759px) {
  .activity__content-left {
    width: 100%;
  }
}

.activity__content-text {
  padding-bottom: 10px;
}
@media screen and (max-width: 759px) {
  .activity__content-text {
    padding-bottom: 5px;
  }
}

.activity__content-category {
  display: inline-block;
  letter-spacing: 0.001rem;
  padding: 2px 10px;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  margin-top: 5px;
  font-size: 16px;
}
@media screen and (max-width: 759px) {
  .activity__content-category {
    font-size: 13px;
  }
}

.activity__content-right {
  width: 300px;
}
.activity__content-right span {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 760px) and (max-width:1100px) {
  .activity__content-right {
    width: 230px;
  }
}
@media screen and (max-width: 759px) {
  .activity__content-right {
    width: 100%;
    margin-top: 10px;
    text-align: right;
  }
}

.activity__content-orange h3 {
  color: #F39800;
}
.activity__content-orange h3::before {
  background-color: #F39800;
}
.activity__content-orange h3::after {
  background-color: #F39800;
}
.activity__content-orange .activity__content-category {
  background-color: #F39800;
}

.activity__content-lightgreen h3 {
  color: #72AF2D;
}
.activity__content-lightgreen h3::before {
  background-color: #72AF2D;
}
.activity__content-lightgreen h3::after {
  background-color: #72AF2D;
}
.activity__content-lightgreen .activity__content-category {
  background-color: #72AF2D;
}

.activity__content-green h3 {
  color: #009944;
}
.activity__content-green h3::before {
  background-color: #009944;
}
.activity__content-green h3::after {
  background-color: #009944;
}
.activity__content-green .activity__content-category {
  background-color: #009944;
}

.activity__content-brown h3 {
  color: #956134;
}
.activity__content-brown h3::before {
  background-color: #956134;
}
.activity__content-brown h3::after {
  background-color: #956134;
}
.activity__content-brown .activity__content-category {
  background-color: #956134;
}

.activity__content-purple h3 {
  color: #601986;
}
.activity__content-purple h3::before {
  background-color: #601986;
}
.activity__content-purple h3::after {
  background-color: #601986;
}
.activity__content-purple .activity__content-category {
  background-color: #601986;
}

.activity__content-blue h3 {
  color: #0B318F;
}
.activity__content-blue h3::before {
  background-color: #0B318F;
}
.activity__content-blue h3::after {
  background-color: #0B318F;
}
.activity__content-blue .activity__content-category {
  background-color: #0B318F;
}

.activity__content-red h3 {
  color: #E72420;
}
.activity__content-red h3::before {
  background-color: #E72420;
}
.activity__content-red h3::after {
  background-color: #E72420;
}
.activity__content-red .activity__content-category {
  background-color: #E72420;
}

/*----------------------


team


=========================*/
.team {
  padding-bottom: 100px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .team {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 759px) {
  .team {
    padding-bottom: 40px;
  }
}

.team__title img {
  right: -250px;
}
@media screen and (max-width: 759px) {
  .team__title img {
    right: -80px;
    top: 0;
  }
}

.team__text {
  font-size: 22px;
  text-align: center;
  padding-top: 100px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .team__text {
    font-size: 20px;
    padding-top: 70px;
  }
}
@media screen and (max-width: 759px) {
  .team__text {
    font-size: 16px;
    padding-top: 60px;
  }
}

.team__content {
  display: flex;
  padding-top: 80px;
}
@media screen and (max-width: 759px) {
  .team__content {
    display: block;
    padding-top: 30px;
  }
}

.team__conical {
  margin-top: -20px;
}
@media screen and (max-width: 759px) {
  .team__conical {
    margin-bottom: 10px;
  }
}
.team__conical h3 {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .team__conical h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 759px) {
  .team__conical h3 {
    font-size: 25px;
    padding-bottom: 20px;
  }
}

.team__lineup {
  margin-top: 0;
}
@media screen and (max-width: 759px) {
  .team__lineup {
    margin-top: 20px;
  }
}

.team__lineup-head {
  padding: 10px;
  background-color: #036EB8;
  color: #ffffff;
  border-radius: 30px 30px 0 0;
  text-align: center;
}
@media screen and (max-width: 759px) {
  .team__lineup-head {
    border-radius: 20px 20px 0 0;
  }
}

.team__lineup-title {
  font-size: 37px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 760px) and (max-width:1100px) {
  .team__lineup-title {
    font-size: 30px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 759px) {
  .team__lineup-title {
    font-size: 25px;
    padding-bottom: 5px;
  }
}

.team__lineup-text {
  font-size: 22px;
  font-weight: 600;
}
@media (min-width: 760px) and (max-width:1100px) {
  .team__lineup-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 759px) {
  .team__lineup-text {
    font-size: 14px;
  }
}

.team__lineup-body {
  padding: 20px 60px;
  border: 5px solid #036EB8;
  border-radius: 0 0 30px 30px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .team__lineup-body {
    padding: 20px;
  }
}
@media screen and (max-width: 759px) {
  .team__lineup-body {
    padding: 20px;
  }
}

.team__lineup-now {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: #F39800;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 760px) and (max-width:1100px) {
  .team__lineup-now {
    font-size: 18px;
  }
}
@media screen and (max-width: 759px) {
  .team__lineup-now {
    font-size: 18px;
    position: relative;
  }
}
.team__lineup-now img {
  width: 15px;
  margin: 0 10px;
}
@media screen and (max-width: 759px) {
  .team__lineup-now img {
    position: absolute;
    width: 17px;
    top: 0;
  }
  .team__lineup-now img.is-yellow-left {
    left: -5px;
  }
  .team__lineup-now img.is-yellow-right {
    right: -5px;
  }
}

.team__lineup-columns {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
@media screen and (max-width: 759px) {
  .team__lineup-columns {
    flex-wrap: wrap;
  }
}

.team__lineup-column {
  width: 16.6666666667%;
}
@media screen and (max-width: 759px) {
  .team__lineup-column {
    width: 33.3333333333%;
    font-size: 12px;
  }
}

/*----------------------


faqs


=========================*/
.faqs {
  padding: 100px 0;
  background-color: #DAEDF6;
}
@media (min-width: 760px) and (max-width:1100px) {
  .faqs {
    padding: 80px 0;
  }
}
@media screen and (max-width: 759px) {
  .faqs {
    padding: 120px 0 80px 0;
  }
}

.faqs__title-wrap {
  padding-bottom: 40px;
  width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 760px) and (max-width:1100px) {
  .faqs__title-wrap {
    justify-content: center;
  }
}
@media screen and (max-width: 759px) {
  .faqs__title-wrap {
    padding-bottom: 15px;
    width: 100%;
    display: block;
  }
}

.faqs__title {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff; /* 文字色を白に設定 */
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 2px 2px 0 #000; /* 下右 */
  font-size: 65px; /* 文字サイズ（適宜変更） */
  font-weight: bold; /* 太字 */
  position: relative;
}
@media (min-width: 760px) and (max-width:1100px) {
  .faqs__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 759px) {
  .faqs__title {
    font-size: 30px;
    margin-left: 0;
    text-align: center;
  }
}
.faqs__title img {
  display: inline-block;
  width: 180px;
  margin-top: -80px;
  margin-bottom: -40px;
  margin-left: 40px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .faqs__title img {
    right: 60px;
    width: 130px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 759px) {
  .faqs__title img {
    width: 60px;
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    position: absolute;
    margin-left: 0;
  }
}

.l-accordion {
  margin-top: 50px;
  background-color: #FFFFFF;
  width: 850px;
  margin: 50px auto 0 auto;
  border-radius: 30px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .l-accordion {
    margin-top: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 759px) {
  .l-accordion {
    margin-top: 10px;
    border-radius: 15px;
    width: 100%;
  }
}

.l-accordion__head {
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin: 0 20px;
  position: relative;
}
.l-accordion__head.is-open {
  border-bottom: 1px dashed #000000;
}
@media screen and (max-width: 759px) {
  .l-accordion__head {
    padding: 15px 5px 15px 5px;
    margin: 0 10px;
  }
}
@media (min-width: 760px) and (max-width:1100px) {
  .l-accordion__head {
    padding: 15px 0;
  }
}

.p-accordion__q {
  font-size: 55px;
  font-weight: 700;
  color: #00A8E6;
  padding: 0 13px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .p-accordion__q {
    font-size: 45px;
  }
}
@media screen and (max-width: 759px) {
  .p-accordion__q {
    font-size: 30px;
    padding: 0;
  }
}

.p-accordion__question {
  font-size: 26px;
  font-weight: 600;
  margin-left: 20px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .p-accordion__question {
    font-size: 22px;
  }
}
@media screen and (max-width: 759px) {
  .p-accordion__question {
    font-size: 16px;
    margin-left: 10px;
    width: calc(100% - 40px);
  }
}

.l-accordion__body {
  display: flex;
  align-items: center;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, padding 0.5s ease;
  padding: 0;
}
.l-accordion__body.is-open {
  max-height: 300px;
  padding: 45px 30px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .l-accordion__body.is-open {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 759px) {
  .l-accordion__body.is-open {
    max-height: 400px;
    padding: 18px 17px;
  }
}

.p-accordion__a {
  font-size: 55px;
  color: #00A8E6;
  font-weight: 700;
  padding: 0 13px;
}
@media screen and (max-width: 759px) {
  .p-accordion__a {
    padding: 0;
    font-size: 30px;
  }
}
@media (min-width: 760px) and (max-width:1100px) {
  .p-accordion__a {
    font-size: 45px;
  }
}

.p-accordion__answer {
  margin-left: 20px;
}
.p-accordion__answer a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 759px) {
  .p-accordion__answer {
    margin-left: 10px;
    font-size: 14px;
  }
}

.accordion-icon {
  position: relative;
  width: 40px; /* 丸の直径 */
  height: 40px;
  background-color: #00A8E6; /* 青い丸の背景 */
  border-radius: 50%; /* 丸型にする */
  margin-left: auto;
}
@media screen and (max-width: 759px) {
  .accordion-icon {
    width: 23px;
    height: 23px;
  }
}
.accordion-icon.is-open .icon-bar2 {
  display: none;
}

.icon-bar1 {
  position: absolute;
  content: "";
  width: 17px;
  height: 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
}
@media screen and (max-width: 759px) {
  .icon-bar1 {
    width: 13px;
    height: 2px;
  }
}

.icon-bar2 {
  position: absolute;
  content: "";
  width: 4px;
  height: 17px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
}
@media screen and (max-width: 759px) {
  .icon-bar2 {
    height: 13px;
    width: 2px;
  }
}

/*----------------------


footer


=========================*/
.footer__wrap {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
@media screen and (max-width: 759px) {
  .footer__wrap {
    display: block;
  }
}

.footer__logo {
  width: 450px;
}
@media (min-width: 760px) and (max-width:1100px) {
  .footer__logo {
    width: 280px;
  }
}
@media screen and (max-width: 759px) {
  .footer__logo {
    width: 230px;
    margin: 0 auto;
  }
}

.footer__address {
  font-size: 13px;
}
.footer__address a {
  color: #036EB8;
}
@media screen and (max-width: 759px) {
  .footer__address a {
    font-size: 12px;
  }
}
.footer__address a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 759px) {
  .footer__address {
    text-align: center;
    padding-top: 20px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 759px) {
  .footer__tel {
    text-align: center;
    font-size: 12px;
  }
}

.footer__contact-btn {
  margin-top: 20px;
}
.footer__contact-btn a {
  padding: 9px 15px;
  background-color: #036EB8;
  color: #ffffff;
  border-radius: 40px;
  transition: all 0.8s ease;
}
.footer__contact-btn a img {
  width: 10px;
  margin-bottom: 6px;
  margin-left: 10px;
}
.footer__contact-btn a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 759px) {
  .footer__contact-btn a {
    font-size: 17px;
    padding: 12px 15px;
  }
}
@media screen and (max-width: 759px) {
  .footer__contact-btn {
    text-align: center;
  }
}

.footer__footer {
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  padding: 15px 0;
  background-color: #00A8E6;
}
@media screen and (max-width: 759px) {
  .footer__footer {
    font-size: 10px;
    padding: 5px 0;
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=main.css.map */