@charset "utf-8";

/* ------------------
 reset.css
------------------ */
@charset "utf-8";*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){color-scheme:normal;scroll-behavior:smooth;cursor:auto;-moz-tab-size:2;tab-size:2;-webkit-tap-highlight-color:transparent;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word;font-size:62.5%;line-height:1.5;margin:0;padding:0}@supports not (min-block-size:100dvb){:where(html){block-size:100%}}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){block-size:100%;block-size:100dvb;line-height:1.5;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border:none;background:none}:where(a){text-underline-offset:.4ex;text-decoration:none}:where(ul,ol,li){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(address){font-style:normal}:where(table){border-collapse:collapse}:where(:focus-visible){outline:2px solid var(--focus-color,Highlight);outline-offset:2px}:where(.visually-hidden:not(:focus,:active,:focus-within,.not-visually-hidden)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

/* 変数 */
:root{
  /* 文字 */
  --font-14: 1.4rem;
  --main-txt: 1.6rem;
  --font-20: 2rem;
  --font-24: 2.4rem;
  --font-32: 3.2rem;
  --font-42: 4.2rem;
  --font-64: 6.4rem;
  --title-font: "Labrada";

  /* コンテンツ幅 */
  --contents-w: 1200px;

  /* 色 */
  --main-color: #0190E3;
  --main-color-rgba: rgba(1, 144, 227);
  --sub-color: #F6FF77;
  --txt-color: #002D47;
  --gray: #9E9E9E;
  --white: #fff;
  --gradient01: linear-gradient(90deg, #0390E3 0%, #47CAFE 100%), #D9D9D9; /* ヘッダーお問い合わせ */
  --gradient02: linear-gradient(90deg, #0390E3 0%, #47CAFE 100%), #D9D9D9; /* フッターお問い合わせ */

  /* 余白 */
  --space-60: 60px;
  --space-30: 30px;
  --space-20: 20px;
}
@media screen and (max-width: 767px) {
  :root {
    /* 文字サイズ */
    --font-14: 1.3rem;
    --main-txt: 1.5rem;
    --font-20: 1.8rem;
    --font-24: 2rem;
    --font-32: 2.8rem;
    --font-42: 3rem;
    --font-64: 3.2rem;

    /* 余白 */
    --space-60: 30px;
    --space-30: 20px;
    --space-20: 10px;
  }
}

body{
  font-family: "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: var(--main-txt);
  color: var(--txt-color);
  line-height: 2;
}

:where(h1,h2,h3,h4,h5) {
  line-height: 1.5;
}

html {
	scroll-padding-top: 95px;
  @media screen and (max-width: 767px) {
    scroll-padding-top: 90px;
  }
}

/*コンポーネント*/
.mt_0{margin-top: 0px;}
.mt_10{margin-top: 10px;}
.mt_20{margin-top: 20px;}
.mt_30{margin-top: 30px;}
.mt_40{margin-top: 40px;}
.mt_50{margin-top: 50px;}
.mt_60{margin-top: 60px;}
.mt_70{margin-top: 70px;}
.mt_80{margin-top: 80px;}
.mt_90{margin-top: 90px;}
.mt_100{margin-top: 100px;}
.mt_110{margin-top: 110px;}

.mb_0{margin-bottom: 0px;}
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_50{margin-bottom: 50px;}
.mb_60{margin-bottom: 60px;}
.mb_70{margin-bottom: 70px;}
.mb_80{margin-bottom: 80px;}
.mb_90{margin-bottom: 90px;}
.mb_100{margin-bottom: 100px;}
.mb_110{margin-bottom: 110px;}

/* インデント */
.indent{
  text-indent: -1em;
  padding-left: 1em;
}
.indent_02{
  text-indent: -2em;
  padding-left: 2em;
}
.indent_03{
  text-indent: -3em;
  padding-left: 3em;
}
.indent_04{
  text-indent: -4em;
  padding-left: 4em;
}
.indent_05{
  text-indent: -5em;
  padding-left: 5em;
}

/* テキストリンク */
.txt_link{
  color: var(--txt-color);
  text-decoration: underline;
  &:hover{
    text-decoration: none;
  }
}

a:hover{
  opacity: 0.7;
}

/* スマホ閲覧時のみ表示 */
.sp_block{display: none;}
/* PC閲覧時のみ表示 */
.pc_block {display: block;}
@media screen and (max-width: 767px){
  .sp_block{display: block;}
  .pc_block {display: none;}
}

/* ------------------
 header
------------------ */
header{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  z-index: 99;
  width: calc(100% - 20px);
  height: 75px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(23, 149, 234, 0.53);
  background: rgba(255, 255, 255, 0.9);
  @media screen and (max-width: 767px) {
    height: 50px;
    top: 10px;
  }
}
.hd_inner{
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo{
  height: 100%;
  a{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
    @media screen and (max-width: 767px) {
      padding-left: 20px;
    }
  }
  @media screen and (max-width: 767px) {
    max-width: 150px;
  }
}
.pc_nav{
  height: 100%;
  display: flex;
}
.pc_nav--list{
  height: 100%;
  display: flex;
}
.pc_nav--item{
  height: 100%;
  a{
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--txt-color);
    font-weight: 500;
    transition: 0.3s;
    &:hover{
      color: var(--main-color);
      opacity: 1;
      transition: 0.3s;
    }
  }
}
.hd_cont{
  border-radius: 0 10px 10px 10px;
  background: var(--gradient01);
  width: 114px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
  margin-left: 20px;
  line-height: 1.5;
  @media screen and (max-width: 767px) {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
    gap: 5px;
    .hd_cont_fig{
      width: 20px;
    }
  }
}

/* 見出し */
.cmn_heading--en{
  color: var(--main-color);
  font-family: var(--title-font);
  font-weight: 400;
  font-size: var(--font-64);
  line-height: 1.75;
}
.cmn_heading--jp{
  font-size: var(--font-20);
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--main-color);
}

/* page_visual */
.page_visual{
  min-height: 390px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/page_visual.webp) no-repeat center/cover;
  padding-top: 20px;
  @media screen and (max-width: 767px){
    min-height: 300px;
  }
}
.page_visual_title{
  max-width: var(--contents-w);
  width: 90%;
}
.page_visual_title--en{
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 9.6rem;
  line-height: 1.5;
  background-image: linear-gradient(90deg, #FFF 0%, #A1FFE4 69.23%, #F6FF77 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-name: gradationTextAnimation;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  @media screen and (max-width: 767px){
    font-size: min(5rem, 13vw);
  }
}
.page_visual_title--jp{
  font-size: var(--font-20);
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--white);
  margin-top: var(--space-20);
}
@keyframes gradationTextAnimation{
  0%{
      background-position: 0 0;
  }
  50%{
      background-position: 100% 0;
  }
  100%{
      background-position: 0 0;
  }
}

/* パンくずリスト */
.breadcrumb {
  max-width: var(--contents-w);
  width: 90%;
  margin: var(--space-20) auto;
}
.breadcrumb_list {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 15px;
  line-height: 1.5;
  @media screen and (max-width: 767px){
    width: auto;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
.breadcrumb_item {
  color: var(--txt-color);
  a {
    text-decoration: underline;
		color: var(--txt-color);
    &:hover {text-decoration: none;}
  }
  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 15px;
  }
  &:has(a[href])::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
		border-top: 1px solid var(--txt-color);
    border-right: 1px solid var(--txt-color);
    transform: rotate(45deg);
  }
  @media screen and (max-width: 767px){
    white-space: nowrap;
    font-size: var(--font-14);
  }
}

/* cmn_more */
.cmn_more{
  max-width: 470px;
  width: 100%;
  height: 70px;
  background: var(--txt-color);
  border-radius: 10px;
  a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-20);
    padding: 0 var(--space-30);
    color: var(--white);
    position: relative;
    line-height: 1.5;
    transition: 0.3s;
    &::after{
      content: "";
      background: url(../img/right_arrow.svg) no-repeat center/cover;
      width: 24px;
      height: 24px;
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      @media screen and (max-width: 767px){
        right: 10px;
      }
    }
    &:hover{
      background: var(--main-color);
      transition: 0.3s;
      opacity: 1;
      border-radius: 10px;
    }
  }
}

/* page_bot_bg */
.page_bot_bg{
  height: 500px;
  width: 100%;
  position: relative;
  margin-top: var(--space-60);
  @media screen and (max-width: 767px){
    height: 200px;
  }
  &::before{
    content: "";
    background: url(../../common/img/top_wave.webp) no-repeat center/cover;
    width: 100%;
    height: 227px;
    background-size: 100% 100%;
    position: absolute;
    top: -1px;
    left: 0;
    @media screen and (max-width: 767px){
      height: 96px;
    }
  }
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* footer */
.copyright{
  text-align: center;
  color: var(--gray);
  padding-bottom: 10px;
  line-height: 1.5;
  padding: var(--space-30) 0;
  @media screen and (max-width: 767px){
    padding: 10px 5%;
  }
}

/* ------------------
  Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 50px;
  border-radius: 50%;
  background: var(--main-color-rgba);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -10;
}
#backtop::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-25%) rotate(-45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin-inline: auto;
}
#backtop.active {
  opacity: 0.6;
  visibility: visible;
  z-index: 50;
}

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* iPad調整用 */
@media screen and (orientation: portrait) and (min-width: 768px){
}

@media screen and (max-width: 767px) {
  body {width: 100%;}

  .pc_nav--list{
    display: none;
  }
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px!important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  .header {
    position: absolute;
  }
  #backtop {
    display: none;
  }
}
@page {
  size: A4;margin: 5px;
}