@charset "UTF-8";
/******************************************
	記述順
	共通
*******************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #0b0b0b;
  background: #fff;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 1.4px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-weight: 500;
}

a {
  color: #0b0b0b;
}
a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

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

/********** cmn **********/
section {
  padding: 100px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  section {
    padding: 10% 0;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 13% 0;
  }
}
section .ttl_cmn {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section .ttl_cmn {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 480px) {
  section .ttl_cmn {
    margin-bottom: 7%;
  }
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.btn_black {
  font-size: 2.4rem;
  position: relative;
  color: #fff;
  display: block;
  padding: 20px;
  background: #0b0b0b;
  border: 5px solid #fff;
  text-align: center;
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  .btn_black {
    font-size: 1.8rem;
  }
}
.btn_black:after {
  content: "";
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  background: url(images/btn_arrow_black.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .btn_black:after {
    width: 20px;
    height: 20px;
  }
}

.btn_red {
  font-size: 2.4rem;
  position: relative;
  color: #fff;
  display: block;
  padding: 20px;
  background: #ce232c;
  text-align: center;
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  .btn_red {
    font-size: 1.8rem;
  }
}
.btn_red:after {
  content: "";
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  background: url(images/btn_arrow_red.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .btn_red:after {
    width: 20px;
    height: 20px;
  }
}

.btn_normal {
  font-family: "fot-udkakugoc80-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 5px;
  font-size: 2.4rem;
  position: relative;
  color: #fff;
  display: block;
  padding: 20px;
  text-align: center;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .btn_normal {
    font-size: 1.8rem;
  }
}
.btn_normal.black {
  background: #0b0b0b;
}
.btn_normal.red {
  color: #fff;
  background: #ce232c;
}
.btn_normal.white {
  color: #ce232c;
  background: #fff;
}

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

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

.bg_dot {
  background: url(images/bg.jpg) repeat center/auto;
}

.fc_red {
  color: #ce232c;
}

.ttl_cmn {
  font-size: 9rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .ttl_cmn {
    font-size: 6rem;
  }
}
@media screen and (max-width: 480px) {
  .ttl_cmn {
    font-size: 4rem;
  }
}

.border__ttl {
  color: #4D4D4D;
  line-height: 1.4em;
  text-align: center;
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .border__ttl {
    padding-bottom: 7%;
    margin-bottom: 7%;
  }
}
@media screen and (max-width: 480px) {
  .border__ttl {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
.border__ttl:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 9px;
  margin: auto;
  background-image: linear-gradient(90deg, #48d5ff, #003ad8);
}
@media screen and (max-width: 480px) {
  .border__ttl:before {
    width: 100px;
    height: 5px;
  }
}
.border__ttl span {
  display: block;
}
.border__ttl .en {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .border__ttl .en {
    margin-top: 10px;
  }
}
.border__ttl .jp {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  .border__ttl .jp {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 480px) {
  .border__ttl .jp {
    font-size: 2.8rem;
  }
}

/********** header **********/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  z-index: 8888;
  background: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #header {
    display: block;
    padding: 10px 0;
  }
}
#header .hd_logo {
  margin-left: 60px;
  width: 30%;
}
@media screen and (max-width: 1398px) {
  #header .hd_logo {
    margin-left: 3%;
  }
}
@media screen and (max-width: 768px) {
  #header .hd_logo {
    width: 100%;
    margin-left: 0;
  }
}
#header .hd_logo a {
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #header .hd_logo a img {
    width: 60px;
  }
}
@media screen and (max-width: 480px) {
  #header .hd_logo a img {
    width: 40px;
  }
}
#header .hd_logo a span {
  display: inline-block;
  vertical-align: middle;
}
#header .hd_logo a .hd_logo__name {
  font-size: 2rem;
  font-weight: bold;
  padding-left: 20px;
  color: #32823A;
}
@media screen and (max-width: 768px) {
  #header .hd_logo a .hd_logo__name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  #header .hd_logo a .hd_logo__name {
    font-size: 1.4rem;
  }
}
#header .wrap {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

nav {
  text-align: right;
  width: 76%;
  max-width: 1265px;
}
@media screen and (max-width: 768px) {
  nav {
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -100;
    display: none;
    opacity: 0;
    padding: 0 20px;
  }
}
nav ul {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  nav ul {
    padding: 65px 0 0 0;
    display: block;
  }
}
nav ul li a {
  display: block;
  line-height: 0;
}

/********** footer **********/
#footer {
  position: relative;
  background: #F4F4F4;
}

.copy {
  font-size: 19px;
  padding: 20px 0;
}
@media screen and (max-width: 480px) {
  .copy {
    font-size: 1.3rem;
  }
}

#page-top {
  font-size: 120%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #page-top {
    bottom: 90px;
  }
}
#page-top a {
  text-decoration: none;
  text-align: center;
  display: block;
}

/********** mainvisual **********/
#mainvisual {
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: #F4F4F4;
}
#mainvisual .mainvisual_btn {
  position: absolute;
  left: -50%;
  right: -50%;
  top: -50%;
  bottom: -50%;
  z-index: 2;
  transform: translate(50%, 60%);
  width: 100%;
}
#mainvisual .mainvisual_btn_flex {
  display: flex;
  justify-content: space-between;
  max-width: 787px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #mainvisual .mainvisual_btn_flex {
    display: block;
  }
}
#mainvisual .mainvisual_btn_flex a {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #mainvisual .mainvisual_btn_flex a {
    margin: 0 auto 20px;
  }
}
#mainvisual .mainvisual_bg {
  position: relative;
  z-index: 0;
}
#mainvisual .mainvisual_bg img {
  width: 100%;
}

/********** slider **********/
#slideshow {
  padding: 80px 0;
  background: #1B1F4E;
}
@media screen and (max-width: 768px) {
  #slideshow {
    padding: 10% 0;
  }
}
@media screen and (max-width: 480px) {
  #slideshow {
    padding: 40px 0;
  }
}

/********** features **********/
.features {
  overflow: hidden;
  background: #F4F4F4;
}
.features .txt_c {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .features .txt_c {
    margin-bottom: 12%;
  }
}
@media screen and (max-width: 480px) {
  .features .txt_c {
    margin-bottom: 50px;
  }
}
.features ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
}
.features ul li {
  width: 31%;
  max-width: 483px;
  margin-bottom: 2%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .features ul li {
    width: 48%;
    max-width: 100%;
  }
}
.features ul li:before {
  display: block;
  content: "";
  width: 86px;
  height: 97px;
  position: absolute;
  left: -30px;
  top: -40px;
  z-index: 1;
  background-image: url(images/icon__number01.png);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .features ul li:before {
    left: -10px;
    top: -20px;
    width: 43px;
    height: 48.5px;
  }
}
.features ul li:nth-of-type(2):before {
  background-image: url(images/icon__number02.png);
}
.features ul li:nth-of-type(3):before {
  background-image: url(images/icon__number03.png);
}
.features ul li:nth-of-type(4):before {
  background-image: url(images/icon__number04.png);
}
.features ul li:nth-of-type(5):before {
  background-image: url(images/icon__number05.png);
}
.features ul li:nth-of-type(6):before {
  background-image: url(images/icon__number06.png);
}

.aftersupport {
  color: #fff;
  background: #F4F4F4;
}
.aftersupport__top {
  padding: 140px 0 130px;
  background: url(images/aftersupport__bg01__pc.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .aftersupport__top {
    padding: 16% 0 15%;
    background: url(images/aftersupport__bg01__sp.jpg) no-repeat center/cover;
  }
}
@media screen and (max-width: 480px) {
  .aftersupport__top {
    padding: 70px 0 60px;
  }
}
.aftersupport__top h2 {
  font-size: 3.4rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .aftersupport__top h2 {
    font-size: 3rem;
    margin-bottom: 6%;
  }
}
@media screen and (max-width: 480px) {
  .aftersupport__top h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.aftersupport__top h2 span {
  background-image: linear-gradient(90deg, #48d5ff, #003ad8);
}
.aftersupport__top p {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .aftersupport__top p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .aftersupport__top p {
    font-size: 1.4rem;
  }
}
.aftersupport__txt {
  padding: 30px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .aftersupport__txt {
    padding: 5% 0;
  }
}
@media screen and (max-width: 480px) {
  .aftersupport__txt {
    padding: 15px 0;
  }
}
.aftersupport__bottom {
  padding: 140px 0 130px;
  background: url(images/aftersupport__bg02__pc.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .aftersupport__bottom {
    padding: 16% 0 15%;
    background: url(images/aftersupport__bg02__sp.jpg) no-repeat center/cover;
  }
}
@media screen and (max-width: 480px) {
  .aftersupport__bottom {
    padding: 70px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .aftersupport__bottom .wrap {
    padding-right: 10px;
  }
}
.aftersupport__bottom .wrap {
  padding-left: 40%;
}
@media screen and (max-width: 768px) {
  .aftersupport__bottom .wrap {
    padding-left: 35%;
  }
}
.aftersupport__bottom h2 {
  font-size: 3.4rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .aftersupport__bottom h2 {
    font-size: 3rem;
    margin-bottom: 6%;
  }
}
@media screen and (max-width: 480px) {
  .aftersupport__bottom h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.aftersupport__bottom h2 span {
  background-image: linear-gradient(90deg, #48d5ff, #003ad8);
}
.aftersupport__bottom p {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .aftersupport__bottom p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .aftersupport__bottom p {
    font-size: 1.4rem;
  }
}

.popular {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .popular {
    padding-bottom: 0;
  }
}
.popular__top {
  background: linear-gradient(180deg, #F4F4F4 0%, #F4F4F4 50%, #fff 50%, #fff 100%);
  text-align: center;
}
.popular .popular__box {
  border: 1px solid #efefef;
  display: flex;
}
@media screen and (max-width: 768px) {
  .popular .popular__box {
    flex-direction: column;
  }
}
.popular .popular__box__img {
  line-height: 1;
}
.popular .popular__box__img img {
  object-fit: cover;
  height: 100%;
}
.popular .popular__box__txt {
  padding: 5%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .popular .popular__box__txt {
    padding: 5% 0;
  }
}
@media screen and (max-width: 768px) {
  .popular .popular__box__txt .wrap {
    display: flex;
    justify-content: space-between;
    gap: 4%;
  }
}
@media screen and (max-width: 768px) {
  .popular .popular__box__txt__name {
    width: 46%;
  }
}
.popular .popular__box__txt__name__ttl {
  max-width: 485px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .popular .popular__box__txt__name__ttl {
    margin-bottom: 10px;
  }
}
.popular .popular__box__txt__name h3 {
  font-size: 3rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .popular .popular__box__txt__name h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .popular .popular__box__txt__name h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .popular .popular__box__txt p {
    width: 50%;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .popular .popular__box__txt p {
    font-size: 1.4rem;
  }
}
.popular__hustler .popular__box {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .popular__hustler .popular__box {
    flex-direction: column;
  }
}
.popular__hustler .popular__box__txt__ttl {
  max-width: 372px;
}

.map {
  padding: 0;
  line-height: 0;
}
@media screen and (max-width: 480px) {
  .map iframe {
    height: 240px;
  }
}

.flow {
  background: #E5EFFF;
}
.flow h2 {
  margin-bottom: 40px;
  color: #537AE6;
}
@media screen and (max-width: 768px) {
  .flow h2 {
    margin-bottom: 6%;
  }
}
@media screen and (max-width: 480px) {
  .flow h2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .flow h2 img {
    width: 108.5px;
  }
}
.flow h2 span {
  padding-left: 10px;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .flow h2 span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .flow h2 span {
    font-size: 1.8rem;
  }
}
.flow .wrap {
  max-width: 1400px;
}
.flow ul {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
@media screen and (max-width: 768px) {
  .flow ul {
    flex-wrap: wrap;
    gap: 2%;
  }
}
.flow ul li {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow ul li {
    width: 49%;
    padding-right: 20px;
    margin-bottom: 5%;
  }
}
.flow ul li:before {
  width: 21px;
  height: 24px;
  content: "";
  background: url(images/flow__arrow.png) no-repeat center/cover;
  position: absolute;
  right: -40px;
  top: 100px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .flow ul li:before {
    top: 50px;
    width: 11px;
    height: 12px;
    right: 0;
  }
}
.flow ul li:last-child::before {
  content: none;
}
@media screen and (max-width: 768px) {
  .flow ul li p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .flow ul li p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 400px) {
  .flow ul li p {
    font-size: 1rem;
  }
}

.faq h2 {
  margin-bottom: 40px;
  color: #537AE6;
}
@media screen and (max-width: 768px) {
  .faq h2 {
    margin-bottom: 6%;
  }
}
@media screen and (max-width: 480px) {
  .faq h2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .faq h2 img {
    width: 73.5px;
  }
}
.faq h2 span {
  padding-left: 10px;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .faq h2 span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .faq h2 span {
    font-size: 1.8rem;
  }
}
.faq dl {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .faq dl {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 480px) {
  .faq dl {
    margin-bottom: 15px;
  }
}
.faq dl dt, .faq dl dd {
  padding: 20px 30px 20px 80px;
  background: #F4F4F4;
  color: #4D4D4D;
  font-size: 2.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq dl dt, .faq dl dd {
    padding: 4% 5% 4% 40px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .faq dl dt, .faq dl dd {
    padding: 10px 15px 10px 45px;
    font-size: 1.4rem;
  }
}
.faq dl dt span, .faq dl dd span {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.faq dl dt {
  margin-bottom: 10px;
}
.faq dl dt span {
  width: 33px;
  height: 42px;
  background: url(images/faq__q.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .faq dl dt span {
    width: 16.5px;
    height: 21px;
  }
}
.faq dl dd span {
  width: 34px;
  height: 39px;
  background: url(images/faq__a.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .faq dl dd span {
    width: 17px;
    height: 19.5px;
  }
}

.lineup {
  position: relative;
  background: url(images/lineup__bg.png) no-repeat center/100% 100%;
}
@media screen and (max-width: 768px) {
  .lineup {
    background: none;
    padding-bottom: 0;
  }
}
.lineup .wrap {
  max-width: 1685px;
}
.lineup .no__reservation {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(90deg, #efa415, #fcd42a);
  max-width: 471px;
  margin: 0 auto 50px;
  line-height: 1;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .lineup .no__reservation {
    margin: 0 auto 7%;
  }
}
@media screen and (max-width: 480px) {
  .lineup .no__reservation {
    margin: 0 auto 25px;
  }
}
.lineup .no__reservation span {
  font-size: 4.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .lineup .no__reservation span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .lineup .no__reservation span {
    font-size: 3rem;
  }
}
.lineup p {
  text-align: center;
}
.lineup ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-top: 65px;
}
.lineup ul .lineup__box {
  width: 23.5%;
  border: 1px solid #9D9D9D;
  border-radius: 20px;
  margin-bottom: 4%;
}
@media screen and (max-width: 768px) {
  .lineup ul .lineup__box {
    width: 49%;
    border-radius: 10px;
  }
}
.lineup ul .lineup__box__thumbnail {
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.lineup ul .lineup__box__thumbnail .label {
  position: absolute;
  left: 20px;
  top: 20px;
}
@media screen and (max-width: 768px) {
  .lineup ul .lineup__box__thumbnail .label {
    display: none;
  }
}
.lineup ul .lineup__box__ttl {
  text-align: center;
  padding: 15px;
  background: rgba(0, 34, 128, 0.2);
}
@media screen and (max-width: 480px) {
  .lineup ul .lineup__box__ttl {
    padding: 10px 5px;
  }
}
.lineup ul .lineup__box__txt {
  padding: 4%;
}
.lineup ul .lineup__box__txt table th, .lineup ul .lineup__box__txt table td {
  font-size: 1.3rem;
}
@media screen and (max-width: 480px) {
  .lineup ul .lineup__box__txt table th, .lineup ul .lineup__box__txt table td {
    font-size: 10px;
  }
}
.lineup ul .lineup__box__txt table th {
  width: 30%;
}
@media screen and (max-width: 480px) {
  .lineup ul .lineup__box__txt table th {
    width: 40%;
  }
}
.lineup ul li:last-child {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .lineup ul li:last-child {
    width: 100%;
  }
}
.lineup__btn {
  text-align: center;
  margin: 100px auto 150px;
  display: flex;
  justify-content: center;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  .lineup__btn {
    display: none;
  }
}
.lineup__btn a {
  display: block;
}
.lineup__bottom {
  line-height: 0;
}

#voice {
  background: #E5EFFF;
}
#voice h2 {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #voice h2 {
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 480px) {
  #voice h2 {
    margin-bottom: 30px;
  }
}
#voice h2 span {
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #voice h2 img {
    width: 372px;
    margin: 0 auto;
  }
}
#voice .slick-slide {
  padding: 0 5px;
}

.proposing h2 {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .proposing h2 {
    max-width: 432px;
    margin: 0 auto 8%;
  }
}
@media screen and (max-width: 480px) {
  .proposing h2 {
    margin-bottom: 30px;
  }
}
.proposing__txt {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .proposing__txt {
    margin-bottom: 9%;
  }
}
@media screen and (max-width: 480px) {
  .proposing__txt {
    margin-bottom: 45px;
    font-size: 1.2rem;
  }
}
.proposing__img {
  text-align: center;
}
.proposing__img p {
  margin-top: 10px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .proposing__img p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .proposing__img p {
    font-size: 1.1rem;
  }
}
.proposing__bottom .wrap {
  max-width: 1420px;
}
.proposing__bottom__flex {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 4%;
  color: #002280;
}
@media screen and (max-width: 768px) {
  .proposing__bottom__flex {
    margin-top: 10%;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .proposing__bottom__flex {
    margin-top: 40px;
  }
}
.proposing__bottom__flex h3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .proposing__bottom__flex h3 {
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 480px) {
  .proposing__bottom__flex h3 {
    margin-bottom: 10px;
  }
}
.proposing__bottom__flex h3 span {
  font-size: 4rem;
  background: linear-gradient(transparent 60%, #DDE5FF 60%);
}
@media screen and (max-width: 768px) {
  .proposing__bottom__flex h3 span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .proposing__bottom__flex h3 span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .proposing__bottom__flex p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .proposing__bottom__flex p {
    font-size: 1.2rem;
  }
}

.loan {
  background: url(images/loan__bg.jpg) no-repeat center/cover;
}
.loan h2 {
  color: #4D4D4D;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .loan h2 {
    margin-bottom: 7%;
  }
}
@media screen and (max-width: 480px) {
  .loan h2 {
    margin-bottom: 25px;
  }
}
.loan h2 span {
  padding: 10px;
  font-size: 5rem;
  font-weight: bold;
  border: 2px solid #707070;
}
@media screen and (max-width: 768px) {
  .loan h2 span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .loan h2 span {
    font-size: 2rem;
  }
}
.loan p {
  font-size: 3rem;
  text-align: center;
  color: #4D4D4D;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .loan p {
    font-size: 2rem;
    margin-bottom: 9%;
  }
}
@media screen and (max-width: 480px) {
  .loan p {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
}
.loan__txt {
  color: #4D4D4D;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .loan__txt {
    font-size: 1.8rem;
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 480px) {
  .loan__txt {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.loan__txt span {
  color: #ce232c;
  font-size: 3.7rem;
  background: linear-gradient(transparent 60%, #FFF8C3 60%);
}
@media screen and (max-width: 768px) {
  .loan__txt span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .loan__txt span {
    font-size: 1.8rem;
  }
}
.loan ol {
  display: flex;
  justify-content: center;
  gap: 4%;
}
.loan ol li {
  width: 50%;
}
.loan ol li span {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 4.2rem;
  padding: 5px 10px;
  background-image: linear-gradient(90deg, #efa415, #fcd42a);
}
@media screen and (max-width: 768px) {
  .loan ol li span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .loan ol li span {
    font-size: 2rem;
  }
}
.loan__card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border: 1px solid #707070;
  max-width: 811px;
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .loan__card {
    margin: 9% auto 0;
  }
}
@media screen and (max-width: 480px) {
  .loan__card {
    margin: 45px auto 0;
  }
}
.loan__card__ttl {
  position: relative;
  z-index: 2;
}
.loan__card__ttl span {
  display: inline-block;
  background: #fff;
  padding: 0 20px;
}
.loan__card__ttl:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #707070;
  z-index: -1;
}

.staff {
  padding: 0;
}
.staff__top {
  padding-bottom: 65px;
  background: url(images//staff__bg.png) no-repeat center bottom/100% 100%;
}
@media screen and (max-width: 768px) {
  .staff__top {
    padding-bottom: 8%;
  }
}
@media screen and (max-width: 480px) {
  .staff__top {
    padding-bottom: 35px;
  }
}
.staff__top ul {
  display: flex;
  justify-content: center;
  gap: 2%;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .staff__top ul {
    margin: 0 auto 0;
  }
}
@media screen and (max-width: 480px) {
  .staff__top ul {
    margin: 0 auto 0;
  }
}
.staff__top ul li {
  width: 32%;
  background: #fff;
  padding: 10px;
}
.staff__top ul li P {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .staff__top ul li P {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .staff__top ul li P {
    font-size: 1.2rem;
  }
}
.staff__top ul li P span {
  font-size: 1.6rem;
  padding-right: 4%;
}
@media screen and (max-width: 768px) {
  .staff__top ul li P span {
    font-size: 1.4rem;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .staff__top ul li P span {
    font-size: 1rem;
  }
}
.staff__bottom {
  padding-bottom: 60px;
  background: #E5EFFF;
}
@media screen and (max-width: 768px) {
  .staff__bottom {
    padding-bottom: 8%;
  }
}
@media screen and (max-width: 480px) {
  .staff__bottom {
    padding-bottom: 30px;
  }
}
.staff__bottom .wrap {
  max-width: 1600px;
}
.staff__bottom__obi {
  text-align: center;
  margin-bottom: 20px;
}
.staff__bottom__obi span {
  color: #fff;
  font-size: 3.8rem;
  padding: 5px 10px;
  background-image: linear-gradient(90deg, #48d5ff, #003ad8);
}
@media screen and (max-width: 768px) {
  .staff__bottom__obi span {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .staff__bottom__obi span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .staff__bottom__gallery {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .staff__bottom__gallery {
    margin-bottom: 20px;
  }
}
.staff__bottom__btn {
  text-align: center;
  margin: 100px auto 150px;
  display: flex;
  justify-content: center;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  .staff__bottom__btn {
    display: none;
  }
}
.staff__bottom__btn a {
  display: block;
}
.staff__bottom__mail {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .staff__bottom__mail {
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 480px) {
  .staff__bottom__mail {
    margin-bottom: 35px;
  }
}
.staff__bottom__bnr {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .staff__bottom__bnr {
    margin-bottom: 9%;
  }
}
@media screen and (max-width: 480px) {
  .staff__bottom__bnr {
    margin-bottom: 45px;
  }
}
.staff__bottom__table {
  padding: 60px 40px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .staff__bottom__table {
    padding: 8% 6%;
  }
}
@media screen and (max-width: 480px) {
  .staff__bottom__table {
    padding: 30px;
  }
}
.staff__bottom__table__flex {
  display: flex;
  gap: 4%;
}
@media screen and (max-width: 768px) {
  .staff__bottom__table__flex {
    flex-direction: column;
  }
}
.staff__bottom__table h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .staff__bottom__table h3 {
    font-size: 2rem;
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 480px) {
  .staff__bottom__table h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.staff__bottom__table table {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .staff__bottom__table table {
    width: 100%;
  }
  .staff__bottom__table table:nth-of-type(2) tr:nth-of-type(1) th, .staff__bottom__table table:nth-of-type(2) tr:nth-of-type(1) td {
    border-top: none;
  }
}
.staff__bottom__table table tr:nth-of-type(1) th {
  border-top: 2px solid #002EAC;
}
.staff__bottom__table table tr:nth-of-type(1) td {
  border-top: 2px solid #E5E5E5;
}
.staff__bottom__table table th, .staff__bottom__table table td {
  padding: 4%;
}
.staff__bottom__table table th {
  width: 26%;
  border-bottom: 2px solid #002EAC;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .staff__bottom__table table th {
    font-size: 1.6rem;
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .staff__bottom__table table th {
    font-size: 1.3rem;
  }
}
.staff__bottom__table table td {
  border-bottom: 2px solid #E5E5E5;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .staff__bottom__table table td {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .staff__bottom__table table td {
    font-size: 1.2rem;
  }
}

.contact {
  background: #F4F4F4;
}
.contact__inner {
  background: #fff;
}
.contact__inner h2 {
  color: #fff;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  background: #606A86;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .contact__inner h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner h2 {
    font-size: 1.8rem;
  }
}
.contact__inner__box {
  padding: 60px 20px;
}
.contact__inner__box form {
  max-width: 825px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__inner__box form {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box form {
    font-size: 1.4rem;
  }
}
.contact__inner__box .smf-item__label__text {
  padding-left: 70px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .smf-item__label__text {
    padding-left: 0;
  }
}
.contact__inner__box .req .smf-item__label__text {
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .req .smf-item__label__text {
    padding-left: 60px;
  }
}
.contact__inner__box .req .smf-item__label__text:before {
  content: "必須";
  color: #fff;
  font-size: 1.6rem;
  display: inline-block;
  padding: 5px 10px;
  background: #D51313;
  line-height: 1;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .req .smf-item__label__text:before {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box .req .smf-item__label__text:before {
    font-size: 1.2rem;
  }
}
.contact__inner__box .privacypolicy_txt {
  text-align: center;
  margin: 40px 0 30px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .privacypolicy_txt {
    margin: 6% 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box .privacypolicy_txt {
    margin: 20px 0 15px;
  }
}
.contact__inner__box .privacyarea {
  max-height: 282px;
  border: 1px solid #BAB9B9;
  padding: 30px;
  overflow-y: scroll;
  margin-top: 100px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .privacyarea {
    margin-top: 12%;
    margin-bottom: 5%;
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box .privacyarea {
    margin-top: 50px;
    margin-bottom: 15px;
    padding: 15px 10px;
    max-height: 160px;
  }
}
.contact__inner__box .privacyarea p {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .privacyarea p {
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box .privacyarea p {
    margin-bottom: 10px;
  }
}
.contact__inner__box span.smf-checkbox-control__label {
  line-height: 1.4;
}
.contact__inner__box .smf-placeholder[data-name=checkboxes-1j1avffvl] {
  text-align: center;
}
.contact__inner__box input[type=text],
.contact__inner__box textarea,
.contact__inner__box input[type=email],
.contact__inner__box input[type=tel] {
  width: 100%;
  padding: 15px;
  border: 1px solid #999999;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box input[type=text],
  .contact__inner__box textarea,
  .contact__inner__box input[type=email],
  .contact__inner__box input[type=tel] {
    padding: 10px;
    line-height: 32px;
  }
}
.contact__inner__box .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.contact__inner__box .wp-block-snow-monkey-forms-item.smf-item {
  align-items: center;
  display: flex;
  gap: 4%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .wp-block-snow-monkey-forms-item.smf-item {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.contact__inner__box .smf-item__col.smf-item__col--label {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .smf-item__col.smf-item__col--label {
    width: 100%;
    margin-bottom: 15px;
  }
}
.contact__inner__box .smf-item__col.smf-item__col--controls {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .smf-item__col.smf-item__col--controls {
    width: 100%;
  }
}
.contact__inner__box button.smf-button-control__control {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 266px;
  line-height: 60px;
  background: #002280;
  margin: 30px auto 0;
}

.sp__fixed__bnr {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .sp__fixed__bnr {
    display: flex;
  }
}
.sp__fixed__bnr a {
  display: block;
  line-height: 0;
}/*# sourceMappingURL=style.css.map *//*
Theme Name:me-corporation
Author: 
Theme URI: 
Description: 
Version: 1.00
*/



.staff__top ul li P {
	text-align: center;
}