@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  background: #FAFAFA;
}

@media screen and (min-width: 1140px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .hidden-tab {
    display: none;
  }
}

.button {
  font-weight: 700;
  letter-spacing: 0.48px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 60px;
  border: 2px solid currentColor;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  min-width: 150px;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button--type2 {
  background-color: #111;
  color: #fff;
  border: 2px solid currentColor;
}
.button--type2:hover {
  background-color: #fff !important;
  color: #111;
}
.button:hover {
  background-color: #FABE00;
}

.headeing {
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.headeing-en {
  font-size: 38px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.8px;
}
@media screen and (min-width: 1140px) {
  .headeing-en {
    font-size: 50px;
    letter-spacing: 5px;
  }
}

.headeing-ja {
  margin-top: 14px;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 1140px) {
  .headeing-ja {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.inner {
  padding: 0px 15px;
}
@media screen and (min-width: 1140px) {
  .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 30px;
  }
}

.inlaine-block {
  font-weight: inherit;
  display: inline-block;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 15px;
}
@media screen and (min-width: 1140px) {
  .header-inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1140px) {
  .header-logo {
    margin-top: 8px;
  }
}
.header-logo a img {
  width: 100px;
  height: 26px;
  display: block;
}
@media screen and (min-width: 1140px) {
  .header-logo a img {
    width: 135px;
    height: 35px;
  }
}

.header-nav {
  display: none;
}
@media screen and (min-width: 1140px) {
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header-link {
  font-weight: 700;
  letter-spacing: 0.48px;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}
.header-link:hover {
  color: #F5810E;
}

.header-button {
  font-weight: 700;
  letter-spacing: 0.48px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 60px;
  border: 2px solid #111;
  background: #fff;
}

.haeder-open {
  margin-top: 3px;
}
@media screen and (min-width: 1140px) {
  .haeder-open {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon-bar {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 10px;
}

.drawer-icon-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: #111;
  border-radius: 6px;
  z-index: 11;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon-bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon-bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #F7BA1A;
  z-index: 50;
  padding: 86px 40px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content-link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.48px;
}

.drawer-content-button {
  margin-top: 14px;
  text-align: right;
}

.mv {
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8B819), to(#F0D320));
  background: linear-gradient(180deg, #F8B819 0%, #F0D320 100%);
  max-width: calc(100% - 30px);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1140px) {
  .mv {
    border-radius: 30px;
    max-width: calc(100% - 60px);
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mv {
    border-radius: 30px;
    max-width: calc(100% - 60px);
  }
}

.mv-inner {
  padding: 50px 20px 255px;
  position: relative;
}
@media screen and (min-width: 1140px) {
  .mv-inner {
    padding: 110px 30px 109px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mv-inner {
    padding: 110px 30px 109px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .mv-content {
    width: 45.4545454545%;
  }
}

.mv-lead1,
.mv-lead2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  border-radius: 5px;
  background: #FFF;
  padding: 10px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1140px) {
  .mv-lead1,
  .mv-lead2 {
    margin-left: 0;
    margin-right: 0;
    font-size: 38px;
    letter-spacing: 3.8px;
    padding: 12px 16px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mv-lead1,
  .mv-lead2 {
    margin-left: 0;
    margin-right: 0;
    font-size: 38px;
    letter-spacing: 3.8px;
    padding: 12px 16px;
  }
}

.mv-lead2 {
  margin-top: 8px;
}
@media screen and (min-width: 1140px) {
  .mv-lead2 {
    margin-top: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mv-lead2 {
    margin-top: 14px;
  }
}

.mv-description {
  font-weight: 700;
  letter-spacing: 0.48px;
  text-align: center;
  margin-top: 26px;
}
@media screen and (min-width: 1140px) {
  .mv-description {
    text-align: left;
    font-size: 18px;
    margin-top: 20px;
    letter-spacing: 0.54px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mv-description {
    text-align: left;
    font-size: 18px;
    margin-top: 20px;
    letter-spacing: 0.54px;
  }
}

.mv-button {
  margin-top: 21px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (min-width: 1140px) {
  .mv-button {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mv-button {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    margin-top: 30px;
  }
}
.mv-img {
  position: absolute;
  right: 0;
  width: 100%;
  text-align: center;
  bottom: -108px;
}
@media screen and (min-width: 1140px) {
  .mv-img {
    text-align: right;
    bottom: -88px;
    right: 31px;
    width: 54.5454545455%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mv-img {
    text-align: right;
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 54.5454545455%;
  }
}
.mv-img img {
  width: 345px;
}
@media screen and (min-width: 1140px) {
  .mv-img img {
    width: 600px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mv-img img {
    width: 600px;
  }
}

.case {
  margin-top: 108px;
}
@media screen and (min-width: 1140px) {
  .case {
    margin-top: 88px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .case {
    margin-top: 28px;
  }
}

.case-inner {
  margin-left: auto;
  margin-right: auto;
  padding: 60px 40px;
}
@media screen and (min-width: 1140px) {
  .case-inner {
    max-width: 1000px;
    padding: 70px 40px 50px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .case-inner {
    padding: 50px 40px 50px;
  }
}

.case-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.8px;
  text-align: center;
}
@media screen and (min-width: 1140px) {
  .case-title {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .case-title {
    font-size: 20px;
  }
}

.case-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 15px;
  margin-top: 30px;
}
@media screen and (min-width: 1140px) {
  .case-items {
    margin-top: 54px;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 40px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .case-items {
    margin-top: 44px;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 40px;
  }
}

.case-item {
  text-align: center;
}
.news-inner {
  padding: 60px 15px;
}
@media screen and (min-width: 1140px) {
  .news-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px;
  }
}

.news-title {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.8px;
  text-align: center;
}
@media screen and (min-width: 1140px) {
  .news-title {
    font-size: 50px;
    text-align: left;
    letter-spacing: 5px;
  }
}

.news-card {
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 0px 9px 30px 0px #F4F4F4;
          box-shadow: 0px 9px 30px 0px #F4F4F4;
  padding: 40px 12px;
}
@media screen and (min-width: 1140px) {
  .news-card {
    border-radius: 30px;
    padding: 40px 9.2105263158% 34px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .news-card {
    padding: 40px 4.3859649123% 34px;
  }
}

.news-lists {
  margin-top: 28px;
}
@media screen and (min-width: 1140px) {
  .news-lists {
    margin-top: 30px;
  }
}

.news-list:nth-child(n+2) {
  position: relative;
}
.news-list:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 1px;
  background: #E3E3E3;
}

.news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  padding: 10px 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 1140px) {
  .news-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 12px 0;
    gap: 0;
  }
}
.news-link:hover {
  background-color: #FFF9E5;
}

.news-link-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1140px) {
  .news-link-meta {
    width: 247px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 14px;
  }
}

.news-link-date {
  color: #333;
  white-space: nowrap;
}
@media screen and (min-width: 1140px) {
  .news-link-date {
    width: 119px;
  }
}

.news-link-label {
  color: #FFF;
  font-weight: 700;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 2px;
  background: #E4780C;
  min-width: 63px;
  text-align: center;
}
.news-link-label.is-news {
  background: #E4780C;
}
.news-link-label.is-column {
  background: #ECB815;
}
.news-link-label.is-event {
  background: #389B47;
}

.news-link-button {
  margin-top: 22px;
  text-align: right;
}
@media screen and (min-width: 1140px) {
  .news-link-button {
    margin-top: 20px;
  }
}
.news-link-button a {
  font-weight: 700;
  line-height: 100%;
  display: inline-block;
  border-bottom: 2px solid currentColor;
  padding-bottom: 8px;
  vertical-align: top;
  -webkit-transition: color 0.3s, border-bottom 0.3s;
  transition: color 0.3s, border-bottom 0.3s;
}
.news-link-button a:hover {
  color: #FABE00;
}

.about {
  padding: 60px 0px;
  overflow: hidden;
}
@media screen and (min-width: 1140px) {
  .about {
    padding: 50px 0 100px;
  }
}

.about-inner {
  overflow: hidden;
}

.about-title {
  text-align: center;
  margin-top: 63px;
}
@media screen and (min-width: 1140px) {
  .about-title {
    margin-top: 50px;
  }
}
.about-title img {
  width: 180px;
}
@media screen and (min-width: 1140px) {
  .about-title img {
    width: 230px;
  }
}

.about-content {
  margin-top: 150px;
  position: relative;
  padding-top: 288px;
  padding-bottom: 105px;
  text-align: center;
}
@media screen and (min-width: 1140px) {
  .about-content {
    margin-top: 176px;
    padding-top: 284px;
    padding-bottom: 100px;
  }
}
.about-content::before {
  content: "";
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8B819), to(#F0D320));
  background: linear-gradient(180deg, #F8B819 0%, #F0D320 100%);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1140px) {
  .about-content::before {
    width: 800px;
    height: 800px;
  }
}

.about-image {
  position: absolute;
  text-align: center;
  top: -110px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1140px) {
  .about-image {
    top: -125px;
  }
}
.about-image img {
  width: 320px;
}
@media screen and (min-width: 1140px) {
  .about-image img {
    width: 330px;
  }
}

.about-text {
  font-weight: 700;
  line-height: 230%; /* 36.8px */
}

.about-pop {
  margin-top: 40px;
  font-weight: 700;
  line-height: 1; /* 16px */
  letter-spacing: 1.28px;
}
@media screen and (min-width: 1140px) {
  .about-pop {
    margin-top: 42px;
  }
}

.about-button {
  margin-top: 12px;
}
@media screen and (min-width: 1140px) {
  .about-button {
    margin-top: 15px;
  }
}

.about-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 40px);
  overflow: auto;
  padding: 16px 15px 64px;
  border-radius: 20px;
  background: #FFF;
  border: none;
  z-index: 60;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 1140px) {
  .about-modal {
    width: 1140px;
    padding: 49px 70px 75px;
  }
}
.about-modal::-ms-backdrop {
  opacity: 0.2;
  background: #000;
}
.about-modal::backdrop {
  opacity: 0.2;
  background: #000;
}

.about-modal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: sticky;
  top: 0;
}

.about-modal-close-icon img {
  width: 37px;
}

.about-modal-body {
  margin-top: 12px;
}
@media screen and (min-width: 1140px) {
  .about-modal-body {
    margin-top: 43px;
  }
}
.about-modal-body p {
  font-size: 14px;
}
.about-modal-body p:nth-child(n+2) {
  margin-top: 20px;
}
@media screen and (min-width: 1140px) {
  .about-modal-body p {
    font-size: 16px;
  }
}

.about-modal-close-button {
  margin-top: 30px;
  text-align: center;
}

.movie {
  padding: 60px 15px;
  margin-top: 60px;
  background: url(../../img/section-bg.png) repeat top left/529px auto;
}
@media screen and (min-width: 1140px) {
  .movie {
    padding-top: 100px;
    padding-bottom: 107px;
    margin-top: 94px;
  }
}

.movie-box {
  text-align: center;
}

.movie-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.8px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 1140px) {
  .movie-title {
    font-size: 50px;
    letter-spacing: 5px;
  }
}

.movie-text {
  margin-top: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 1140px) {
  .movie-text {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.movie-iframe {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 1140px) {
  .movie-iframe {
    margin-top: 56px;
  }
}
.movie-iframe iframe {
  width: 345px;
  height: auto;
  aspect-ratio: 345/194;
  max-width: 100%;
  vertical-align: top;
}
@media screen and (min-width: 1140px) {
  .movie-iframe iframe {
    width: 640px;
    aspect-ratio: 640/360;
  }
}

.how {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1140px) {
  .how {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.how-main {
  background: #FFFBF0;
  padding-bottom: 230px;
}

.how-top {
  margin-top: 104px;
  position: relative;
}

.how-top-body {
  position: absolute;
  top: -72px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1140px) {
  .how-top-body {
    top: -41px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.how-img {
  text-align: center;
}
.how-img img {
  width: 85px;
}

.how-text {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 1.8px;
  text-align: center;
  width: 239px;
}
@media screen and (min-width: 1140px) {
  .how-text {
    width: 478px;
    color: #111;
    font-size: 22px;
    letter-spacing: 2.2px;
  }
}

@media screen and (min-width: 1140px) {
  .how-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 948px;
    margin: 0 auto;
  }
}

.how-item {
  width: 265px;
  height: 300px;
  border-radius: 30px;
  border: 3px solid #111;
  background: #FFF;
  position: relative;
  margin: 0 auto 0;
  top: 181px;
  max-width: 100%;
}
.how-item:nth-of-type(n + 2) {
  margin-top: 65px;
}
@media screen and (min-width: 1140px) {
  .how-item {
    width: 300px;
    height: 340px;
    margin-top: -30px;
    margin-left: auto;
    margin-right: auto;
  }
  .how-item:nth-of-type(n + 2) {
    margin-top: -30px;
    margin-left: 24px;
    margin-right: 0;
    margin-right: 0;
  }
}

.how-body {
  width: 90px;
  height: 90px;
  border-radius: 45px;
  border: 3px solid #111;
  background: #F5810E;
  position: relative;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -48px;
  max-width: 100%;
}

.how-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
}

.how-text2 {
  width: 39px;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
}

.how-num {
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.4px;
}

.how-item-img {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 160px;
  height: 198px;
  max-width: 100%;
}
.how-body-text {
  margin-top: 10px;
  color: #111;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.48px;
  text-align: center;
  max-width: 100%;
}
@media screen and (min-width: 1140px) {
  .how-body-text {
    margin-top: 30px;
  }
}

.how-to-use {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1140px) {
  .how-to-use {
    padding: 100px 0 100px;
  }
}

.how-to-use-boxes {
  margin-top: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 112px;
}
@media screen and (min-width: 1140px) {
  .how-to-use-boxes {
    margin-top: 89px;
    gap: 75px;
  }
}

.how-to-use-box {
  border-radius: 30px;
  background: #FFFBF0;
  padding: 54px 40px 48px;
}
@media screen and (min-width: 1140px) {
  .how-to-use-box {
    padding: 44px 10px 56px;
    border-radius: 40px;
  }
}

.how-to-use-box-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1140px) {
  .how-to-use-box-title {
    font-size: 22px;
    letter-spacing: 1.7px;
    padding-right: 95px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .how-to-use-box-title {
    font-size: 22px;
    letter-spacing: 2.2px;
  }
}
.how-to-use-box-title img {
  width: 85px;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 1140px) {
  .how-to-use-box-title img {
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    bottom: 0;
  }
  .is-type2 .how-to-use-box-title img {
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .how-to-use-box-title img {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    bottom: calc(100% + 16px);
  }
  .is-type2 .how-to-use-box-title img {
    left: auto;
  }
}
@media screen and (min-width: 1140px) {
  .is-type2 .how-to-use-box-title {
    font-size: 22px;
    letter-spacing: 2.2px;
    padding-left: 95px;
    padding-right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.how-to-use-steps {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1140px) {
  .how-to-use-steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
    max-width: 948px;
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .how-to-use-steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width: 1140px) {
  .how-to-use-step {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .how-to-use-step {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.step-box {
  padding-top: 45px;
  position: relative;
}

.step-box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #111;
  background: #F5810E;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-type2 .step-box-head {
  background: #FABE00;
}

.step-box-head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.step-box-head-numver {
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.4px;
  margin-top: 3px;
}

.step-box-body {
  border-radius: 30px;
  border: 3px solid #111;
  background: #FFF;
  overflow: hidden;
  padding: 47px 10px 23px;
  text-align: center;
}

.step-box-image img {
  width: 160px;
}
@media screen and (min-width: 1140px) {
  .step-box-image img {
    width: 200px;
  }
}

.step-box-text {
  margin-top: 10px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.48px;
}

.merit {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1140px) {
  .merit {
    padding-top: 100px;
    padding-bottom: 98px;
  }
}

.merit-body {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1140px) {
  .merit-body {
    margin-top: 60px;
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .merit-body {
    margin-top: 60px;
    gap: 40px;
  }
}

.merit-itme {
  border-radius: 20px;
  background: #FFF;
  padding: 10px 20px 24px;
}
@media screen and (min-width: 1140px) {
  .merit-itme {
    padding: 20px 110px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .merit-itme {
    padding: 20px 60px;
  }
}

@media screen and (min-width: 1140px) {
  .merit-body-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reverse .merit-body-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .merit-body-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reverse .merit-body-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.merit-img {
  text-align: center;
}
@media screen and (min-width: 1140px) {
  .merit-img {
    width: 38.0434782609%;
  }
}
.merit-img img {
  width: 200px;
  max-width: 100%;
}
@media screen and (min-width: 1140px) {
  .merit-img img {
    width: 350px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .merit-img img {
    width: 300px;
  }
}

.merit-ds {
  margin-top: 18px;
}
@media screen and (min-width: 1140px) {
  .merit-ds {
    width: 56.5217391304%;
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .merit-ds {
    width: 56.5217391304%;
    margin-top: 0;
  }
}

.merit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1140px) {
  .merit-box {
    gap: 28px;
  }
}

.merit-num {
  color: #FABE00;
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 100%;
}
@media screen and (min-width: 1140px) {
  .merit-num {
    font-size: 110px;
  }
}

.merit-text {
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 1140px) {
  .merit-text {
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 2px;
  }
}

.merit-subtext {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 200%;
}
@media screen and (min-width: 1140px) {
  .merit-subtext {
    margin-top: 16px;
    font-size: 15px;
  }
}

.content {
  background: -webkit-gradient(linear, left top, left bottom, from(#F8BD1E), to(#F0D320));
  background: linear-gradient(180deg, #F8BD1E 0%, #F0D320 100%);
}

.content-inner {
  padding: 50px 31px;
}
@media screen and (min-width: 1140px) {
  .content-inner {
    padding: 60px 100px;
  }
}

.content-box {
  text-align: center;
}

.content-text {
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.48px;
  text-align: center;
}
@media screen and (min-width: 1140px) {
  .content-text {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.conntent-button {
  margin-top: 16px;
}

.compare {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
@media screen and (min-width: 1140px) {
  .compare {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.compare-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (min-width: 1140px) {
  .compare-title {
    font-size: 24px;
  }
}

.compare-content {
  margin-top: 42px;
  overflow-x: auto;
  padding-bottom: 29px;
}
@media screen and (min-width: 1140px) {
  .compare-content {
    margin-top: 60px;
    padding-bottom: 0;
  }
}
.compare-content::-webkit-scrollbar {
  height: 6px; /* スクロールバーの幅 */
}
.compare-content::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #FABE00;
  width: 112px;
}
.compare-content::-webkit-scrollbar-track {
  border-radius: 20px;
  background: #D9D9D9;
}
@media screen and (min-width: 1140px) {
  .compare-content {
    overflow-x: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .compare-content {
    overflow-x: hidden;
  }
}

.compare-table {
  width: 620px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (min-width: 1140px) {
  .compare-table {
    width: 1000px;
  }
}
.compare-table th, .compare-table td {
  text-align: center;
  font-weight: 700;
  height: 60px;
  vertical-align: middle;
}
@media screen and (min-width: 1140px) {
  .compare-table th, .compare-table td {
    height: 100px;
    width: 250px;
  }
}
.compare-table th:nth-child(1), .compare-table td:nth-child(1) {
  width: 130px;
}
@media screen and (min-width: 1140px) {
  .compare-table th:nth-child(1), .compare-table td:nth-child(1) {
    width: 250px;
  }
}
.compare-table th:nth-child(2), .compare-table td:nth-child(2) {
  width: 90px;
  background: #FFF9E5;
  font-size: 16px;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 1140px) {
  .compare-table th:nth-child(2), .compare-table td:nth-child(2) {
    width: 250px;
    font-size: 25px;
    line-height: 170%;
    letter-spacing: 0.75px;
  }
}
.compare-table th:nth-child(2) img, .compare-table td:nth-child(2) img {
  width: 70px;
}
@media screen and (min-width: 1140px) {
  .compare-table th:nth-child(2) img, .compare-table td:nth-child(2) img {
    width: 123px;
  }
}
.compare-table th {
  letter-spacing: 0.48px;
}
@media screen and (min-width: 1140px) {
  .compare-table th {
    font-size: 20px;
    letter-spacing: 0.6px;
  }
}
.compare-table td {
  font-size: 14px;
  letter-spacing: 0.42px;
}
@media screen and (min-width: 1140px) {
  .compare-table td {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
.compare-table thead tr {
  letter-spacing: 1.6px;
}
@media screen and (min-width: 1140px) {
  .compare-table thead tr {
    letter-spacing: 2px;
  }
}
.compare-table tbody tr {
  border-top: 1.5px solid #000;
}
@media screen and (min-width: 1140px) {
  .compare-table tbody tr {
    border-top-width: 3px;
  }
}
.compare-table tbody th, .compare-table tbody td {
  height: 58.5px;
}
@media screen and (min-width: 1140px) {
  .compare-table tbody th, .compare-table tbody td {
    height: 100px;
  }
}

.compare-attention {
  margin-top: 11px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
@media screen and (min-width: 1140px) {
  .compare-attention {
    display: none;
  }
}

.contact {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(../../img/section-bg.png) repeat top left/529px auto;
}
@media screen and (min-width: 1140px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact-box {
  background: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}
@media screen and (min-width: 1140px) {
  .contact-box {
    padding-right: 264px;
    padding-left: 264px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .contact-box {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.contact-form {
  margin-top: 30px;
}
@media screen and (min-width: 1140px) {
  .contact-form {
    margin-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .contact-form {
    max-width: 612px;
    margin: 50px auto 0;
  }
}

.contact-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.contact-privacy {
  margin-top: 29px;
  text-align: center;
}

.contact-button {
  margin-top: 29px;
  text-align: center;
}
@media screen and (min-width: 1140px) {
  .contact-button {
    margin-top: 38px;
  }
}

@media screen and (min-width: 1140px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
}

.form-field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1140px) {
  .form-field-head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .form-field-head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.form-field-label {
  font-weight: 700;
  line-height: 1.4375;
}

.form-field-tag {
  border-radius: 2px;
  background: #ee8013;
  display: inline-block;
  padding: 6px 8px 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.98px;
}
.form-field-tag.is-option {
  background: #43b549;
}

.form-field-item {
  margin-top: 14px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 1140px) {
  .form-field-item {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .form-field-item {
    margin-top: 0;
  }
}
.form-field-item [type=text],
.form-field-item [type=email],
.form-field-item select,
.form-field-item textarea {
  -webkit-transition: outline-color 0.3s;
  transition: outline-color 0.3s;
}
.form-field-item [type=text]:hover,
.form-field-item [type=email]:hover,
.form-field-item select:hover,
.form-field-item textarea:hover {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: #fabe00;
}
.form-field-item [type=text]:focus,
.form-field-item [type=email]:focus,
.form-field-item select:focus,
.form-field-item textarea:focus {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: #fabe00;
}
.form-text {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  padding: 12px 13px 11px;
}

.form-radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio-input:checked + .form-radio-text::after {
  opacity: 1;
}
.form-radio-input:checked:focus + .form-radio-text::before {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: #fabe00;
}
.form-radio-input:hover + .form-radio-text::before {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: #fabe00;
}

.form-field-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.4375;
}
@media screen and (min-width: 1140px) {
  .form-field-radios {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .form-field-radios {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.form-radio-text {
  font-weight: 700;
  position: relative;
  padding-left: 28px;
}
.form-radio-text::before, .form-radio-text::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio-text::before {
  width: 24px;
  height: 24px;
  border: 3px solid #111;
  left: 0;
  -webkit-transition: outline-color 0.3s;
  transition: outline-color 0.3s;
}
.form-radio-text::before:focus + .form-field-radio-text::before {
  outline: -webkit-focus-ring-color auto 1px;
}
.form-radio-text::after {
  width: 10px;
  height: 10px;
  background: #f5810e;
  left: 7px;
  opacity: 0;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  font-weight: 700;
  padding: 12px 43px 11px 13px;
  width: 100%;
  background: url(../../img/polygon-1.png) no-repeat center right 16px/9.451px 6.969px;
}

.form-textarea {
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  width: 100%;
  height: 180px;
  padding: 13px;
}

.form-checkbox:hover .form-checkbox-text::before {
  border-color: #FABE00;
}

.form-checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox-input:checked + .form-checkbox-text::after {
  opacity: 1;
}
.form-checkbox-input:focus + .form-checkbox-text::before {
  border-color: #FABE00;
}

.form-checkbox-text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 700;
}
.form-checkbox-text a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox-text a:hover {
  color: #F5810E;
}
.form-checkbox-text::before, .form-checkbox-text::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
.form-checkbox-text::before {
  width: 20px;
  height: 20px;
  border: #111 solid 1px;
  border-radius: 1px;
  margin-top: 2px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-checkbox-text::after {
  background: url(../../img/vector.png) no-repeat center center/contain;
  width: 23px;
  height: 17.53px;
  left: -1px;
  margin-top: 0.8px;
  opacity: 0;
}
.form-checkbox-text a {
  text-decoration-line: underline;
  font-weight: inherit;
}

.cta {
  background: -webkit-gradient(linear, left top, left bottom, from(#F8B819), to(#F0D320));
  background: linear-gradient(180deg, #F8B819 0%, #F0D320 100%);
  text-align: center;
}

.cta-inner {
  padding: 50px 31px;
}
@media screen and (min-width: 1140px) {
  .cta-inner {
    padding: 60px;
  }
}

.cta-text {
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 1140px) {
  .cta-text {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.cta-button {
  margin-top: 16px;
}

.footer {
  background: #111;
  padding-top: 8px;
  padding-bottom: 12px;
  text-align: center;
}

.to-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  width: min(13.3333333333%, 50px);
}
@media screen and (min-width: 1140px) {
  .to-top {
    right: 16px;
    bottom: 30px;
    width: 76px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.to-top a:hover {
  opacity: 0.7;
}
.footer-copyright {
  color: #F5F5F5;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.96px;
}

.qa-body {
  margin-top: 52px;
}

.qa-itmes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
}

.qa-item {
  border-radius: 10px;
  border: 3px solid #111;
  background: #FFF;
  padding: 32px 36px 8px 15px;
  position: relative;
}
.qa-item::before {
  content: "Q";
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: #F5810E;
  border: 3px #111 solid;
  text-align: center;
  color: #111;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 2.2px;
  top: -23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qa-item:first-child .qa-a {
  display: block;
}
.qa-item:first-child .qa-q::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.qa-q {
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 1.12px;
  position: relative;
}
.qa-q::before {
  content: "";
  position: absolute;
  background: url(../../img/polygon-1.png) no-repeat right center/9.26px 6.834px;
  width: 9.26px;
  height: 6.834px;
  right: -15.87px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.qa-q.is-open::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.qa-a {
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 1.12px;
  padding: 40px 7px 20px 52px;
  position: relative;
  display: none;
}
.qa-a::before {
  content: "A";
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: #FABE00;
  color: #111;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 2.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  top: 32px;
}

.qa {
  padding-top: 62px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1140px) {
  .qa {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1140px) {
  .qa-inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 860px;
  }
}

.qa-boxes {
  margin-top: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
}
@media screen and (min-width: 1140px) {
  .qa-boxes {
    margin-top: 74px;
  }
}

.qa-box {
  border-radius: 10px;
  border: 3px solid #111;
  background: #FFF;
}
.qa-box.is-open .qa-box__head::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.qa-box__head {
  padding: 29px 37px 17px 12px;
  position: relative;
  display: block;
  width: 100%;
}
@media screen and (min-width: 1140px) {
  .qa-box__head {
    padding: 29px 77px 17px 18px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: 3px;
  right: 14px;
  width: 9.26px;
  height: 6.834px;
  background: url(../../img/polygon.png) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 1140px) {
  .qa-box__head::after {
    right: 17px;
  }
}

.qa-box__head-icon {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  background: #F5810E;
  border-radius: 22px;
  border: 3px solid #111;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  position: absolute;
  top: -24px;
  left: 12px;
}
@media screen and (min-width: 1140px) {
  .qa-box__head-icon {
    left: 17px;
    top: -26px;
  }
}

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 170%; /* 23.8px */
  letter-spacing: 1.12px;
  display: block;
  text-align: left;
}
@media screen and (min-width: 1140px) {
  .qa-box__head-text {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 1.28px;
  }
}

.qa-box__body {
  padding: 13px 14px 17px 12px;
  display: none;
}
@media screen and (min-width: 1140px) {
  .qa-box__body {
    padding: 3px 33px 17px 17px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 1140px) {
  .qa-box__a {
    gap: 10px;
  }
}

.qa-box_a-icon {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: #FABE00;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.qa-box_a-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 12px;
}
@media screen and (min-width: 1140px) {
  .qa-box_a-text {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 1.28px;
    padding-top: 7px;
  }
}

.gallery {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1140px) {
  .gallery {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1140px) {
  .gallery-inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 860px;
  }
}

.gallery-slider {
  margin-top: 30px;
}
@media screen and (min-width: 1140px) {
  .gallery-slider {
    margin-top: 60px;
  }
}

.gallery-swiper {
  padding-bottom: 26px;
  padding-right: 5px;
  padding-left: 5px;
  margin-left: -5px;
  margin-right: -5px;
}
@media screen and (min-width: 1140px) {
  .gallery-swiper {
    padding-right: 80px;
    padding-left: 80px;
    margin-right: 0;
    margin-left: 0;
  }
}

.gallery-card {
  border-radius: 20px;
  border: 3px solid #111;
  -webkit-box-shadow: 0px 9px 30px 0px #F4F4F4;
          box-shadow: 0px 9px 30px 0px #F4F4F4;
  background: #FFF;
  padding: 12px 12px 9px 12px;
}
@media screen and (min-width: 1140px) {
  .gallery-card {
    padding: 17px 17px 15px 17px;
    border-radius: 30px;
  }
}

.gallery-card-imge {
  text-align: center;
}
.gallery-card-imge img {
  border-radius: 10px;
}
@media screen and (min-width: 1140px) {
  .gallery-card-imge img {
    border-radius: 20px;
  }
}

.gallery-card-text {
  margin-top: 11px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 1140px) {
  .gallery-card-text {
    margin-top: 18px;
    font-size: 16px;
  }
}

.gallery-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  bottom: 0 !important;
}
.gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #BCBCBC;
  opacity: 1;
}
.gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FABE00;
}

.swiper-button-prev,
.swiper-button-next {
  margin-top: -38px;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 1140px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
    margin-top: -60px;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.gallery-prev {
  background: url(../../img/prev-icon.png) no-repeat center center/contain;
  left: 0;
}
@media screen and (min-width: 1140px) {
  .gallery-prev {
    left: 10px;
  }
}

.gallery-next {
  background: url(../../img/next-icon.png) no-repeat center center/contain;
  right: 0;
}
@media screen and (min-width: 1140px) {
  .gallery-next {
    right: 10px;
  }
}

.casestudy {
  padding-top: 60px;
  padding-bottom: 60px;
}

.casestudy-inner {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 996px;
}
@media screen and (min-width: 1140px) {
  .casestudy-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .casestudy-inner {
    margin: 0 auto;
  }
}

.casestudy-slider {
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width: 1140px) {
  .casestudy-slider {
    margin: 40px auto 0;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .casestudy-slider {
    margin: 40px auto 0;
  }
}

.casestudy-swiper {
  padding-bottom: 44px;
  padding-left: 8px;
  margin-left: -8px;
  margin-right: -20px;
}
@media screen and (min-width: 1140px) {
  .casestudy-swiper {
    padding-bottom: 57px;
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 0px;
    margin-left: 0px;
  }
}

.casestudy-slide {
  width: 320px !important;
}

.casestudy-card {
  border-radius: 4px;
  background: #FFF;
}

.casestudy-img img {
  width: 320px;
}

.casestudy-body {
  padding: 14px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.casestudy-top {
  color: #228DDD;
  font-size: 15px;
  font-weight: 700;
  line-height: 170%;
}

.casestudy-midlle {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 170%;
}

.casestudy-text {
  color: #9D9D9D;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

.casestudy-prev {
  width: 44px;
  height: 44px;
  left: -13px;
  background: url(../../img/prev.png) no-repeat center center/contain;
}
@media screen and (min-width: 1140px) {
  .casestudy-prev {
    left: -60px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .casestudy-prev {
    left: -10px;
  }
}

.casestudy-next {
  width: 44px;
  height: 44px;
  right: -9px;
  background: url(../../img/next.png) no-repeat center center/contain;
}
@media screen and (min-width: 1140px) {
  .casestudy-next {
    right: -60px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .casestudy-next {
    right: -40px;
  }
}