@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700;900&display=swap');



/*==========================================================================*/
/*                               Header                                     */
/*==========================================================================*/
.header {
  height: 98px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  transition: all ease-in-out 0.3s;
  font-family: 'Noto Sans JP', sans-serif
}

.header.active {
  /* background: rgba(255, 255, 255, 0.8);
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.header .inner {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0;
}

.header .layout_h {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.header .layout_h .h_logo {
  flex-shrink: 0;
  width: 420px;
  height: auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header .layout_h .icon_menu {
  display: none;
}

.header .layout_h .h_navi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1160px;
  margin-top: 15px;
  padding: 20px 35px 20px;
  background-color: #fff;
  border-radius: 10px 0 0 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header .layout_h .h_navi .gnavi {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .layout_h .h_navi .gnavi li {
  padding: 5px 0;
  padding-top: 22px;
}

.header .layout_h .h_navi .gnavi>li {
  position: relative;
}

.header .layout_h .h_navi .gnavi>li:last-child:after {
  content: none;
}

.header .layout_h .h_navi .gnavi>li:after {
  position: absolute;
  content: "";
  right: 0;
  top: 3px;
  bottom: 3px;
  border-right: 2px solid #d9d9d9bd;
}


.header .layout_h .h_navi .gnavi li:last-child {
  border-right: none;
}

.header .layout_h .h_navi .gnavi>li>a,
.header .layout_h .h_navi .gnavi>li>span {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 0 25px;
  transition: all ease 0.3s;
}

.header .layout_h .h_navi .gnavi li:hover a {
  text-decoration: underline;
}

.header .layout_h .h_navi .gnavi>li a span {
  font-size: 16px;
}

.header .layout_h .h_navi .gnavi>li:nth-child(1) {
  background: url(../images/gnavi_ic01.png)no-repeat center top;
  background-size: 22px auto;
}

.header .layout_h .h_navi .gnavi>li:nth-child(2) {
  background: url(../images/gnavi_ic02.png)no-repeat center top;
  background-size: 22px auto;
}

.header .layout_h .h_navi .gnavi>li:nth-child(3) {
  background: url(../images/gnavi_ic03.png)no-repeat center top;
  background-size: 22px auto;
}

.header .layout_h .h_navi .gnavi>li:nth-child(4) {
  background: url(../images/gnavi_ic04.png)no-repeat center top;
  background-size: 22px auto;
}

.header .layout_h .h_navi .gnavi>li.sub {
  position: relative;
  cursor: pointer;
}

.header .layout_h .h_navi .gnavi>li.sub:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
  border-radius: 20px;
}

.header .layout_h .h_navi .gnavi>li.sub>ul {
  visibility: hidden;
  overflow: hidden;
  background: #ff5030;
  opacity: 0;
  transition: all ease 0.3s;
  position: absolute;
  left: calc(50%);
  transform: translateX(-50%);
  flex-direction: column;
  margin: 0 auto;
  width: 200px;
}

.header .layout_h .h_navi .gnavi>li.sub>ul li:hover {
  background: #ed2805;

}

.header .layout_h .h_navi .gnavi>li.sub>ul li {
  border: none;
  border-bottom: 1px solid #D9D9D9;
}

.header .layout_h .h_navi .gnavi>li.sub>ul li:last-child {
  border: none;
}

.header .layout_h .h_navi .gnavi>li.sub>ul li {
  padding: 15px 25px;
}

.header .layout_h .h_navi .gnavi>li.sub>ul li a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  width: 100%;
}


.header .layout_h .h_navi .h_contact {
  width: 263px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 20px 0 0;
}

.header .layout_h .h_navi .h_contact .ttl {
  font-weight: bold;
  font-size: 14px;
}

.header .layout_h .h_navi .h_contact .num {
  margin-bottom: 0;
  line-height: 1;
}

.header .layout_h .h_navi .h_contact .num a {
  color: #000;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  padding-left: 40px;
  padding-bottom: 5px;
  position: relative;
  display: block;
  font-family: 'Arial';
}

.header .layout_h .h_navi .h_contact .num a::before {
  content: '';
  position: absolute;
  background: url(../images/icon_contact.jpg) no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  width: 31px;
  height: 17px;
}

.header .layout_h .h_navi .h_contact .time {
  font-size: 14px;
}

.header .layout_h .h_navi .h_contact02 .btn a {
  display: block;
  width: 235px;
  padding: 15px 30px;
  background-color: #FF2700;
  border-radius: 52px;
  color: #fff;
  font-weight: bold;
}

.header .layout_h .h_navi .h_contact02 .btn {
  margin-bottom: 0;
}

.header .layout_h .h_navi .h_contact02 .btn a span.en {
  font-size: 12px;
}

.header .layout_h .h_navi .h_contact02 .btn a span {
  font-size: 16px;
}


/*==========================================================================*/
/*                               MAINVISUAL                                 */
/*==========================================================================*/
#top .content {
  max-width: 2000px;
  margin: 0 auto;
}

.idx_main {
  position: relative;
  background: url(../images/main_mvs_bg.png) no-repeat center top #F8F8F6;
  background-size: 100% 740px;
  height: 930px;
}

.idx_main:before {
  position: absolute;
  content: "";
  width: 919px;
  height: 930px;
  bottom: 0;
  left: 0;
  bottom: 0;
  background: url(../images/mvs_man.png)no-repeat bottom;
  background-size: contain;
}

.content .idx_main .inner {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.idx_main .idx_main_cnt {
  position: relative;
  padding-top: 40px;
}

.idx_main .mvs_circle {
  position: absolute;
  top: 150px;
  left: 30px;
}

.idx_main h2 {
  width: 70%;
  max-width: 1130px;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 20px;
  padding-top: 120px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.idx_main h2 .txt_main {
  font-size: 55px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 55px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.idx_main h2 .txt_main .wrap_h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.idx_main h2 .txt_main .wrap_h2 .bg_decore {
  background: url(../images/bg_catchcopy.png) no-repeat;
  background-size: contain;
  background-position: center;
  padding: 20px 25px 25px;
}

.idx_main h2 .txt_main .wrap_h2 .bg_decore .txt_decore {
  /* background: linear-gradient(160deg, #ff5c3f 50%, #FF2700 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: #FF2700;
  position: relative;
  z-index: 1;
  display: block;
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}

.idx_main h2 .txt_main .wrap_h2 .bg_decore .txt_decore:last-child {
  margin-bottom: 0;
}

.idx_main h2 .txt_main span.hl {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: 121.92%;
  text-shadow: none;
}


.idx_main h2 .txt_main span.hl .front {
  background: linear-gradient(160deg, #ff5c3f 50%, #FF2700 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.idx_main h2 .txt_main span.hl .stroke {
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  -webkit-text-stroke: 11pt #fff;
  z-index: 0;
}

.idx_main h2 .txt_main span.hl.hl_txt01 {
  display: inline-block;
  margin-bottom: 30px;
  line-height: 1em;
}

.idx_main h2 .txt_main.txt02 span.hl {
  font-size: 52px;
}

.idx_main h2 .txt_main span.txt_ro {
  font-size: 82px;
  display: inline-block;
  transform-origin: center;
  transform: rotate(15deg);
}

.idx_main h2 .txt_sub {
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.idx_main h2 .txt_sub>span {
  display: block;
}

.idx_main h2 .txt_sub .sub01 {
  font-size: 38px;
}

.idx_main h2 .txt_sub .sub02 {
  font-size: 46px;
}

.idx_main h2 .txt_sub span.txt_bg {
  display: inline-block;
  position: relative;
  padding: 13px 25px 17px;
  background: #FF6C00;
  border-radius: 36px;
  font-size: 40px;
  text-shadow: none;
}

.idx_main h2 .txt_sub span.txt_bg.txt_bg_cus {
  background: #2b9743;
}

.idx_main h2 .txt_sub span.txt_bg.txt_bg_cus.pad_r {
  padding-right: 0;
}

.idx_main .mvs_list {
  width: 70%;
  max-width: 1080px;
  margin-right: 40px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}

.idx_main h2 .txt_sub span.txt_bg.txt_bg_cus.pad_r span.hl .front {
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}


/*==========================================================================*/
/*                               CONTENT                                     */
/*==========================================================================*/
.content .inner {
  box-sizing: border-box;
  max-width: 1300px;
  margin: 0 auto;
}

.content .inner02 {
  box-sizing: border-box;
  max-width: 1100px;
  margin: 0 auto;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}

.clearfix {
  display: block;
}

#top h3 {
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.4;
  font-family: 'Noto Sans JP', sans-serif;
}


/* ------------- SEC 01 --------------*/
#sec01 {
  padding: 110px 0;
}

.s01_box {
  display: flex;
  align-items: center;
}

.s01_box h3 {
  display: inline-block;
  flex-shrink: 0;
  width: 500px;
  font-size: 47px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #1D1D1D;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
}

.s01_box h3 span.hl1 {
  position: relative;
  font-size: 60px;
  color: #FF2700;
  z-index: 1;
}

.s01_content {
  padding-left: 110px;
}

.s01_content p {
  text-align: left;
  font-size: 17px;
  margin-bottom: 2em;
  line-height: 1.5;
}

/* ------------- BANNER 01 --------------*/
.sec_bn01 {
  width: 100%;
  height: 466px;
  background: url(../images/idx_bnr01a.jpg)no-repeat center center;
  background-size: 100% auto;
}

/* ------------- SEC 02 --------------*/
#sec02 {
  width: 100%;
  padding: 110px 0;
  background: url(../images/sec02_bg01.png)no-repeat center bottom #EBEBEB;
  background-size: 100% auto;

}

#sec02:after {}

#sec02 h3 {
  font-size: 35px;
  text-align: center;
}

#sec02 h3 span {
  font-size: 45px;
}

#sec02 h3.sub-ttl {
  position: relative;
  text-align: center;
  font-size: 40px;
  color: #FF2700;
}

#sec02 h3.sub-ttl:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  width: 0;
  height: 0;
  border-left: 27.5px solid transparent;
  border-right: 27.5px solid transparent;
  border-top: 17px solid #FF2700;

}

.dot-text span {
  position: relative;
  display: inline-block;
}

.dot-text span::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #FF2700;
  border-radius: 50%;
}

.s02_box {
  margin: 30px 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s02_col.it01 dl dd,
.s02_col.it03 dl dd {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 180px;
  background: url(../images/s01_ill01.png)no-repeat center center;
  background-size: contain;
  margin-bottom: 30px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 70px;

  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #6C6C6C;
}

.s02_col.it01 dl dd:first-child {
  margin-left: 50px;
}

.s02_col.it03 dl dd:last-child {
  margin-left: 50px;
}

.s02_col.it03 dl dd {
  background: url(../images/s01_ill02.png)no-repeat center center;
  background-size: contain;

  padding-left: 115px;
  padding-right: 0;

}

.s02_col.it02 .s02_img {
  position: relative;
  z-index: 1;
}

.s02_col.it02 .s02_img:before {
  position: absolute;
  content: "";
  z-index: -1;
  inset: 0;
  width: 973px;
  height: 220px;
  background: url(../images/s01_ill03.png)no-repeat center center;
  background-size: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}



/* ------------- SEC 03 --------------*/
#sec03 {
  position: relative;
  width: 100%;
  padding: 100px 0 40px;
  background: #FF2700;
}

#sec03:before {
  position: absolute;
  content: "";
  width: 508px;
  height: 380px;
  bottom: -45px;
  left: 0;
  background: url(../images/s03_ill04.png)no-repeat center center;
  background-size: contain;
}

#sec03:after {
  position: absolute;
  content: "";
  width: 508px;
  height: 380px;
  bottom: -45px;
  right: 0;
  background: url(../images/s03_ill05.png)no-repeat center center;
  background-size: contain;
}

#sec03>h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 90px;
}

#sec03>h3 span {
  font-size: 50px;
  font-weight: 900;
}

#sec03 .s03_box {
  margin: 0 50px;
  padding: 20px 0;
  background: #fff;
  border-radius: 20px;
}

.s03_box h3 {
  font-size: 50px;
  line-height: 1.2 !important;
  color: #1D1D1D;
}

.s03_box h3 span.h3_num {
  font-size: 314%;
  color: #FF6C00;
}

.s03_box h3 span.h3_large {
  font-size: 67px;
  color: #FF6C00;
}

.s03_box_ct {
  max-width: 1100px;
  margin: 30px auto 0;
  padding-top: 30px;
  border-top: 2px solid #E0E0E0;
}

.s03_desc {
  text-align: center;
  font-size: 25px;
  padding-bottom: 30px;
}

.s03_box_ct ul {
  position: relative;
  padding-bottom: 70px;
  display: flex;
  gap: 6px 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.s03_box_ct ul:after {
  position: absolute;
  content: "";
  width: 55px;
  height: 38px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/s03_ill01.png)no-repeat center center;
  background-size: contain;

}

.s03_box_ct ul li {
  width: 270px;
  min-height: 220px;
  background: #FF6C00;
  border-radius: 10px;
  padding: 40px 30px;

  display: flex;
  gap: 15px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.s03_it_txt {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}

.s03_box02 {
  position: relative;
  width: 660px;
  margin: 0 auto;
  padding: 30px 0 90px;

  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.s03_box02:before {
  position: absolute;
  content: "";
  width: 67px;
  height: 121px;
  left: -70px;
  top: 40%;
  transform: translateY(-50%);
  background: url(../images/s03_ill02.png)no-repeat center center;
  background-size: contain;
}

.s03_box02:after {
  position: absolute;
  content: "";
  width: 67px;
  height: 121px;
  right: -70px;
  top: 40%;
  transform: translateY(-50%);
  background: url(../images/s03_ill03.png)no-repeat center center;
  background-size: contain;
}

.s03_box02 .txt p {
  font-size: 23px;
  font-weight: normal;
}

.s03_box02 .txt p>span {
  font-size: 35px;
  font-weight: 900;
  color: #FF2700;
}

.s03_box02 .price {
  position: relative;
  z-index: 1;
  font-size: 67px;
  font-weight: 900;
  line-height: 1;
  color: #FF2700;
  padding: 0 20px 0 5px;
}

.s03_box02 .price::before {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background: #FFD800;
  height: 50px;
  width: 100%;
  z-index: 0;
}

.s03_box02 .price>span {
  position: relative;
  z-index: 1;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.193));

}

.s03_box02 .price .num {
  font-size: 346%;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(160deg, #ff5c3f 50%, #FF2700 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ------------- SEC 04 --------------*/
#sec04 {
  padding: 100px 0;
  background: url(../images/sec04_bg01.png)no-repeat;
}

#sec04 h3 {
  margin-bottom: 60px;
  padding-top: 85px;
  font-size: 33px;
  font-weight: 500;
  background: url(../images/sec04_h3_ill01.png)no-repeat top center;
  background-size: 70px auto;
}

#sec04 h3 span {
  position: relative;
  font-size: 67px;
  font-weight: 900;
}

#sec04 h3 span:before,
#sec04 h3 span:after {
  position: absolute;
  content: "";
  width: 28px;
  height: 51px;
}

#sec04 h3 span:before {
  background: url(../images/sec04_h3_ill02.png)no-repeat top center;
  background-size: contain;
  left: -70px;
  bottom: 12px;
}

#sec04 h3 span:after {
  background: url(../images/sec04_h3_ill03.png)no-repeat top center;
  background-size: contain;
  right: -70px;
  bottom: 12px;
}

.s04_box .s04_price {
  display: flex;
}

.s04_box .s04_col.ttl {
  display: flex;
  flex-direction: column;
  width: 211px;
}

.s04_box .s04_col.ttl>p {
  height: 52px;
  margin-top: 5px;
  margin-bottom: 20px;
  background: #E5E2E0;
  padding: 15px 15px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.s04_box .s04_col.ttl>p.bg_none {
  background: none;
}

.s04_box .s04_col.ttl>p.last {
  background: #FFD800;
}

.s04_box .s04_col.ttl>p.last span {
  padding-left: 30px;
  background: url(../images/s04_ill01.png)no-repeat left center;
}

.s04_box .s04_col.price01 {
  width: 211px;
  display: flex;
  flex-direction: column;
}

.s04_box .s04_col.price01 .price01_ttl {
  margin-right: 10px;
  margin-bottom: 0;
  background: #1D1D1D;
  color: #fff;
  padding: 22px 15px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}

.s04_box .s04_col.price01 ul {
  background: #fff;
  margin-right: 10px;

}

.s04_box .s04_col.price01 ul li {
  position: relative;
  padding: 22px 15px;
  font-size: 16px;
}

.s04_box .s04_col.price01 ul li:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 5px;
  right: 5px;
  height: 2px;
  background: #e0e0e0d1;
}

.s04_box .s04_col.price01 ul li.price {
  position: relative;
  font-weight: 500;
}

.s04_box .s04_col.price01:not(.price_spec) ul li.price:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 52px;
  top: 15px;
  right: -10px;
  background: #e0e0e0d1;
}

.s04_box .s04_col.price01:not(.price_spec) ul li.price.last:before {
  background: #FFD800;
}

.s04_box .s04_col.price01 ul li.price span {
  padding-right: 5px;
  font-size: 24px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

.s04_box .s04_col.price01 ul li.last {
  padding: 30px 15px;
  min-height: 94px;
}

.s04_box .s04_col.price01 .price-sub {
  padding: 24px 10px;
  padding-bottom: 0;
}

.s04_box .s04_col.price01 .price-sub .ttl {
  font-size: 16px;
  margin-bottom: 5px;
}

.s04_box .s04_col.price01 .price-sub .price {
  font-size: 18px;
}

.s04_box .s04_col.price01 .price-sub .price span {
  font-size: 28px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  padding-right: 5px;
}



.s04_content {
  display: flex;
  justify-content: space-between;
}

.s04_ct_txt {
  display: flex;
}

.s04_ct_txt p {
  padding-right: 15px;
  text-align: left;
}

.s04_ct_txt ul li {
  position: relative;
  text-align: left;
  line-height: 1.6;
  padding-left: 15px;
}

.s04_ct_txt ul li:before {
  content: "・";
  position: absolute;
  top: 1px;
  left: 0;
}

.s04_voice_box {
  position: relative;
  width: 256px;
  max-height: 100px;
  margin-top: 15px;
  margin-right: 20px;
  padding: 16px 22px;
  display: flex;
  justify-content: center;
  align-content: center;
  background: #FF2700;
  border-radius: 24px;
}

.s04_voice_box:before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  border-left: 12.5px solid transparent;
  border-right: 12.5px solid transparent;
  border-bottom: 21px solid #FF2700;
}

.s04_voice_box>p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.s04_voice_box>p span {
  font-size: 26px;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}

.s04_box .s04_col.price01.price_spec {
  position: relative;
  min-width: 250px;
  flex: 1;
}

.s04_box .s04_col.price01.price_spec:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  top: -10px;
  background: #FF2700;
}

.s04_box .s04_col.price01.price_spec .price01_ttl,
.s04_box .s04_col.price01.price_spec ul {
  margin-right: 0;
}

.s04_box .s04_col.price01.price_spec .price01_ttl {
  background: #FF2700;
}

.s04_box .s04_col.price01.price_spec ul {
  border: 5px solid #FF2700;
  border-top: none;
}

.s04_box .s04_col.price01.price_spec ul li.last {
  color: #FF2700;
}

.s04_box .s04_col.price01.price_spec ul li:after {
  left: 15px;
  right: 15px;
}

.s04_box .s04_col.price01.price_spec ul li.last:after {
  content: none;
}

.s04_box .s04_col.price01.price_spec ul li.last span {
  font-size: 30px;
}

.s04_box .s04_col.price01.price_spec .price-sub {
  padding-bottom: 0;
}

.s04_box .s04_col.price01.price_spec .price-sub .ttl {
  font-size: 19px;
  font-weight: bold;
}

.s04_box .s04_col.price01.price_spec .price-sub .price {
  font-size: 25px;
  font-weight: bold;
  color: #FF2700;
  margin-bottom: 0;
}

.s04_box .s04_col.price01.price_spec .price-sub .price span {
  font-size: 45px;
}




/* ------------- CTA --------------*/
#cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: url(../images/cta_bg.png)no-repeat center center;
  background-size: cover;
  font-family: 'Noto Sans JP', sans-serif
}

#cta:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 130px;
  width: 474px;
  height: 505px;
  background: url(../images/cta_ill01.png)no-repeat center center;
  background-size: contain;
}

.cta_box {
  max-width: 780px;
  margin: 0 50px;
}

#cta h3 {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  color: #fff;
}

#cta .cta_desc {
  padding: 20px 0 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #fff;
}

.cta_contact {
  display: flex;
  justify-content: space-between;
}

.cta_contact li {
  width: 50%;
  max-width: 380px;
}

.cta_contact li.mail a {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  background: #FF2700;
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
}

.cta_contact li.mail a>span {
  padding-left: 40px;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  background: url(../images/cta_mail_ic.png)no-repeat left center;
  background-size: 28px auto;
}

.cta_contact li.tel a {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.tel-txt {
  padding: 10px 15px;
  color: #1D1D1D;
  background: #F0F0F0;
  font-size: 14px;
  text-align: center;
  border-radius: 10px 10px 0 0;

}

.tel-ct {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.tel-ct>span {
  padding-left: 50px;
  padding-bottom: 5px;
  font-size: 33px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #000;
  background: url(../images/cta_tel_ic01.png)no-repeat left center;
  background-size: 38px auto;
}

/* ------------- SEC 05 --------------*/
#sec05 {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  background: url(../images/sec05_bg01.png)no-repeat top center;
  background-size: 100% auto;
}

#sec05 h3 {
  position: relative;
  padding-top: 85px;
  padding-bottom: 15px;
  background: url(../images/sec05_h3_ill01.png)no-repeat top center;
  background-size: 70px auto;
  border-bottom: 1px solid #fff;

  color: #fff;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
}

#sec05 h3 span {
  position: relative;
}

#sec05 h3 span:after {
  position: absolute;
  content: "";
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
}

#sec05 .s05_ttl_en {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 56px;
}

.s05_box ul {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

.s05_box ul li {
  width: 50%;
  max-width: 540px;
  border-radius: 20px;
  background: #F7F7F8;
}

.s05_box .s05_b01_img {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.s05_box01 {
  margin-bottom: 30px;
}

.s05_b01_content {
  position: relative;
  margin-top: -30px;
  padding-bottom: 30px;
}

.s05_b01_content .s05_ttl span {
  display: inline-block;
  margin: 0 auto;
  padding: 5px 15px 10px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  background: #FF2700;
}

.s05_box02 .s05_b01_content .s05_ttl span {
  font-size: 25px;
}

.s05_b01_content .s05_txt {
  padding: 20px 50px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
  color: #1D1D1D;
}

.s05_box02 {
  margin-bottom: 50px;
}

.s05_box ul.s05_box02 li {
  max-width: 353px;
}

.s05_box ul.s05_box02 .s05_b01_content .s05_txt {
  padding: 20px 30px;

}

.s05_box03 {
  position: relative;
  margin-top: 65px;
}

.s05_box03:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: url(../images/sec05_ill01.png)no-repeat;
  background-size: contain;
}

.s05_box03 .s05_b03_ttl span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #FF2700;
  padding: 10px 30px;
  border-radius: 24px;
}

.s05_box03 .s05_b03_ttl {
  position: relative;
}

.s05_box03 .s05_b03_ttl:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: url(../images/sec05_ill01.png)no-repeat;
  background-size: contain;
}

.s05_box03 ul {
  max-width: 680px;
  margin: 0 auto;
  padding: 30px 0 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.s05_box03 ul li {
  padding: 5px 5px;
  border: 1px solid #E3E3E3;
  border-radius: 5px;
  font-size: 17px;
}

/* ------------- SEC 06 --------------*/
#sec06 {
  padding-bottom: 60px;
}

#sec06 .s06_box {
  position: relative;
  display: flex;
  padding-bottom: 35px;
  margin-bottom: 100px;
}

#sec06 .s06_box::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 60px;
  left: 16vw;
  right: 0;
  height: 100%;
  background-color: #F7F7F7;
}

#sec06 .s06_ttl {
  position: relative;
}

#sec06 .s06_img {
  margin-bottom: 0;
}

#sec06 .s06_ttl {
  width: 960px;
  flex-shrink: 0;
}

#sec06 .s06_ttl h3 {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);

  color: #fff;
  font-size: 37px;
  font-weight: bold;
  text-align: right;
}

#sec06 .s06_ttl h3 span.txt_big {
  font-size: 52px;
}

#sec06 .s06_ttl h3 span.txt_small {
  padding-right: 25px;
}

#sec06 .s06_content {
  max-width: 640px;
  padding-top: 180px;
  padding-left: 110px;
}

#sec06 .s06_content p {
  text-align: left;
  font-size: 17px;
  line-height: 2;
  color: #1D1D1D;
}

#sec06 .s06_box.box_right {
  flex-direction: row-reverse;
}

#sec06 .s06_box.box_right::after {
  top: 60px;
  left: 0;
  right: 16vw;
  right: 0;
}

#sec06 .s06_box.box_right .s06_content {
  max-width: 640px;
  padding-top: 180px;
  padding-right: 110px;
  padding-left: 0;
}

#sec06 .s06_box.box_right .s06_ttl h3 {
  left: 100px;
  right: 0;
  text-align: left;
}

#sec06 .s06_box.box_right .s06_ttl h3 span.txt_small {
  padding-left: 25px;
  padding-right: 0;
}


.content .s06_box_bot.inner {
  position: relative;
  max-width: 1920px;
  margin-top: 180px;
}

.content .s06_box_bot:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #FF2700;
  left: 0;
  top: 50px;
}

.s06_box_bot .s06_bot {
  max-width: 1300px;
  margin: 0 auto;
}

.s06_box_bot .s06_ttl02 {
  position: relative;
  text-align: center;
  color: #fff;
  background: #FF2700;
  padding: 30px 30px;
  margin-bottom: 60px;
  border-radius: 52px;
}

.s06_box_bot .s06_ttl02:before {
  position: absolute;
  content: "";
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #FF2700;
}

.s06_box_bot .s06_ttl02 p {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 900;
}

.s06_box_bot01 {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 15px;
}

.s06_box_bot01 li {
  position: relative;
  width: calc(100%/3);
  max-width: 353px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s06_box_bot01 li .txt {
  position: absolute;
}

.s06_box_bot01 li span {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 15px;
}

.s06_box_bot02 {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.s06_box_bot02 li {
  position: relative;
  width: calc(100%/5);
  max-width: 204px;
  border-radius: 10px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.s06_box_bot02 li .txt {
  position: absolute;
}

.s06_box_bot02 li span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 15px;
}


/* ------------- SEC 07 --------------*/
#sec07 {
  padding: 100px 0 50px;
  background: url(../images/sec07_bg.png)repeat;
  background-size: contain;
}

#sec07 h3 {
  position: relative;
  padding-top: 85px;
  padding-bottom: 15px;
  background: url(../images/sec07_h3_ill01.png)no-repeat top center;
  background-size: 70px auto;
  border-bottom: 1px solid #CECECE;

  color: #1D1D1D;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
}

#sec07 h3 span {
  position: relative;
}

#sec07 h3 span:after {
  position: absolute;
  content: "";
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #FF2700;
}

#sec07 .s07_ttl_en {
  font-size: 22px;
  font-weight: bold;
  color: #FF2700;
  margin-bottom: 68px;
}

.s07_box dl {
  margin-bottom: 50px;
}

.s07_box dl dt.q_box {
  background: #fff;
  padding: 30px 0 20px;
}

.s07_box dl dt.q_box .q_num {
  pointer-events: none;
  position: relative;
  margin-top: -50px;
  margin-bottom: 30px;
}

.s07_box dl dt.q_box .q_num span {
  display: inline-block;
  margin: 0 auto;
  font-size: 19px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  padding: 6px 50px;
  border-radius: 30px;
  color: #fff;
  background: #FF6C00;
}

.s07_box dl dt.q_box>p.ttl {
  font-size: 21px;
  font-weight: bold;
}

.s07_box dl dd.a_box {
  background: #F7F7F7;
  padding: 30px 35px;
}

.s07_box dl dd.a_box p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}

.s07_box dl dd.q_bot {
  cursor: pointer;
  background: #fff;
  padding: 15px 35px;
  border-top: 2px solid #e0e0e0ad;
}

.s07_box dl dd.q_bot:hover {
  background: #fffafa;
}


/* ------------- SEC 08 --------------*/
#sec08 {
  padding: 100px 0 110px;
}

#sec08 h3 {
  position: relative;
  padding-top: 85px;
  padding-bottom: 15px;
  background: url(../images/sec08_h3_ill01.png)no-repeat top center;
  background-size: 70px auto;
  border-bottom: 1px solid #CECECE;

  color: #1D1D1D;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
}

#sec08 h3 span {
  position: relative;
}

#sec08 h3 span:after {
  position: absolute;
  content: "";
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #FF2700;
}

#sec08 .s08_ttl_en {
  font-size: 22px;
  color: #FF2700;
  margin-bottom: 30px;
}

.s08_desc {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 70px;
}

.s08_slider {
  background: url(../images/sec08_slider.png) repeat-x center;
  background-size: auto 100%;
  height: 460px;
  margin-bottom: 0;
  -webkit-animation: slide-bg 30s linear infinite both;
  animation: slide-bg 30s linear infinite both;
  position: relative;
}

@-webkit-keyframes slide-bg {
  0% {
    background-position: 0 center;
  }

  100% {
    background-position: -2880px center;
  }
}

/* ------------- SEC 09 --------------*/

#sec09 {
  padding: 0 0;
  background: #F7F7F7;
}

#sec09 h3 {
  position: relative;
  padding-top: 85px;
  padding-bottom: 15px;
  background: url(../images/sec09_h3_ill01.png)no-repeat top left;
  background-size: 70px auto;
  border-bottom: 2px solid #CECECE;

  color: #1D1D1D;
  font-size: 46px;
  font-weight: bold;
  text-align: left;
}

#sec09 h3 span {
  width: 100%;
  display: block;
  position: relative;
}

#sec09 h3 span:before {
  position: absolute;
  content: "地下鉄「天神南駅」より徒歩1分の好立地！";
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.01em;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #FF2700;
}

#sec09 h3 span:after {
  position: absolute;
  content: "";
  bottom: -18px;
  left: 0;
  width: 240px;
  height: 4px;
  background: #FF2700;
}

#sec09 .s09_ttl_en {
  text-align: left;
  font-size: 22px;
  font-weight: 700;
  color: #FF2700;
  margin-bottom: 30px;
}

.s09_box {
  width: 100%;
  max-width: 1600px;
  margin: 0 0 0 auto;
  padding-left: 100px;

  display: flex;
}

.s09_left {
  width: calc(100% - 720px);
  padding-top: 100px;
  padding-right: 70px;
}

.s09_info {
  padding-bottom: 100px;
}

.s09_info dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}

.s09_info dl.last {
  margin-bottom: 0;
}

.s09_info dl dt {
  width: 180px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 21px;
  padding: 12px 15px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.s09_info dl dd {
  font-size: 16px;
  text-align: left;
  padding-left: 30px;
}

/* .idx_main h2 .txt_main span.hl .front,
.idx_main h2 .txt_main span.hl .stroke {
  font-size: 122%;
} */


.idx_main h2 .txt_main span.hl .front .txt_lg,
.idx_main h2 .txt_main span.hl .stroke .txt_lg {
  font-size: 150%;
}

.s09_map {
  width: 720px;
}

.s09_map p {
  height: 100%;
}

.s09_map iframe {
  width: 100%;
  height: 100%;
}

/* ------------- SEC 10 --------------*/



/*==========================================================================*/
/*                            FOOTER                                        */
/*==========================================================================*/

#footer {
  padding: 90px 0;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif
}

.footer_top {
  padding-bottom: 60px;
  border-bottom: 1px solid #DDDDDD;
}

.footer_bot {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
}

.f_col .f_ttl {
  text-align: left;
  font-size: 20px;
  line-height: 1.4 !important;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1D1D1D;
}

.f_col .f_ttl a {
  color: #1D1D1D;
}

.f_col ul li {
  text-align: left;
  padding-bottom: 15px;
}

.f_col ul li a {
  padding-left: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #1D1D1D;
  line-height: 1.5;
  background: url(../images/f_item_ic.png)no-repeat center left;
  background-size: 20px auto;
}

.copyright {
  background: #1D1D1D;
}

.copyright p {
  margin-bottom: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 35px 10px 20px;
}


/*==========================================================================*/
/*                            UNDER MAIN                                        */
/*==========================================================================*/
.under #mainImage {
  width: 100%;
  max-width: 2000px;
  height: 600px;
  margin-top: 0;
  background: url(../images/under_mvs_bg.png)no-repeat;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}

.under #mainImage h2 {
  width: 100%;
  max-width: 1100px;
  font-size: 46px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;

  padding-top: 140px;
  background: url(../images/under_h2_illu01.png)no-repeat center top 50px;

  display: flex;
  flex-direction: column;
}

.under #mainImage h2 .jp {
  z-index: 2;
  padding-bottom: 30px;
  border-bottom: 3px solid #fff;

  display: inline-block;
  width: max-content;
  margin: 0 auto 0;
}

.under #mainImage h2 .en {
  position: relative;
  font-size: 22px;
  padding-top: 15px;
  text-transform: uppercase
}

.under #mainImage h2 .en:before {
  position: absolute;
  content: "";
  z-index: 0;
  top: -2px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #CECECE;
}