@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Quasimoda";
  src: url("../fonts/Quasimoda-Bold.woff") format("woff2"), url("../fonts/Quasimoda-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quasimoda";
  src: url("../fonts/Quasimoda-Medium.woff2") format("woff2"), url("../fonts/Quasimoda-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --txt: #1f3642;
  --mcolor: #3fb5e9;
  --scolor: #41c8cd;
  --container: 1500px;
  --gray: #e9e9e9;
  --blue: #003b7d;
  --red: red;
  --f-main: "Noto Sans JP", sans-serif;
  --f-nts: "Noto Sans JP", sans-serif;
  --f-nsr: "Noto Serif JP", serif;
  --f-rbt: "Roboto", sans-serif;
  --f-quasimoda: "Quasimoda";
  --f-yumin: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
      "Hiragino Mincho ProN", "HG明朝B", serif;
}

/* 基本タグのフォントサイズを指定（.75rem -> 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: 18px;
  -webkit-text-size-adjust: none;
  font-weight: 400;
}

*,
::before,
::after {
  box-sizing: border-box;
  outline: none;
}

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

select {
  visibility: visible !important;
}

a {
  transition: all ease 0.3s;
  text-decoration: none;
  color: var(--txt);
}

a[href^="tel:"] {
  word-break: keep-all;
}

/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
  background: #fff;
  font-size: 1rem;
}

body {
  -webkit-text-size-adjust: none;
  min-width: 20rem;
  color: var(--txt);
  font-family: var(--f-main);
}

table {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

p,
dd,
dt,
li,
th,
td,
address {
  line-height: 1.778em;
  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;
}

.f_big {
  font-size: 220% !important;
}

.f_sm {
  font-size: 80%;
}

.m0a {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#wrapper {
  min-width: 1260px;
  overflow: hidden;
  margin: 0 auto;
}

.inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  padding: 0 20px;
}

.lk-full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* HAMBUGER BUTTON */
.hamburger {
  font: inherit;
  display: block;
  overflow: visible;
  margin: 0;
  padding: 10px 8px 5px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 24px;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  position: absolute;
  width: 35px;
  height: 2px;
  transition: all ease 0.15s;
  background-color: #000;
}

.hamburger-inner::after,
.hamburger-inner::before {
  display: block;
  content: "";
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy .hamburger-inner::after,
.hamburger--3dxy .hamburger-inner::before {
  transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.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, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is_active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*==========================================================
                       H E A D E R
==========================================================*/
header {
  position: relative;
  z-index: 9;
}

.h_logo {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 500px;
  transition: all ease 0.3s;
  box-shadow: 7px 7px 24px rgba(88, 162, 219, 0.1);
  border-bottom-right-radius: 30px;
}
.h_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 390px;
  height: 212px;
  background-color: #fff;
  border-bottom-right-radius: 30px;
  transition: all ease 0.3s;
}

.h_box {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  height: 140px;
  background-color: #fff;
}

.h_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.h_contact {
  display: flex;
  gap: 16px;
}
.h_contact > p {
  transition: all ease 0.3s;
  height: 66px;
  margin-bottom: 0;
}
.h_contact > p a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  color: #fff;
}
.h_contact_tel {
  width: 335px;
  max-width: 100%;
}
.h_contact_tel a {
  font-family: var(--f-quasimoda);
  font-size: 33px;
  font-weight: bold;
  background-color: var(--scolor);
}
.h_contact_tel a .num {
  font-size: 1em;
  position: relative;
  z-index: 1;
  padding-left: 0.9090909091em;
  margin-bottom: 2px;
  letter-spacing: 0;
  letter-spacing: 0.05em;
}
.h_contact_tel a .num::before {
  content: "";
  position: absolute;
  background: url("../images/ic_phone.png") center no-repeat;
  background-size: cover;
  width: 0.696969697em;
  height: 0.696969697em;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.h_contact_tel a .time {
  font-size: max(0.3636363636em, 10px);
  display: block;
  line-height: 1em;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.h_contact_mail {
  width: 310px;
  max-width: 100%;
}
.h_contact_mail a {
  background-color: var(--mcolor);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.h_contact_mail a .txt {
  font-size: 80%;
  line-height: 1.2em;
  color: #DCF179;
  font-weight: bold;
}

nav {
  position: relative;
  z-index: 1;
  background-color: #1484c0;
  padding: 0 11px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.nav_list > li > a,
.nav_list > li > .hook {
  font-size: 16px;
  padding: 36px 27px 10px 26px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.025em;
  z-index: 1;
  transition: all ease 0.3s;
}
.nav_list > li > a::before,
.nav_list > li > .hook::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  transition: all ease 0.3s;
}

.nav_list > li.menu1 > a::before,
.nav_list > li.menu1 > span::before {
  background: url("../images/ic_menu1.png") center no-repeat;
  background-size: cover;
  width: 24px;
  height: 23px;
  top: 16px;
}

.nav_list > li.menu2 > a::before,
.nav_list > li.menu2 > span::before {
  background: url("../images/ic_menu2.png") center no-repeat;
  background-size: cover;
  width: 43px;
  height: 25px;
  top: 14px;
}

.nav_list > li.menu3 > a::before,
.nav_list > li.menu3 > span::before {
  background: url("../images/ic_menu3.png") center no-repeat;
  background-size: cover;
  width: 24px;
  height: 31px;
  top: 11px;
}

.nav_list > li.menu4 > a::before,
.nav_list > li.menu4 > span::before {
  background: url("../images/ic_menu4.png") center no-repeat;
  background-size: cover;
  width: 28px;
  height: 30px;
  top: 12px;
}

.nav_list > li.menu5 > a::before,
.nav_list > li.menu5 > span::before {
  background: url("../images/ic_menu5.png") center no-repeat;
  background-size: cover;
  width: 33px;
  height: 23px;
  top: 15px;
  left: -5px;
}

.nav_list > li.menu6 > a::before,
.nav_list > li.menu6 > span::before {
  background: url("../images/ic_menu6.png") center no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  top: 14px;
  left: -4px;
}

.nav_list > li.menu7 > a::before,
.nav_list > li.menu7 > span::before {
  background: url("../images/ic_menu7.png") center no-repeat;
  background-size: cover;
  width: 27px;
  height: 28px;
  top: 13px;
  left: -4px;
}

.h_left {
  position: fixed;
}

.h_right {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  margin-left: auto;
}
.h_right_btn {
  align-self: flex-end;
  padding-right: 40px;
  margin-bottom: 20px;
}

.is_scroll .h_logo {
  border-radius: 0;
}
.is_scroll .h_logo a {
  width: 240px;
  height: 110px;
  padding: 20px;
  border-radius: 0;
}
.is_scroll .h_right {
  padding-top: 5px;
}
.is_scroll .h_right_btn {
  margin-bottom: 6px;
}
.is_scroll .nav_list > li > a,
.is_scroll .nav_list > li > .hook {
  font-size: 14px;
  padding: 17px 27px 0px 26px;
}
.is_scroll .nav_list > li.menu1 > a::before,
.is_scroll .nav_list > li.menu1 > span::before {
  width: 16px;
  height: 15px;
  top: 5px;
}
.is_scroll .nav_list > li.menu2 > a::before,
.is_scroll .nav_list > li.menu2 > span::before {
  width: 28px;
  height: 16px;
  top: 5px;
}
.is_scroll .nav_list > li.menu3 > a::before,
.is_scroll .nav_list > li.menu3 > span::before {
  width: 16px;
  height: 20px;
  top: 5px;
}
.is_scroll .nav_list > li.menu4 > a::before,
.is_scroll .nav_list > li.menu4 > span::before {
  width: 17px;
  height: 18px;
  top: 5px;
}
.is_scroll .nav_list > li.menu5 > a::before,
.is_scroll .nav_list > li.menu5 > span::before {
  width: 20px;
  height: 15px;
  top: 5px;
  left: -5px;
}
.is_scroll .nav_list > li.menu6 > a::before,
.is_scroll .nav_list > li.menu6 > span::before {
  width: 15px;
  height: 15px;
  top: 5px;
  left: -4px;
}
.is_scroll .nav_list > li.menu7 > a::before,
.is_scroll .nav_list > li.menu7 > span::before {
  width: 15px;
  height: 15px;
  top: 5px;
  left: -4px;
}
.is_scroll .h_contact > p {
  height: 45px;
}
.is_scroll .h_contact_tel {
  width: 235px;
}
.is_scroll .h_contact_mail {
  width: 235px;
}
.is_scroll .h_contact_tel a {
  font-size: 22px;
}
.is_scroll .h_contact_mail a {
  font-size: 16px;
  line-height: 1.3em;
}
.is_scroll .h_box {
  height: 110px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.is_scroll .h_contact_tel a .num {
  line-height: 1em;
}
.is_scroll .h_contact_tel a .time {
  letter-spacing: -0.05em;
}

/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
  position: relative;
  z-index: 2;
  padding-top: 140px;
}

.mv {
  position: relative;
  padding: 0;
}

.mv_bg {
  position: relative;
  transition: all 0.3s;
}

.mv_bg.init {
  opacity: 1;
}

.mv_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv_bg,
.mv_slider_ite {
  width: 100%;
  height: 820px;
}

.mv_slider_ite .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 8px;
  text-align: right;
}
.mv_slider_ite .bg::before {
  content: "";
  position: absolute;
  background: url("../images/main_visual_img01.jpg") right center no-repeat;
  background-size: cover;
  width: 1359px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
}
.mv_slider_ite .bg img {
  display: none;
}

.mv_txt {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  height: max-content;
  top: -143px;
  bottom: 0;
  left: 126px;
  margin: auto;
}
.mv_txt .grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px;
  gap: 14px 12px;
}
.mv_txt .grid .item {
  font-size: 24px;
  width: 100%;
  max-width: 17.75em;
  color: #fff;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 50px;
  padding: 0.2083333333em 0.8333333333em 0.2083333333em 1.25em;
}
.mv_txt .grid .item:nth-child(4) {
  max-width: 15.0833333333em;
}
.mv_txt .grid .item span {
  position: relative;
  z-index: 1;
  padding-left: 2.625em;
}
.mv_txt .grid .item span::before {
  content: "";
  position: absolute;
  background: url("../images/ic_check.png") center no-repeat;
  background-size: cover;
  width: 1.5em;
  height: 1.375em;
  top: 0.18em;
  left: 0;
  z-index: -1;
}
.mv_txt .grid .item:nth-child(1), .mv_txt .grid .item:nth-child(4) {
  background-color: #6dd0e9;
}
.mv_txt .grid .item:nth-child(2), .mv_txt .grid .item:nth-child(3) {
  background-color: #41c8cd;
}

.mv_banner {
  position: absolute;
  width: 1061px;
  right: -47px;
  bottom: -215px;
}

.mv_txt h2 {
  font-size: 62px;
  font-weight: bold;
  color: #1f3642;
  letter-spacing: 0.34em;
  line-height: 1.42em;
  margin-bottom: 39px;
}

@keyframes zoomImg {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3:not(:last-child) {
  margin-bottom: 30px;
}

.ttl_h3 > span {
  display: block;
}

.ttl_h3 .ja {
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.208em;
  color: #1f3642;
  line-height: 1.538em;
}

.ttl_h3 .en {
  font-size: 16px;
}

.ttl_h3 .ja .clr {
  font-size: 123.077%;
  font-weight: bold;
  color: #fff799;
  letter-spacing: 0.3em;
}

/* DEFAUTL NAME BUTTON */
.btn a {
  width: 340px;
  max-width: 100%;
  height: 68px;
  border-radius: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/ic-right.png") no-repeat right 23px center/28px 17px #fff;
  border: 2px solid #41c8cd;
  font-size: 18px;
  color: #1f3642;
  font-weight: 600;
  padding-bottom: 2px;
}

.btn.center a {
  margin-left: auto;
  margin-right: auto;
}

/*============= SEC01 ==============*/
.sec01 {
  position: relative;
  z-index: 2;
  padding: 84px 0 120px;
  background-color: #eaf5fa;
}
.sec01::before {
  content: "";
  position: absolute;
  background: url("../images/sec1_img2.png") center no-repeat;
  background-size: cover;
  width: 310px;
  height: 285px;
  bottom: -60px;
  right: 53px;
  z-index: -1;
}
.sec01 .inner {
  position: static;
}
.sec01_cnt {
  width: 51%;
  max-width: 740px;
  min-height: 690px;
  margin-left: auto;
  padding-bottom: 120px;
}
.sec01_cnt .cnt p {
  letter-spacing: -0.05em;
}
.sec01_cnt .ttl_h3 {
  margin-bottom: 27px;
  margin-right: -171px;
}
.sec01_cnt .ttl_h3 .en {
  margin-bottom: -57px;
  margin-left: -77px;
}
.sec01_img {
  position: absolute;
  left: -8px;
  top: 120px;
  width: 45%;
  max-width: 839px;
}

/*============= SEC02 ==============*/
.sec02 {
  background-color: #6dd0e9;
  padding: 88px 0 0;
  overflow: hidden;
}
.sec02 .ttl_h3 {
  margin-bottom: 47px;
}
.sec02 .ttl_h3 .ja {
  margin-left: -10px;
  letter-spacing: 0.23em;
}
.sec02 .ttl_h3 .en {
  margin-bottom: 20px;
  margin-left: -104px;
}
.sec02_cnt {
  --size-dc: 318px;
  font-size: 10px;
  max-width: 1570px;
  margin-left: -231px;
  padding: 31px 75px 42px 103px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.sec02_cnt::before {
  content: "";
  position: absolute;
  background: url("../images/sec2_dc.png") center no-repeat;
  background-size: cover;
  width: var(--size-dc);
  height: 749px;
  bottom: -78px;
  right: calc(var(--size-dc) * -1 + 21px);
  z-index: -1;
}
.sec02_cnt::after {
  content: "";
  position: absolute;
  width: 1920px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #fff;
  border-top-right-radius: 60px;
  z-index: -2;
}
.sec02_cnt .item {
  width: 100%;
  max-width: 464px;
  font-size: 1em;
  text-align: center;
  padding-top: 36px;
  padding-bottom: 35px;
  position: relative;
  z-index: 1;
}
.sec02_cnt .item::after {
  content: "";
  position: absolute;
  width: 82%;
  height: 2px;
  background-color: #d9d9d9;
  left: 0;
  right: 0;
  bottom: -8px;
  margin: auto;
  z-index: -1;
}
.sec02_cnt .item .icon {
  height: 210px;
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec02_cnt .item h4 {
  font-size: 24px;
  color: #1f3642;
  line-height: 1.66em;
}
.sec02_cnt .item h4 span {
  color: #1484c0;
  font-weight: bold;
  letter-spacing: 0.02em;
}

/*============= SEC03 ==============*/
.sec03 {
  position: relative;
  z-index: 1;
  padding-bottom: 85px;
}
.sec03::before {
  content: "";
  position: absolute;
  background: url("../images/sec3_bg.jpg") center no-repeat;
  background-size: cover;
  width: 1920px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}
.sec03_cnt {
  display: flex;
  margin-bottom: -24px;
}
.sec03_cnt .cnt {
  padding-top: 100px;
  width: 80%;
  max-width: 960px;
  margin-left: auto;
}
.sec03_cnt .ttl_h3 {
  margin-right: -90px;
  margin-bottom: 47px !important;
}
.sec03_cnt .ttl_h3 .ja {
  color: #fff;
  line-height: 1.6em;
  font-weight: 300;
}
.sec03_cnt .ttl_h3 .ja .clr {
  color: #ffe61e;
  font-weight: 600;
}
.sec03_cnt .img {
  margin-top: -42px;
  margin-left: -17px;
}
.sec03_contact {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.sec03_contact .item {
  padding: 40px 52px 50px;
  width: 460px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  transition: all ease 0.3s;
}
.sec03_contact .item.call .box {
  font-size: 15px;
  letter-spacing: 0.074em;
  line-height: 1.5em;
  padding: 7px 5px;
}
.sec03_contact .item.mail .box {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
  padding: 2px 5px 4px;
  letter-spacing: 0.1em;
}
.sec03_contact .ttl {
  font-family: var(--f-nsr);
  font-size: 24px;
  color: #1484c0;
  letter-spacing: 0.25em;
  padding-bottom: 7px;
  border-bottom: 1px solid #1484c0;
  margin: 0 7px 7px;
  font-weight: 500;
}
.sec03_contact .num {
  font-family: var(--f-quasimoda);
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.044em;
  margin-bottom: 2px;
}
.sec03_contact .num a {
  color: #1f3642;
}
.sec03_contact .num span {
  padding-left: 46px;
  position: relative;
  z-index: 1;
}
.sec03_contact .num span::before {
  content: "";
  position: absolute;
  background: url("../images/sec3_ic_phone.png") center no-repeat;
  background-size: cover;
  width: 33px;
  height: 32px;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
}
.sec03_contact .txt {
  font-size: 36px;
  letter-spacing: 0.12em;
  font-weight: bold;
  margin: 0 -30px;
  line-height: 2.35em;
  margin-bottom: 3px;
}
.sec03_contact .txt a {
  color: #1f3642;
}
.sec03_contact .box {
  background-color: #1484c0;
  color: #fff;
  border-radius: 60px;
}

/*============= SEC04 ==============*/
.sec04 {
  padding: 108px 0 208px;
}
.sec04 .ttl_h3 {
  margin-bottom: 28px;
}
.sec04 .ttl_h3 .en {
  text-align: center;
  margin-bottom: 50px;
}
.sec04 .ttl_h3 .ja {
  text-align: center;
  letter-spacing: 0.26em;
}
.sec04 .ttl_h3 .ja img {
  margin-bottom: 12px;
}
.sec04_cnt {
  counter-reset: section;
}
.sec04_cnt .item {
  display: flex;
  position: relative;
  z-index: 1;
}
.sec04_cnt .item::before {
  counter-increment: section;
  content: counter(section, decimal-leading-zero);
  position: absolute;
  font-family: var(--f-quasimoda);
  font-size: 257px;
  font-weight: 400;
  color: #ffe61e;
  opacity: 0.7;
  z-index: 2;
  line-height: 1;
}
.sec04_cnt .item:not(:last-child) {
  margin-bottom: 114px;
}
.sec04_cnt .item:nth-child(odd) {
  margin-right: 86px;
}
.sec04_cnt .item:nth-child(odd)::before {
  bottom: -110px;
  right: -36px;
}
.sec04_cnt .item:nth-child(odd) .img {
  margin-left: -171px;
}
.sec04_cnt .item:nth-child(odd) .cnt_bg::before {
  border-top: 5px solid #6dd0e9;
  border-right: 5px solid #6dd0e9;
  top: 20px;
  right: 20px;
}
.sec04_cnt .item:nth-child(odd) .cnt_bg::after {
  border-bottom: 5px solid #6dd0e9;
  border-left: 5px solid #6dd0e9;
  bottom: 19px;
  left: 20px;
}
.sec04_cnt .item:nth-child(even) {
  flex-direction: row-reverse;
}
.sec04_cnt .item:nth-child(even)::before {
  bottom: -103px;
  left: -188px;
}
.sec04_cnt .item:nth-child(even) .img {
  margin-right: -172px;
}
.sec04_cnt .item:nth-child(even) .cnt {
  padding: 87px 102px 95px 170px;
  margin-bottom: -23px;
}
.sec04_cnt .item:nth-child(even) .cnt_bg {
  left: -1px;
  right: unset;
}
.sec04_cnt .item:nth-child(even) .cnt_bg::before {
  border-top: 5px solid #6dd0e9;
  border-left: 5px solid #6dd0e9;
  top: 15px;
  left: 15px;
  width: 55px;
  height: 55px;
}
.sec04_cnt .item:nth-child(even) .cnt_bg::after {
  border-bottom: 5px solid #6dd0e9;
  border-right: 5px solid #6dd0e9;
  bottom: 14px;
  right: 15px;
  width: 55px;
  height: 55px;
}
.sec04_cnt .item:nth-child(even) h4 {
  font-size: 36px;
  margin-bottom: 23px;
}
.sec04_cnt .img {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 55%;
  max-width: 742px;
}
.sec04_cnt .cnt {
  position: relative;
  z-index: 1;
  padding: 87px 63px 63px 92px;
  margin-bottom: -32px;
  flex-grow: 1;
  margin-top: 98px;
}
.sec04_cnt .cnt_bg {
  position: absolute;
  width: 1190px;
  height: 100%;
  background-color: #f8f6f4;
  top: 0;
  right: 5px;
  z-index: -1;
}
.sec04_cnt .cnt_bg::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: transparent;
  z-index: -1;
}
.sec04_cnt .cnt_bg::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: transparent;
  z-index: -1;
}
.sec04_cnt .cnt_frame {
  width: 100%;
  max-width: 1190px;
  position: relative;
  z-index: 1;
}
.sec04_cnt .cnt_frame h4 {
  font-size: 40px;
  color: #1f3642;
  line-height: 1.5em;
  letter-spacing: 0.33em;
  margin-bottom: 20px;
}
.sec04_cnt .cnt_frame_frame {
  max-width: 480px;
}
.sec04_cnt .cnt_frame .desc p {
  letter-spacing: 0.028em;
}

/*============= SEC05 ==============*/
.sec05 {
  position: relative;
  z-index: 2;
  margin-bottom: 160px;
}
.sec05 .inner {
  position: static;
}
.sec05 .ttl_h3 {
  margin-bottom: 35px;
}
.sec05 .ttl_h3 .en {
  margin-left: -71px;
  margin-bottom: 18px;
}
.sec05 .ttl_h3 .ja {
  letter-spacing: 0.28em;
}
.sec05 .ttl_h3 .ja .clr {
  color: #41c8cd;
  margin-top: 5px;
  letter-spacing: 0.255em;
  display: block;
}
.sec05_cnt {
  display: flex;
  gap: 134px;
}
.sec05_cnt .cnt {
  padding: 79px 0;
  max-width: 500px;
  flex-shrink: 0;
  margin-left: 1px;
}
.sec05_cnt .desc {
  margin-bottom: 43px;
}
.sec05_cnt .desc p {
  letter-spacing: 0.01em;
}
.sec05_cnt .img img {
  max-width: 1054px;
  border-bottom-left-radius: 80px;
}

/*============= SEC06 ==============*/
.sec06 {
  position: relative;
  z-index: 1;
  padding-bottom: 161px;
}
.sec06 .inner {
  position: static;
}
.sec06 .ttl_h3 {
  margin-bottom: 40px;
}
.sec06 .ttl_h3 .en {
  margin-left: -104px;
  margin-bottom: 8px;
}
.sec06 .ttl_h3 .ja {
  letter-spacing: 0.28em;
}
.sec06 .ttl_h3 .ja .clr {
  color: #41c8cd;
  margin-top: -1px;
  letter-spacing: 0.22em;
  display: block;
}
.sec06 h4 {
  font-size: 36px;
  color: #1f3642;
  letter-spacing: 0.15em;
  line-height: 1.53em;
  margin-bottom: 42px;
}
.sec06_cnt {
  display: flex;
  gap: 134px;
}
.sec06_cnt .cnt {
  padding: 58px 0 0;
  max-width: 500px;
  margin-left: 1px;
  flex-shrink: 0;
}
.sec06_cnt .desc p {
  letter-spacing: 0.028em;
}
.sec06_cnt .img img {
  max-width: 1054px;
  border-bottom-left-radius: 80px;
}
.sec06_bnr {
  --w-bnr: 1054px;
  flex-shrink: 0;
  width: 73%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sec06_bnr .item {
  max-width: var(--w-bnr);
  height: 314px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 18px 20px 20px 80px;
  transition: all ease 0.3s;
}
.sec06_bnr .item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec06_bnr .item.item1::before {
  background: url("../images/sec6_bnr1.jpg") center no-repeat;
  background-size: cover;
}
.sec06_bnr .item.item2::before {
  background: url("../images/sec6_bnr2.jpg") center no-repeat;
  background-size: cover;
}
.sec06_bnr .item.item3::before {
  background: url("../images/sec6_bnr3.jpg") center no-repeat;
  background-size: cover;
}
.sec06_bnr .item .ttl {
  font-size: 44px;
  line-height: 1.3636em;
  color: #fff;
  letter-spacing: 0.28em;
  margin-bottom: 0;
  border-left: 2px solid #fff;
  padding-left: 40px;
}
.sec06_bnr .item .btn {
  position: absolute;
  right: 25px;
  bottom: 24px;
}
.sec06_bnr .item .btn a {
  width: 260px;
  height: 54px;
}

/*============= SEC07 ==============*/
.sec07 .ttl_h3 {
  text-align: center;
  margin-bottom: 46px;
}
.sec07 .ttl_h3 .en {
  margin-bottom: 5px;
}
.sec07 .ttl_h3 .ja {
  letter-spacing: 0.25em;
  color: #fff;
}
.sec07_bg {
  position: relative;
  z-index: 1;
  padding: 25px 0 120px;
  font-size: 10px;
}
.sec07_bg::before {
  content: "";
  position: absolute;
  background-color: #6dd0e9;
  width: 1600px;
  height: 100%;
  top: 0;
  right: 91px;
  z-index: -1;
}
.sec07_bg::after {
  content: "";
  position: absolute;
  background: url("../images/sec7_img1.png") center no-repeat;
  background-size: cover;
  width: max(42em, 304px);
  height: max(67.3em, 498px);
  bottom: 0;
  left: -19.7em;
  z-index: -1;
}
.sec07_cnt {
  font-size: 1em;
  display: flex;
  justify-content: flex-end;
  width: calc(100% + 169px);
  gap: 4em;
}
.sec07_cnt .item {
  font-size: 1em;
  border-radius: 30px;
  background-color: #fff;
  padding: 2.4em 2.4em 4.2em;
  width: 29%;
  max-width: 46em;
  box-shadow: 5px 5px 49px rgba(15, 34, 48, 0.15);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.sec07_cnt .item > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.sec07_cnt .item:nth-child(1) .icon {
  padding-left: 50px;
}
.sec07_cnt .item .icon {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  padding-left: 5px;
}
.sec07_cnt .item h4 {
  font-size: max(2.3em, 15px);
  letter-spacing: 0.025em;
  line-height: 1.6em;
  text-align: center;
}
.sec07_cnt .item h4 span {
  color: #1484c0;
  font-weight: 600;
}

/*============= SEC08 ==============*/
.sec08 {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.sec08 .ttl_h3 {
  text-align: center;
  margin-bottom: 46px;
}
.sec08 .ttl_h3 .en {
  margin-bottom: 28px;
}
.sec08 .ttl_h3 .ja {
  letter-spacing: 0.26em;
}
.sec08 .ttl_h3 .ja span {
  color: #41c8cd;
}
.sec08_cnt {
  padding: 28px 0 120px;
  position: relative;
  z-index: 1;
}
.sec08_cnt::before {
  content: "";
  position: absolute;
  width: 1501px;
  height: 100%;
  background-color: #f8f6f4;
  right: 181px;
  top: 0;
  z-index: -1;
}
.sec08_cnt .cnt {
  display: flex;
  gap: 40px;
}
.sec08_cnt .item {
  background-color: #fff;
  border-radius: 30px;
  max-width: 460px;
  box-shadow: 5px 5px 49px rgba(15, 34, 48, 0.15);
}
.sec08_cnt .item .img img {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.sec08_cnt .item .info {
  padding: 25px 42px 45px;
}
.sec08_cnt .item .date {
  font-family: var(--f-quasimoda);
  color: #1484c0;
  line-height: 1.5em;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.045em;
  margin-bottom: -1px;
}
.sec08_cnt .item .ttl {
  font-size: 22px;
  color: #1f3642;
  line-height: 1.6363em;
  letter-spacing: -0.042em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*============= SEC09 ==============*/
.sec09 {
  padding: 99px 0 0;
  background-color: #eaf5fa;
}
.sec09 .ttl_h3 {
  text-align: center;
  margin-bottom: 47px;
}
.sec09 .ttl_h3 .en {
  margin-bottom: 15px;
}
.sec09_cnt {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 132px;
  padding: 74px 50px 98px;
  background-color: #fff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 2px 2px 27px rgba(51, 51, 51, 0.1);
}
.sec09_cnt .item:nth-child(2) dl:not(:last-child) {
  margin-bottom: 9px;
}
.sec09_cnt .item:nth-child(2) dl:last-child {
  margin-top: 26px;
}
.sec09_cnt .item:nth-child(2) dt {
  width: 148px;
}
.sec09_cnt .item dl {
  display: flex;
}
.sec09_cnt .item dl:not(:last-child) {
  margin-bottom: 26px;
}
.sec09_cnt .item dt {
  font-weight: 600;
  color: #1484c0;
  line-height: 1.5em;
  width: 116px;
  letter-spacing: 0.05em;
}
.sec09_cnt .item dd {
  color: #1f3642;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}
.sec09_cnt .item dd .note {
  display: block;
  font-size: 14px;
  line-height: 1.2em;
}
.sec09_cnt .item dd .content {
  display: block;
}
.sec09_cnt .item dd .content span {
  display: block;
}

/*============= GROUP BACKGROUND ==============*/
.group_bg {
  position: relative;
  z-index: 1;
  padding: 0 0 120px;
}
.group_bg::before {
  --space-height: 275px;
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + var(--space-height));
  background: #f8f6f4;
  top: calc(var(--space-height) * -1);
  left: 0;
  right: 0;
  margin: auto;
}

.sp414 {
  display: none;
}

.none440 {
  display: block;
}

/*==========================================================
                        F O O T E R
==========================================================*/
footer {
  position: relative;
  z-index: 3;
  padding-top: 121px;
}

address {
  color: #1f3642;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.075em;
}

.ft_bg {
  background-color: #eaf5fa;
  padding-bottom: 77px;
}

.ft_map {
  line-height: 0;
}
.ft_map iframe {
  width: 100%;
  height: 400px;
}

.ft_frame {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 0 55px;
  display: flex;
  justify-content: space-between;
}

.ft_info {
  width: 391px;
}
.ft_info_logo {
  margin-bottom: 23px;
}
.ft_info_address {
  letter-spacing: 0.04em;
  margin-bottom: 17px;
}
.ft_info_call {
  margin-bottom: -2px;
}
.ft_info_call a {
  font-size: 49px;
  font-family: var(--f-quasimoda);
  font-weight: bold;
  color: #1f3642;
  letter-spacing: 0.05em;
}
.ft_info_call a span {
  padding-left: 45px;
  position: relative;
  z-index: 1;
}
.ft_info_call a span::before {
  content: "";
  position: absolute;
  background: url("../images/sec3_ic_phone.png");
  background-size: cover;
  width: 33px;
  height: 34px;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  z-index: -1;
}
.ft_info_time {
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
.ft_info_bnr p:not(:last-child) {
  margin-bottom: 12px;
}

.ft_menu {
  display: flex;
  gap: 125px;
  padding-top: 7px;
}
.ft_menu .ttl {
  line-height: 1.5em;
  font-size: 20px;
  color: #1484c0;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 0;
}
.ft_menu .ttl.top {
  margin-top: -2px;
}
.ft_menu li {
  line-height: 1.5em;
}
.ft_menu li:not(:last-child) {
  margin-bottom: 28px;
}
.ft_menu_sub {
  margin-top: 8px;
}
.ft_menu_sub li {
  line-height: 1.6em;
}
.ft_menu_sub li:not(:last-child) {
  margin-bottom: 7px;
}
.ft_menu_sub a {
  color: #1f3642;
  letter-spacing: -0.057em;
}

/* BACK TO TOP */
.to_top {
  position: fixed;
  z-index: 9;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}

.to_top.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

/*==========================================================================*/
/*                 F O R   S P E C I F I E D   B R O W S E R                */
/*==========================================================================*/
/* EDGE  */
/* FIREFOX */
@-moz-document url-prefix() {}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
}