@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 160%;
  -webkit-text-size-adjust: none;
  font-weight: 400;
}
html:focus-within {
  scroll-behavior: smooth;
}
img {
  vertical-align: middle;
  max-width: 100%;
  flex-shrink: 0;
  height: auto;
}
*, ::before, ::after {
  box-sizing: border-box;
  outline: none;
}
::before, ::after {
  pointer-events: none;
}
select {
  visibility: visible !important;
}
a {
  transition: all ease 0.3s;
  text-decoration: none;
  color: var(--txt);
  text-underline-offset: 3px;
}
a[href^="tel:"] {
  word-break: keep-all;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}
/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
  background: #fff
}
body {
  color: var(--txt);
  -webkit-text-size-adjust: none;
  min-width: 320px;
  font-family: var(--font-main)
}
select, input, textarea {
  font-family: var(--font-main)
}
table {
  width: 100%
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}
p, dd, dt, li, th, td, address {
  line-height: 2em;
  letter-spacing: 0;
}
p {
  margin: 0 0 1.5em;
}
p:last-child {
  margin-bottom: 0
}
.bold {
  font-weight: bold;
}
.left {
  text-align: left
}
.right {
  text-align: right;
}
.auto {
  margin-left: auto;
  margin-right: auto;
}
.red {
  color: var(--red);
}
.txt_line {
  text-decoration: underline;
}
.m0a {
  display: block;
  margin: 0 auto;
}
.f_big {
  font-size: 150%;
}
.f_md {
  font-size: 120%;
}
.f_sm {
  font-size: 80%;
}
:root {
  --font-main: "Zen Kaku Gothic New", sans-serif;
  --txt: #1D1D1D;
  --mcolor: #1D1D1D;
  --scolor: #58666E;
  --site_size: 1450px;
  --gray: #e9e9e9;
  --blue: blue;
  --red: red;
  --en: "Outfit", sans-serif;
}
#wrapper {
  min-width: 1260px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
#wrapper:before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.inner {
  width: var(--site_size);
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  padding: 0 15px;
}
/*==========================================================
                       H E A D E R  
==========================================================*/
header {
  position: relative;
  z-index: 10
}
h1 {
  font-size: 14px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 10px 0;
  max-width: 610px
}
.h_left {}
.h_right {
  display: flex;
  align-items: center
}
.h_box {
  width: 100%;
  position: fixed;
  background-color: #fff;
  box-shadow: 0 0 50px #0000000d
}
.h_inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 10px 30px;align-items: center;
}
.h_contact {
  display: flex;
  align-items: center
}
.h_contact > p {
  margin-bottom: 0
}
.h_contact > p:not(:last-child) {
  margin-right: 20px
}
.h_contact_mail a {
  color: #FFF;
  font-weight: 700;
  text-align: center;
  background-color: var(--mcolor);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 60px;
  position: relative
}
.h_contact_mail a span {
  position: relative;
  z-index: 2;
  font-size: 20px;
  display: inline-block;
  padding-left: 30px
}
.h_contact_mail a span::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: calc(50% - 10px);
  background: url(../images/ic_h_mail.png) no-repeat center /cover
}
.h_contact_tel a {
  font-size: 28px;
  color: #332829;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
  line-height: 1;
  display: block
}
.h_contact_tel .time {
  font-size: 12px;
  display: block;
  line-height: 1.6;
  text-align: right
}
/* HAMBURGER */
.hamburger {
  font: inherit;
  display: block;
  overflow: visible;
  margin: 0;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  margin-left: 37px;
  z-index: 101
}
.hamburger-box {
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--txt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .3s
}
.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  position: absolute;
  width: 11px;
  height: 3px;
  transition: all ease .15s;
  background-color: #fff
}
.hamburger-inner::after, .hamburger-inner::before {
  display: block;
  content: "";
  width: 17px;
  left: -3px
}
.hamburger-inner::before {
  top: -7px
}
.hamburger-inner::after {
  bottom: -7px
}
.hamburger--3dxy .hamburger-box {
  perspective: 80px
}
.hamburger--3dxy .hamburger-inner {
  transition: transform .15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy .hamburger-inner::after, .hamburger--3dxy .hamburger-inner::before {
  transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy.is_active .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg);
  background-color: transparent !important
}
.hamburger--3dxy.is_active .hamburger-inner::before {
  transform: translate3d(0, 6px, 0) rotate(45deg)
}
.hamburger--3dxy.is_active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg)
}
/* NAV */
nav {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  z-index: 100;
  display: none;
  background: var(--mcolor);
  background-color: rgba(0, 0, 0, 0.5);
}
nav .inner {
  padding: 0;
  padding-top: 136px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--mcolor);
  padding-bottom: 120px;
  width: 640px;
  margin-right: 0;
  height: 100%;
}
.nav_list {
  flex-direction: column;
  width: 100%;
  max-width: 450px
}
.nav_list ul, .nav_list li {
  width: 100%
}
.nav_list li:not(:last-child) {
  margin-bottom: 39px
}
.nav_list a {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .03em;
  background: url(../images/arrow_w.png) no-repeat right center/17px
}
.nav_top {
  margin-left: auto;
  position: relative;
  z-index: 100
}
.nav_top ul {
  display: flex
}
.nav_top ul li:not(:last-child) {
  margin-right: 30px
}
.nav_top ul li a {
  color: var(--txt);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .03em
}
body.is_active {
  overflow: hidden;
}
body.is_active main, body.is_active footer {
  pointer-events: none;
}
body.is_active .nav_top ul li a {
  color: #434343
}
body.is_active .hamburger-box {
  background: #313131
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
  position: relative;
  z-index: 2
}
.mv {
  position: relative;
  padding: 0;
  display: flex;
  background: #e4e8eb
}
.mv_l, .mv_r {
  flex-shrink: 0
}
.mv_l {
  width: calc(100% - 585px);
  height: 965px;
  margin-right: 40px
}
.mv_r {
  width: 440px;
  height: 968px;
  overflow: hidden
}
.mv_bg {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: all .3s;
  margin-bottom: 53px
}
.mv_bg.init {
  opacity: 1
}
.main_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}
.mv_bg, .main_slider .slide_item {
  width: 100%;
  height: 700px
}
.main_slider .slide_item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 30px 0
}
.main_slider .box_parameter_wrap {
  position: absolute;
  left: 40px;
  bottom: 44px;
  z-index: 9;
  color: #fff;
  align-items: center
}
.main_slider .slide_item.item1 .bg {
  background: url(../images/main01_pc.png) no-repeat center top/cover
}
.main_slider .slide_item.item2 .bg {
  background: url(../images/main02_pc.png) no-repeat center top/cover
}
.main_slider .slide_item.item3 .bg {
  background: url(../images/main03_pc.png) no-repeat center top/cover
}
.main_slider .slide_item.item4 .bg {
  background: url(../images/main04_pc.png) no-repeat center top/cover
}
.main_slider .slide_item.item5 .bg {
  background: url(../images/main05_pc.png) no-repeat center top/cover
}
.mv_slide_thumb .item, .mv_slide_thumb .item img {
  border-radius: 30px 0 30px 0;
  overflow: hidden
}
.mv_slide_thumb .item {
  margin-bottom: 18px
}
.box_parameter_wrap, .parameter_wrap {
  display: flex
}
.parameter_en {
  display: flex;
  flex-direction: column;
  font-family: var(--en);
  font-weight: 500;
  text-shadow: 0 0 6px #00000029;
  width: 127px;
  margin-bottom: 0;
  align-self: flex-start;
  position: relative;
  position: relative;
  bottom: -4px
}
.parameter_en .sm {
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 500
}
.parameter_en .lg {
  font-size: 142px;
  line-height: .8
}
.parameter_wrap {
  flex-direction: column;
  min-width: 393px;
  padding-top: 0
}
.parameter_wrap dl {
  display: flex
}
.parameter_wrap dl dt, .parameter_wrap dl dd {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .03em;
  text-shadow: 0 0 6px #00000029
}
.parameter_wrap dl dt {
  flex-shrink: 0;
  width: 100px
}
.parameter_tt {
  border-bottom: 1px #DCE2E3 solid;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .05em;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 12px
}
.mv_content {
  max-width: 1193px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-left: 80px
}
.mv_catch {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: .03em;
  margin-bottom: 20px
}
.mv_content_r {
  padding-top: 9px
}
.mv_list {
  display: flex
}
.mv_list li {
  width: 219px;
  height: 47px;
  border-radius: 10px;
  background: #f5f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: .03em
}
.mv_list li.item2 {
  width: 227px
}
.mv_list li.item3 {
  width: 205px
}
.mv_list li span {
  background: url(../images/icon_check.svg) no-repeat left center;
  padding: 3px 0 5px 23px
}
.mv_list li:not(:last-child) {
  margin-right: 5px
}
.mv_tt_r {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .03em;
  padding-left: 70px;
  position: relative
}
.mv_tt_r::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #bbbcc0;
  left: 0;
  top: 23px
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.ttl.ttl_cen {
  align-items: center;
}
.ttl .ja {
  font-size: 18px;
  letter-spacing: 0.03em;
  font-weight: bold;
}
.ttl .ja .text {
  padding: 0 20px;
}
.ttl .en {
  font-family: var(--en);
  font-size: 80px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 17px;
  text-transform: uppercase;
}
/* DEFAUTL NAME BUTTON */
.btn a {
  background: url(../images/arrow_b.png) no-repeat right 30px center /17px var(--mcolor);
  font-size: 18px;
  letter-spacing: .05em;
  color: #fff;
  text-decoration: none;
  width: 360px;
  height: 76px;
  padding-left: 40px;
  line-height: 1.5em;
  max-width: 100%;
}
.btn a, .btn02 a {
  display: flex;
  font-weight: 700;
  border-radius: 38px;
  align-items: center
}
.btn02 a {
  width: 414px;
  height: 76px;
  background: #1d1d1d;
  color: #fff;
  margin: 0 auto;
  letter-spacing: .03em;
  justify-content: center
}
.btn02 a span {
  background: url(../images/icon_sika.svg) no-repeat left center;
  padding: 5px 0 5px 30px
}
.btn.btn_black a {
  background: url(../images/arrow_w.png)#1d1d1d no-repeat right 18px center /17px;
}
.btn.btn_white a {
  background: url(../images/arrow_b.png)#fff no-repeat right 18px center /17px;
  border: 1px #8E8E8E solid;
  color: var(--txt);
  width: 300px
}
.btn.center a {
  margin-left: auto;
  margin-right: auto
}
section {
  padding: 40px 0
}
/*==================== SEC01 ===================*/
.sec01 {
  padding-top: 131px;
  background: #f7f7f7;
  padding-bottom: 130px
}
.sec01 .inner {
  width: 1280px
}
.sec01_ttl, .sec01_ttl_sm {
  text-align: center;
  font-weight: 700;
  letter-spacing: .03em
}
.sec01_ttl {
  font-size: 38px;
  position: relative;
  border-bottom: 2px #c1c1c1 solid;
  padding-bottom: 24px;
  margin-bottom: 49px
}
.sec01_ttl::before, .sec01_ttl_sm::before {
  position: absolute;
  content: ""
}
.sec01_ttl::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 16px solid #1d1d1d;
  border-bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -37px
}
.sec01_ttl_sm {
  font-size: 30px;
  display: table;
  position: relative;
  margin: 0 auto 52px;
  z-index: 1
}
.sec01_ttl_sm::before {
  width: calc(100% + 7px);
  height: 16px;
  background: #e3e7e8;
  left: -7px;
  bottom: 10px;
  z-index: -1
}
.sec01_item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 22px
}
.sec01_item > div {
  width: 400px;
  height: 340px;
  border-radius: 20px;
  margin-bottom: 25px;
  padding-top: 31px
}
.sec01_item > div.item1 {
  background: url(../images/idx_img_01.png)#ededed no-repeat center bottom 22px/400px
}
.sec01_item > div.item2 {
  background: url(../images/idx_img_02.png)#ededed no-repeat center bottom 26px/400px
}
.sec01_item > div.item3 {
  background: url(../images/idx_img_03.png)#ededed no-repeat center bottom 25px/400px
}
.sec01_item > div.item4 {
  background: url(../images/idx_img_04.png)#ededed no-repeat center bottom 9px/400px
}
.sec01_item > div.item5 {
  background: url(../images/idx_img_05.png)#ededed no-repeat center bottom 27px/400px
}
.sec01_item > div.item6 {
  background: url(../images/idx_img_06.png)#ededed no-repeat center bottom 21px/400px
}
.sec01_item > div:not(:nth-child(3n)) {
  margin-right: 25px
}
.sec01_tt, .sec01_item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}
.sec01_tt {
  margin-bottom: 15px
}
.sec01_tt .en {
  font-family: var(--en);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .03em;
  color: #8e8e8e;
  margin-bottom: 2px
}
.sec01_tt .en .num {
  font-size: 18px;
  margin-left: 6px
}
.sec01_tt .ja {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: .03em
}
.sec01_item > div .txt {
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 1.64
}
.sec01_txt {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .03em;
  line-height: 1.8;
  margin-bottom: 46px
}
/*==================== SEC02 ===================*/
.sec02 {
  background: #58666e;
  color: #fff;
  padding-top: 132px
}
.sec02 .ttl {
  margin-bottom: 49px
}
.sec02 .inner {
  width: 1652px
}
.sec02_ttl {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .03em;
  line-height: 2;
  margin-bottom: 73px
}
.sec02_ttl span {
  color: #458fa8;
  font-size: 110%;
  padding: 5px 20px;
  background: #fff;
  border-radius: 10px;
}
.sec02_item {
  display: flex
}
.sec02_item > div {
  border-radius: 40px 0 40px 0;
  padding: 15px;
  width: calc(20% - 10px);
  height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center
}
.sec02_item > div.item1 {
  background: url(../images/idx_img_07.png)#fff no-repeat left bottom 36px/293px
}
.sec02_item > div.item2 {
  background: url(../images/idx_img_08.png)#fff no-repeat left bottom 30px/294px
}
.sec02_item > div.item3 {
  background: url(../images/idx_img_09.png)#fff no-repeat center bottom 30px/298px
}
.sec02_item > div.item4 {
  background: url(../images/idx_img_10.png)#fff no-repeat left bottom 27px/294px
}
.sec02_item > div.item5 {
  background: url(../images/idx_img_11.png)#fff no-repeat left bottom 33px/293px
}
.sec02_item > div .txt {
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 1.64;
  text-align: center;
  color: #1d1d1d;
  max-width: 250px
}
.sec02_item > div .tt {
  height: 56px;
  background: var(--scolor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border-radius: 40px;
  position: relative;
  margin-bottom: 38px;
  padding: 0 36px
}
.sec02_item > div .tt::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 4px solid transparent;
  border-top: 8px solid var(--scolor);
  border-bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -8px
}
.sec02_item > div:not(:last-child) {
  margin-right: 33px
}
/*==================== SEC03 ===================*/
.sec03 {
  background: #58666e;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 197px
}
.sec03 .ttl {
  margin-bottom: 25px
}
.sec03 .ttl .ja {
  text-align: left
}
.sec03 .inner {
  width: 100%;
  padding: 0
}
.sec03_wrap {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto 45px
}
.sec03_wrap .btn {
  margin-top: 30px
}
.sec03_wrap {
  display: flex;
  justify-content: space-between
}
.sec03_item .item {
  margin: 0 30px
}
.sec03_item .slick-prev, .sec03_item .slick-next {
  width: 16px;
  height: 61px;
  z-index: 9;
  top: -127px
}
.sec03_item .slick-prev {
  background: url(../images/arrow_prev.png) no-repeat center top/16px;
  left: calc(50% - 550px)
}
.sec03_item .slick-next {
  background: url(../images/arrow_next.png) no-repeat center top/16px;
  right: calc(50% + 450px)
}
.sec03_img {
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  margin-bottom: 30px
}
.slick-prev::before, .slick-next::before {
  display: none
}
.sec03 .parameter_wrap dl dd {
  color: #DBDBDB
}
/*==================== SEC04 ===================*/
.sec04 {
  background: #f0f3f5;
  padding-top: 80px;
  padding-bottom: 90px
}
.sec04 .inner {
  width: calc(100% - 100px);
  padding: 91px 50px 80px;
  border-radius: 60px 0;
  background: #fff
}
.sec04_ttl {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .03em
}
.sec04 .ttl {
  margin-bottom: 41px
}
.sec04_item {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1544px;
  margin: 0 auto 26px
}
.sec04_item > div {
  width: 370px;
  height: 230px;
  border-radius: 50px;
  background: #f5f7f7;
  padding-top: 37px
}
.sec04_item > div:not(:last-child) {
  margin-right: 20px
}
.sec04_title, .sec04_item > div {
  display: flex;
  flex-direction: column;
  align-items: center
}
.sec04_title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .03em;
  text-align: center;
  line-height: 1.4;
  width: 100%;
  border-bottom: 1px #1d1d1d solid;
  padding-bottom: 15px;
  margin-bottom: 46px
}
.sec04_title .lg {
  font-size: 20px;
  margin-bottom: 3px
}
.sec04_title .sm {
  font-weight: 500;
  font-size: 14px
}
.sec04_price {
  display: flex;
  justify-content: flex-end
}
.sec04_price .price, .sec04_price .number, .sec04_price .mid .num {
  font-family: var(--en);
  font-weight: 500
}
.sec04_price .price {
  font-size: 30px;
  margin-right: 5px
}
.sec04_price .number {
  font-size: 46px;
  line-height: .4;
  margin-right: 5px
}
.sec04_price .sm {
  font-weight: 500;
  font-size: 15px;
  position: relative;
  bottom: -3px
}
.sec04_price .sm:not(:last-child) {
  margin-right: 10px;
}
.sec04_price .sm:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background: #707070;
  transform: rotate(-54deg);
  right: -32px;
  top: 12px
}
.sec04_price .mid {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  bottom: -2px
}
.sec04_price .mid .num {
  font-size: 23px;
  margin-left: 20px;
  margin-right: 2px
}
.sec04_txt {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .03em;
  margin-bottom: 45px
}
/*==================== SEC05 ===================*/
.sec05 {
  background: #f0f3f5;
  padding-bottom: 130px
}
.sec05 .inner, .sec05_box {
  width: 100%
}
.sec05_box {
  max-width: 1607px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between
}
.sec05_box_l {
  display: flex;
  flex-direction: column;
  width: 315px;
  flex-shrink: 0;
  align-items: center;
  padding-top: 15px
}
.sec05_item {
  display: flex
}
.sec05_item > div:not(:last-child) {
  margin-right: 30px
}
.sec05_item > div {
  background: #E8ECED;
  width: 290px;
  height: 310px;
  border-radius: 60px 0 60px 0;
  padding: 50px 40px 0
}
.sec05_item > div .tt {
  display: flex;
  flex-direction: column;
  margin-bottom: 29px
}
.sec05_item > div .tt .num {
  font-family: var(--en);
  font-weight: 500;
  font-size: 53px;
  margin-bottom: 19px
}
.sec05_item > div .tt .ja {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .03em
}
.sec05_item > div .txt {
  line-height: 1.57;
  font-size: 14px;
  letter-spacing: .03em
}
.sec05 .ttl {
  width: 240px;
  margin-bottom: 50px
}
.sec05_round {
  display: flex;
  margin: 0 auto
}
.sec05_round li {
  width: 119px;
  height: 119px;
  border: 1px solid #70707033;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  line-height: 1.33;
  text-align: center;
  position: relative
}
.sec05_round li.item1 {
  margin-right: -11px
}
/*==================== SEC06 ===================*/
.sec06 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #E8ECED;
}
.sec06 .inner {
  width: 100%;
  display: flex;
  padding-left: 80px
}
.sec06 .inner .item_r {
  width: 770px;
}
.sec06_wrap {
  display: flex;
  justify-content: space-between
}
.sec06_wrap .btn {
  margin-top: 17px
}
.sec06 .ttl {
  text-align: left;
  margin-bottom: 66px
}
.sec06 .btn a {
  width: 263px
}
.sec06_txt {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .03em;
  line-height: 1.88;
  margin-bottom: 66px
}
.sec06_info {
  width: 100%;
  height: 259px;
  border-radius: 50px;
  background: #f5f7f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 47px
}
.sec06_info p {
  display: flex;
  letter-spacing: .03em;
  width: 100%
}
.sec06_info p:not(:last-child) {
  margin-bottom: 5px
}
.sec06_info p.sec06_icon1 {
  background: url(../images/icon_map.png) no-repeat left center/22px;
  padding: 5px 0 5px 28px
}
.sec06_info p.sec06_icon2 {
  background: url(../images/icon_calc.png) no-repeat left 5px center/15px;
  padding: 5px 0 5px 29px
}
.sec06_info p.sec06_icon3 {
  background: url(../images/icon_item.png) no-repeat left 3px center/17px;
  padding: 5px 0 5px 29px
}
.sec06_info p.sec06_icon4 {
  background: url(../images/icon_item.png) no-repeat left center/17px;
  padding: 5px 0 5px 24px
}
.sec06_info p span {
  flex-shrink: 0;
  width: 112px;
  font-weight: 500
}
.ft_map {
  width: 800px;
  position: relative;
  margin-right: 120px
}
.ft_map iframe {
  width: 100%;
  height: 100%;
}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
  position: relative;
  z-index: 3
}
.ft_top {
  color: #fff;
  padding-top: 150px;
  position: relative;
  background: url(../images/ft_bg.jpg) no-repeat center top/cover;
  background-attachment: fixed;
  padding-bottom: 130px
}
.ft_top::before {
  position: absolute;
  content: "";
  background-color: #0003;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0
}
.ft_top .ttl {
  text-align: left
}
.ft_top .ttl .en {
  margin-bottom: 15px
}
.ft_top .inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  max-width: 1650px
}
.ft_top_tt {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .03em;
  text-align: right;
  padding-bottom: 25px
}
.ft_top_w {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 24px;
  align-items: flex-end;
  margin-bottom: 49px
}
.ft_top_w::before {
  position: absolute;
  content: "";
  width: 4000px;
  height: 1px;
  background: #fff;
  left: calc(50% - 2000px);
  bottom: 0
}
/* CTA */
.box_contact {
  margin: 0 auto;
  width: 1100px;
  height: 331.5px;
  border-radius: 50px 0;
  background: #0003;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px
}
.box_contact_tel {
  display: flex;
  flex-direction: column;
  align-items: center
}
.box_contact_tel a {
  font-family: var(--en);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: .05em;
  color: #fff;
  background: url(../images/icon_tel.svg) no-repeat left center/33px;
  padding: 2px 0 5px 42px;
  margin-bottom: 5px
}
.box_contact_tel.tel_b a {
  background: url(../images/icon_tel_b.svg) no-repeat left center/33px;
  color: var(--txt)
}
.box_contact_tel .time {
  font-weight: 600;
  letter-spacing: .03em
}
.box_contact_tel .time .tt {
  margin-right: 20px;
  font-weight: 500
}
.box_contact_tel .time .num {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--en);
  margin-left: 5px
}
.box_contact_list {
  display: flex
}
.box_contact_list.center {
  justify-content: center
}
.box_contact_list li:not(:last-child) {
  margin-right: 20px
}
.box_contact_list li a {
  width: 320px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .03em
}
.box_contact_list li.item1 a {
  background: #1d1d1d;
  color: #fff
}
.box_contact_list li.item1 a span {
  background: url(../images/icon_sika.svg) no-repeat left center;
  padding: 5px 0 5px 32px
}
.box_contact_list li.item2 a {
  background: #fff
}
.box_contact_list li.item2 a span {
  background: url(../images/icon_mail_lg.svg) no-repeat left center;
  padding: 5px 0 5px 32px
}
.ft_bt {
  background: #f0f3f5;
  padding: 70px 50px 0 75px
}
.ft_bt .inner {
  width: 100%;
  background: #fff;
  border-radius: 30px 30px 0 0;
  display: flex;
  padding: 0 0 0 100px;
  justify-content: space-between;
  max-width: 1920px
}
.ft_bt_l {
  display: flex;
  flex-direction: column;
  padding-top: 62px;
  padding-bottom: 47px
}
.ft_info_logo {
  margin-bottom: 30px
}
.ft_bt_r {
  width: 575px;
  border-radius: 0 30px 0 0;
  background: #E8ECED;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 5px;
  flex-direction: column;
}

.ft_bt_r .btn_insta{margin-bottom: 35px;}
.ft_bt_r .btn_insta a{display: flex;align-items: center;justify-content: center;background: #fff;border-radius: 10px;gap: 10px;font-weight: 500;padding: 10px 15px;border:1px solid var(--txt)}

/* FOOTER LINK */
.ft_link {
  display: flex;
  margin-bottom: 56px
}
.ft_link > ul:nth-child(1), .ft_link > ul:nth-child(2) {
  width: 280px
}
.ft_link > ul:nth-child(3) {
  width: 206px
}
.ft_link ul li p {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .03em
}
.ft_link ul li {
  margin-bottom: 2px;
  white-space: nowrap
}
.ft_link_wrap {
  display: flex;
  flex-wrap: wrap
}
.ft_link_wrap > ul > li:nth-child(2n + 2) {
  width: 125px
}
.ft_link ul li.big {
  margin-bottom: 11px
}
.ft_link ul li > a {
  position: relative;
  padding-left: 15px;
  color: var(--mcolor);
  font-weight: 500
}
.ft_link ul li > a::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #98989826;
  border-radius: 50%
}
address {
  font-size: 14px;
  letter-spacing: .05em;
  color: #606060
}
.to_top {
  position: fixed;
  z-index: 9;
  width: 70px;
  height: 70px;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  transition: all .2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  background: url(../images/btn_top.png)var(--txt) no-repeat center/18px;
  border: 1px #ffffff80 solid
}
.to_top.show, .boxcontact_fix.show {
  opacity: 1;
  visibility: visible
}
/* FUNCTIONS SP */
.boxcontact_fix {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  z-index: 99;
  top: 177px;
  transition: all .3s;
  padding: 12px;
  width: 90px;
  border-radius: 20px 0 0 20px;
  background: #fff;
  box-shadow: 0 0 50px #0000001a
}
.boxcontact_fix li {
  width: 66px;
  height: 199px;
  border-radius: 13px;
  transition: all .3s
}
.boxcontact_fix li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 13px;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: .2em
}
.boxcontact_fix li a span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: -5px;
  top: calc(50% - 10px)
}
.boxcontact_fix li.sp_contact_mail {
  background: #f0f3f5;
  margin-bottom: 10px;
  height: 181px
}
.boxcontact_fix li.sp_contact_mail a {
  color: var(--txt);
  padding-top: 21px
}
.boxcontact_fix li.sp_contact_mail a span {
  background: url(../images/icon_mail.svg) no-repeat center top;
  padding-top: 28px
}
.boxcontact_fix li.sp_contact_sika a {
  padding-top: 19px;
  letter-spacing: .12em
}
.boxcontact_fix li.sp_contact_sika a span {
  background: url(../images/icon_sika.svg) no-repeat center top;
  padding-top: 29px
}
.boxcontact_fix li.sp_contact_sika {
  background: #1d1d1d;margin-bottom: 10px;
}
.boxcontact_fix li.sp_contact_room a span {
  background: url("../images/icon_room.png") no-repeat center top/auto 20px;
  padding-top: 29px;display: inline-block;position: relative;
}
.boxcontact_fix li.sp_contact_room {
  background: #f0f3f5;
}
.boxcontact_fix li.sp_contact_room a {
  color: var(--txt);
  letter-spacing: .12em;align-items: center;justify-content: center;
}
.h_btn_instagram { margin: 0 0 0 50px; }
.h_btn_instagram a {display: flex;justify-content: center;align-items: center;background: var(--gray);padding: 10px;border-radius: 10px;font-weight: 500;gap: 10px;}
#index main section .link {text-decoration: underline;color: var(--mcolor);font-weight: 700;}