@charset "UTF-8";

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 62.5%;
  overflow-x: hidden;
}

@media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 60px;
  }
}
/* リンク  */

.inr {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .inr {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.main {
  margin-top: 64px;
}
@media screen and (max-width: 960px) {
  .main {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .main {
    margin-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .main {
    margin-top: 60px;
  }
}

/* マージン */
.mb120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .mb120 {
    margin-bottom: 80px;
  }
}
.mb80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .mb60 {
    margin-bottom: 30px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .mb40 {
    margin-bottom: 20px;
  }
}

/* パディング */
.pd200 {
  padding-bottom: 200px;
}
@media screen and (max-width: 960px) {
  .pd200 {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 599px) {
  .pd200 {
    padding-bottom: 80px;
  }
}

.pd120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 960px) {
  .pd120 {
    padding-bottom: 80px;
  }
}

.pd80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .pd80 {
    padding-bottom: 40px;
  }
}
.pd60 {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .pd60 {
    padding-bottom: 30px;
  }
}
.pd40 {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pd40 {
    padding-bottom: 20px;
  }
}

.pd20 {
  padding-bottom: 20px;
}

/*  配置  */
.flex-nml {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.flex-btw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.row-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.items-center {
  -webkit-align-items: center;
  align-items: center;
}
.items-start {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.items-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/* section-title */
.sec-ttl-en {
  font-size: 93px;
  font-family: var(--font-mambo);
  line-height: 1;
}

.sec-ttl-jp {
  font-size: var(--font-size-28);
  font-family: var(--font-mplus-rounded);
  letter-spacing: 0.2em;
  font-weight: 800;
}
.sec-ttl-jp2 {
  font-family: var(--font-zenmaru);
  font-size: var(--font-size-25);
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .sec-ttl-en {
    font-size: var(--font-size-40);
  }
  .sec-ttl-jp {
    font-size: var(--font-size-18);
  }
  .sec-ttl-jp2 {
    font-size: var(--font-size-16);
  }
}

/* リンクボタン */
.sec-link {
  display: block;
  width: 100%;
}

.sec-link img {
  width: 227px;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 960px) {
  .sec-link img {
    width: 160px;
  }
}

/* お問合せボタン */
.cmn-contact-btn {
  text-align: center;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: var(--color-red-2);
}
.cmn-contact-btn a {
  display: block;
  width: 100%;
  color: var(--color-white);
  font-weight: 800;
  letter-spacing: 0.2em;
}

/* グリーンライン */
.green-line {
  width: 100%;
  height: 72px;
  background-color: var(--color-green);
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .green-line {
    height: 40px;
  }
}

/* 改行 */
.br-sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .br-sp {
    display: block;
  }
}

.br-tab {
  display: block;
}
@media screen and (max-width: 960px) {
  .br-tab {
    display: none;
  }
}
