@charset "utf-8";
:root {
  /* カラーパレット */
  --color-primary: #000;
  --color-secondary: #fff;
  --color-accent: #004B9A;
  --color-main: #e96300;
  --color-blue: #76C7DD;

  /* フォントサイズ */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;

  /* スペーシング */
  --spacing-unit: 8px;
  --spacing-small: calc(var(--spacing-unit) * 1);
  --spacing-medium: calc(var(--spacing-unit) * 2);
  --spacing-large: calc(var(--spacing-unit) * 3);

  /* ブレークポイント */
  --breakpoint-mobile: 767px;
  --breakpoint-tablet: 1024px;
  --breakpoint-desktop: 1280px;
}

/*----------------------------------------------------------------------------------------------
	base
----------------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'garamond';
  src: url(garamond.woff) format("woff");
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

body {
  position: relative;
  font-family: 'Noto Sans JP', ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  height: 100%;
  margin: auto;
}

a {
  -webkit-transition: .4s;
  transition: .4s;
}

a:link,
a:visited {
  color: #76C7DD;
  text-decoration: none;
}

a:hover,
a:active {
  color: #a2c8d3;
  text-decoration: none;
}

.clear-type {
  -webkit-transform-origin: 0 0;
  -webkit-transform: scale(1, 1.01);
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/*PCで表示させないセレクタ*/
#sp_header,
.tel-btn_sp {
  display: none;
}

.pc_hidden {
  display: none;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

.header__inner {
  position: relative;
  display: flex;
  /* width: clamp(200px, 95%, 1100px); */
  gap: 5%;
  margin: 0 auto;
  /* padding: 70px 0 0; */
  height: 120px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  align-items: center;
}

.is_scroll .header__inner {
  /*
  padding: 5px 15px 0;
  height: 60px;
*/
}

.h__line_txt{
  position: absolute;
  top: 1em;
  left: 0;
  font-family: ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 9px;
  color: #717071;
}
.h__id {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  margin-left: 25px;
}

.h__id:hover {
  opacity: .8;
}

.h__id img {
  width: auto;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.h_nav_pc {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  border-radius: 0 0 0 10px;
  background: linear-gradient(270deg, #76C7DD 0%, #ABDDF7 118.43%);
  color: #fff;
  padding: 10px 30px 13px;
  line-height: 1;
  gap: 1em;
}

.h_nav_pc li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.h_nav_pc li a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 5px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  text-decoration: none;
  color: #fff;
}

.h_nav_pc li.h__btn__time{
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.is_scroll .h_nav_pc li a {
  /*
  line-height: 60px;
  height: 60px;
*/
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
nav
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.gnavi_wrap {
  flex: 1;
  margin-left: auto;
}

.header__nav {
  list-style: none;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  margin: 30px 30px 0 0;
  gap: 2em;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.header__nav a {
  color: #6D6B6B;
  font-weight: 700;
}

.header__nav__item {
  /* width: calc(100% / 7); */
}

.sp-menu {
  display: none;
}

@media (max-width:767px) {
  .h__id {
    margin-left: 5px;
  }
}

@media screen and (min-width:768px) and (max-width:880px) {}

.header__nav__item a {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  color: #343435;
  height: 100%;
  text-decoration: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.is_scroll .header__nav__item a {
  /*
  height: 36px;
  line-height: 36px;
*/
}

.header__nav__item a.is-uc {
  opacity: 0.4;
}

.header__nav__item a:hover {
  color: #76C7DD;
}

.header__nav__item.on a {
  color: #76C7DD;
}

.header__nav__item a:hover img,
.header__nav__item.on a img {
  filter: invert(44%) sepia(89%) saturate(434%) hue-rotate(339deg) brightness(96%) contrast(95%);
}

.header__nav__item a.is-uc {
  pointer-events: none;
}

.header__nav__item a.is-uc:hover {
  cursor: default;
}

.header__nav__item a.is-uc:hover::before {
  opacity: 0;
}

.header__nav__item a.is-uc:hover::after {
  width: 0;
}



/*----------------------------------------------------------------------------------------------
	COMMON
----------------------------------------------------------------------------------------------*/
.row:after,
.col:after {
  content: "";
  display: block;
  clear: both;
}

.col {
  display: block;
  float: left;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.mt-1em {
  margin-top: 1em;
}

.mt0 {
  margin-top: 0 !important;
}

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.ctb {
  text-align: center;
}

.ac {
  text-align: center;
}

.al {
  text-align: left;
}

.ar {
  text-align: right;
}

a.hover img {
  -webkit-transition: .4s;
  transition: .4s;
}

a.hover:hover img {
  opacity: 0.7;
}

#nav-dock {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 85px;
  right: 15px;
}

#nav-dock a {
  width: 50px;
  height: 50px;
  display: block;
  text-indent: -9999px;
  background-image: url(../img/btn_pagetop.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: cover;
}

#nav-dock a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  #nav-dock {
    display: none !important;
  }
}

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

.full_w_img img,
img.full_w_img {
  width: 100%;
  height: auto;
}

.serif {
  font-family: 'Noto Serif JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.fs_s {
  font-size: .8em;
}

#nav-top {
  width: 150px;
  height: 44px;
  position: fixed;
  bottom: 120px;
  right: 50px;
}

.uline_red {
  color: #C8161D;
  text-decoration: underline;
}

.text-s {
  font-size: 12px !important;
}

.text-ss {
  font-size: 10px !important;
}

.fx {
  display: flex;
}

.ls_s {
  letter-spacing: -.05em;
}

.ls_ss {
  letter-spacing: -.08em;
}

.ls_p {
  letter-spacing: .05em;
}

.ls_pp {
  letter-spacing: .08em;
}

strong {
  font-weight: 700;
  vertical-align: initial;
}

/* ===================================================================
//animation
=================================================================== */
.pageHddAnim {
  opacity: 0 !important;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.pageHddAnim.is_view {
  opacity: 1 !important;
}

.fadeAnim {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnim.is_view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadeAnimB {
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimB.is_view {
  opacity: 1;
}

.fadeAnimC {
  opacity: 1;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimC.is_hide {
  opacity: 0;
}

.fadeAnimRightIn {
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimRightIn.is_view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadeAnimLeftIn {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimLeftIn.is_view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadeAnimBlurIn {
  opacity: 0;
  filter: blur(10px);
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 800ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 800ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimBlurIn.is_view {
  opacity: 1;
  filter: blur(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.delay01 {
  -webkit-transition-delay: .1s !important;
  transition-delay: .1s !important;
}

.delay02 {
  -webkit-transition-delay: .2s !important;
  transition-delay: .2s !important;
}

.delay03 {
  -webkit-transition-delay: .3s !important;
  transition-delay: .3s !important;
}

.delay04 {
  -webkit-transition-delay: .4s !important;
  transition-delay: .4s !important;
}

.delay05 {
  -webkit-transition-delay: .5s !important;
  transition-delay: .5s !important;
}

.delay06 {
  -webkit-transition-delay: .6s !important;
  transition-delay: .6s !important;
}

.delay07 {
  -webkit-transition-delay: .7s !important;
  transition-delay: .7s !important;
}

.delay08 {
  -webkit-transition-delay: .8s !important;
  transition-delay: .8s !important;
}

.delay09 {
  -webkit-transition-delay: .9s !important;
  transition-delay: .9s !important;
}

.delay015 {
  -webkit-transition-delay: .15s !important;
  transition-delay: .15s !important;
}

.delay025 {
  -webkit-transition-delay: .25s !important;
  transition-delay: .25s !important;
}

.delay035 {
  -webkit-transition-delay: .35s !important;
  transition-delay: .35s !important;
}

.delay075 {
  -webkit-transition-delay: .75s !important;
  transition-delay: .75s !important;
}

.delay1 {
  -webkit-transition-delay: 1s !important;
  transition-delay: 1s !important;
}

.delay15 {
  -webkit-transition-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.animImg {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg * {
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: #000;
}

.animImg.is_view::before {
  -webkit-animation: animImgMask 1s ease;
  -moz-animation: animImgMask 1s ease;
  animation: animImgMask 1s ease;
}

@-webkit-keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

@-moz-keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

@keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

.animImg img {
  opacity: 0;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg.is_view img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/**********
//fadeText
**********/
.fadeText>span {
  opacity: 0;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.fadeText>span.is_view {
  opacity: 1;
}

.fadeText>span:nth-child(3n+1) {
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}

.fadeText>span:nth-child(2n) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

/* ===================================================================
//下層ページタイトルsection
=================================================================== */



/* ===================================================================
//btns
=================================================================== */
.btns {
  display: block;
  background: #000;
  font-size: 15px;
  text-align: center;
  color: #fff !important;
  padding: 15px;
  width: 100%;
  max-width: 170px;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

a:hover.btns {
  opacity: 0.7;
}

.btns i {
  margin-right: 5px;
}

.btns.noMobile {
  display: inline-block !important;
}

.mobile .btns.noMobile {
  display: none !important;
}

.fx_horizontal {
  display: flex;
  justify-content: center;
}

.u-mt40 {
  margin-top: 40px;
}

.p-notes {
  font-size: 10px;
  text-align: justify;
  margin-top: .5em;
}

/* 光らせるためのstyle */
.shine {
  position: relative;
  overflow: hidden;
  display: block;
}

/* 光の疑似要素 */
.shine::before {
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #afbec5;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -180%;
  opacity: 0.5;
  position: absolute;
}

/* 光の動き */
@keyframes shine {
  0% {
    left: -180%;
    opacity: 0;
  }

  70% {
    left: -180%;
    opacity: 0.5;
  }

  71% {
    left: -180%;
    opacity: 1;
  }

  100% {
    left: -20%;
    opacity: 0;
  }
}



/* ----------------------------------------------------------------------------------------------
	sp base
----------------------------------------------------------------------------------------------*/
@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: none;
  }

  body {
    min-width: 320px;
    font-feature-settings: "palt";
    font-size: 14px;
  }

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

  /*スマホで表示させないセレクタ*/
  .h_nav_pc,
  .h_nav02_pc,
  #gnavi_wrap {
    display: none;
  }

  .pc_hidden {
    display: block;
  }

  .sp_hidden {
    display: none;
  }

  .pc_hidden.u-inline-block {
    display: inline-block;
  }

  img.pc_hidden {
    display: inline-block;
  }

  .hidden-md {
    display: none;
  }

  .visible-md {
    display: block;
  }

  /* ----------------------------------------------------------------------------------------------
   sp_header ※スマホのみ表示のセレクタ
---------------------------------------------------------------------------------------------- */
  #header {
    position: fixed;
  }

  .header__inner {
    position: relative;
    margin: 0 auto;
    padding: 10px 0 0 10px;
    height: initial;
  }

  .is_scroll .header__inner {
    padding: 10px 0 0 10px;
  }

  .h__id img,
  .is_scroll .h__id img {
    height: 42px;
    width: auto;
  }

  .is_scroll .h__id {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  }

  .h__line_txt {
    display: none;
  }

  .gnavi_wrap {
    display: none;
  }

  .h_nav_pc {
    display: none;
  }

  .menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 50px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    z-index: 99999;
    background: #77c7de;
    /* border-radius: 100px; */
  }

  .sp-menu {
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
    z-index: 99990;
  }

  /* 開閉用ボタンがクリックされた時のスタイル */
  .open .sp-menu {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
    background: linear-gradient(90deg, #F3F8FA 0%, #DAEBF4 100%);
  }

  .bar {
    position: absolute;
    top: 26px;
    left: 14px;
    display: block;
    width: 32px;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
  }

  .bar.middle {
    top: 30px;
    opacity: 1;
  }

  .bar.bottom {
    top: 35px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  .open .menu-btn .bar.top {
    background: #fff;
    width: 30px;
    left: 17px;
    top: 24px;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  .open .menu-btn .bar.middle {
    opacity: 0;
  }

  .open .menu-btn .bar.bottom {
    background: #fff;
    width: 30px;
    top: 36px;
    left: 17px;
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }

  .sp-menu ul {
    vertical-align: middle;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    border-top: 1px solid #c6d3d3;
    margin: 90px 5% 0;
    flex-direction: column;
  }

  .sp-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #c6d3d3;
    display: flex;
  }

  .sp-menu li:nth-child(even) {
    border-right: none;
  }

  .sp-menu li a {
    display: flex;
    flex-direction: column;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    position: relative;
    width: 100%;
    padding: 13px 2%;
    align-items: flex-start;
  }

  .sp-menu li a span {
    font-size: 80%;
    letter-spacing: -.02em;
  }

  .sp-menu li a.is-uc {
    pointer-events: none;
  }

  .sp-menu li a:hover {
    color: #999;
  }

  .sp-menu_cta {
	  width: 90%;
	  margin-inline: auto;
	  background: linear-gradient(270deg, #76C7DD 0%, #ABDDF7 118.43%);
	  color: #fff;
	  text-align: center;
	  padding: 20px 0 20px;
	  display: flex;
	  flex-direction: column;
	  font-size: 25px;
	  margin-top: 30px;
	  gap: 5px;
	 }
	.sp-menu_cta i {
		line-height: 1.2;
		margin-right: 5px;
	}
	.tel a {
		display: flex;
		justify-content: center;
		color: #fff;
		font-weight: 700;
	}
	.fax {
		display: flex;
		justify-content: center;
		font-weight: 700;
	}
	
	.time {
		font-size: 14px;
	}
	.tel_txt02 {
	  margin-top: 12px;
	}
  .sp_img {
    width: 100%;
    height: auto;
  }

  .sp_img95 {
    width: 95%;
    height: auto;
  }

  .sp_img90 {
    width: 90%;
    height: auto;
  }

  .sp_img80 {
    width: 80%;
    height: auto;
  }

  .box_w960 {
    margin-left: 15px;
    margin-right: 15px;
  }
}


/*----------------------------------------------------------------------------------------------
	footer area
----------------------------------------------------------------------------------------------*/

.footer {
  width: 100%;
  text-align: justify;
  position: relative;
  padding: 46px 0 40px;
  margin-top: 100px;
  color: #6D6B6B;
}

.footer_inner {
  width: clamp(200px, 90%, 1280px);
  margin: 0 auto;
}

.copy {
  display: block;
  padding: 10px 10px;
  font-size: 12px;
  color: #6D6B6B;
  text-align: right;
  margin-top: 40px;
  border-top: 1px solid #E2E2E2;
}

.footer__logo {
  position: relative;
}

.footer_info_company {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin-top: 1.5em;
}
.footer_info_txt {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
  margin-top: 0.5em;
}



@media (max-width: 768px) {
  .footer {
    padding: 20px 0 40px;
    margin-top: 40px;
    color: #6D6B6B;
  }

  .copy {
    display: block;
    padding: 10px 10px;
    font-size: 11px;
    color: #6D6B6B;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #E2E2E2;
  }


  .footer__logo {
    width: 70%;
  }
  .footer_info_company {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    margin-top: 1.5em;
  }
  .footer_info_txt {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    margin-top: 0.5em;
  }

}

.is-uc {
  pointer-events: none;
  opacity: .5;
}

.main-bg {
  position: relative;
  overflow: hidden;
  background: 
    url(../img/bg-p01.svg) no-repeat right -8vw,
    url(../img/bg-p02.svg) no-repeat 10vw 40vw,
    url(../img/bg-p03.svg) no-repeat 40vw 127vw,
    url(../img/bg-p04.svg) no-repeat 0 165vw,
    url(../img/bg-p05.svg) no-repeat 44vw 222vw,
    url(../img/bg-p06.svg) no-repeat 0 323vw,
    url(../img/bg-p07.svg) no-repeat right 384vw,
    url(../img/bg-p08.svg) no-repeat 0 452vw;
  background-size: 
    55%,
    42.3%,
    22.2%,
    55.7%,
    55.7%,
    63.4%,
    52.7%,
    20.7%;
}

.l-container {
  width: clamp(200px, 90%, 1280px);
  margin-inline: auto;
  position: relative;
}

.sec_cta {
  background: url(../img/home/page_cta_bg.jpg);
  background-size: cover;
  background-position: center center;
  padding: 60px 0;
  margin-top: 120px;
}

.cta_title {
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 15px rgba(18, 108, 157, 0.25);
  font-family: Raleway;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
}

.cta_title .ttl-jp {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
}

.cta_txt {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  margin-top: 2em;
  text-shadow: 0 0 15px rgba(18, 108, 157, 0.25);
}

.cta_box {
  width: clamp(200px, 90%, 978px);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  margin-top: 2em;
  background: #fff;
  padding: 20px;
}

.cta_box_in {
  flex: 1;
  padding: 20px;
  text-align: center;
}
.cta_box_in:nth-child(1) {
  border-right: 1px solid #D1D1D1;
}

.cta_box_in_txt {
  color: #6D6D6D;
  font-weight: 700;
  margin-bottom: .7em;
}

.cta_box_in_btn {
  width: clamp(100px, 90%, 320px);
  display: block;
  position: relative;
  margin-inline: auto;
  border-radius: 100px;
  background: linear-gradient(90deg, #47A1D2 0%, #2987EA 100%);
  color: #fff;
  padding: 15px 20px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.cta_box_in_btn::after {
  content: '→';
  position: absolute;
  right: 15px;
  width: 1.4em;
  height: 1.4em;
  -webkit-transition: all .5s;
  transition: all .5s;
}

a.cta_box_in_btn {
  color: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

a.cta_box_in_btn:hover {
  filter: brightness(1.2);
}

a.cta_box_in_btn:hover::after {
  right: 10px;
}

.cta_box_in_tel {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg, #47A1D2 0%, #2987EA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -.2em;
}

.cta_box_in_tel a {
  font-weight: 700;
  line-height: 1;
  display: flex;
  gap: 5px;
  justify-content: center;
}

.cta_box_in_time {
  color: #6D6D6D;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-top: 0.5em;
}

@media (max-width: 768px) {
  .sec_cta {
    background: url(../img/home/page_cta_bg.jpg);
    background-size: cover;
    background-position: center center;
    padding: 40px 0;
    margin-top: 60px;
  }

  .cta_title {
    color: #FFF;
    text-align: center;
    text-shadow: 0 0 15px rgba(18, 108, 157, 0.25);
    font-family: Raleway;
    font-size: 46px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
  }

  .cta_title .ttl-jp {
    display: block;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
  }

  .cta_txt {
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    color: #FFF;
    text-align: center;
    margin-top: 2em;
    text-shadow: 0 0 15px rgba(18, 108, 157, 0.25);
  }

  .cta_box {
    width: clamp(200px, 90%, 978px);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    margin-top: 2em;
    background: #fff;
    padding: 10px 20px;
    flex-direction: column;
  }

.service_cta .cta_box {
    padding: 10px 0;
}

  .cta_box_in {
    flex: 1;
    padding: 20px;
    text-align: center;
  }
  .cta_box_in:nth-child(1) {
    border-right: none;
    border-bottom: 1px solid #D1D1D1;
  }

  .cta_box_in_txt {
    color: #6D6D6D;
    font-weight: 700;
    margin-bottom: .7em;
  }

  .cta_box_in_btn {
    width: clamp(100px, 90%, 320px);
    display: block;
    position: relative;
    margin-inline: auto;
    border-radius: 100px;
    background: linear-gradient(90deg, #47A1D2 0%, #2987EA 100%);
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  .cta_box_in_btn::after {
    content: '→';
    position: absolute;
    right: 15px;
    width: 1.4em;
    height: 1.4em;
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  a.cta_box_in_btn {
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  a.cta_box_in_btn:hover {
    filter: brightness(1.2);
  }

  a.cta_box_in_btn:hover::after {
    right: 10px;
  }

  .cta_box_in_tel {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(90deg, #47A1D2 0%, #2987EA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -.2em;
  }

  .cta_box_in_tel a {
    font-weight: 700;
    line-height: 1;
    display: flex;
    gap: 5px;
    justify-content: center;
  }

  .cta_box_in_time {
    color: #6D6D6D;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    margin-top: 0.5em;
  }
}