@charset "utf-8";

*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role='list'],ol[role='list']{list-style:none}body{min-height:100vh;line-height:1.5}h1,h2,h3,h4,button,input,label{line-height:1.1}h1,h2,h3,h4{text-wrap:balance}a:not([class]){text-decoration-skip-ink:auto;color:currentColor}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}textarea:not([rows]){min-height:10em}:target{scroll-margin-block:5ex}

.invisible-style{
  display: none!important;
}

body{
  position: relative;
  font-size:16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  word-break: auto-phrase;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  body{
    font-size: 14px;
    overflow-x: hidden;
  }
}

.accent-font{
  font-family: "Montserrat", serif;
  font-weight: 500;
  font-style: normal;
}

h1{
  margin: 0;
  font-weight: 500;
}

h2{
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

h3{
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

h4{
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

h5{
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

p{
  margin:0;
  line-height: 1.5;  
}

.sp{
  display:none;
}

a{
  color: #000;
  transition: all .5s;
}
  
a:hover{
	text-decoration: none;
  	color :#000;
}

img{
  width:100%;
  object-fit: contain;
}

h1{
}

iframe{
  border: none;
  width: 100%;
  max-height: 420px;
}

.container{
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0!important;
  margin: 80px 0;
}

@media screen and (max-width: 768px) {
  .container{
    margin: 60px 0 0;
  }
}

/* ========================================
   LOWER FV
======================================== */

.lower-fv{
  position: relative;
  width: 100%;
  height: clamp(260px, 28vw, 420px);
  overflow: hidden;
  background: #e9f4fd;
}

.lower-fv__image{
  position: absolute;
  inset: 0;
}

.lower-fv__image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lower-fv__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06);
}

.lower-fv__content{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(100% - 120px), 1500px);
  height: 100%;
  margin: 0 auto;
}

.lower-fv__title{
  display:inline-block;
  margin:0;
  padding:8px 16px;

  color:#0474c7;
  background:#fff;
  border:2px solid #0474c7;
  border-radius:3px;

  font-size:clamp(32px,3.2vw,54px);
  line-height:1.35;
  letter-spacing:.04em;
}

.js-char-title-char{
    display:inline-block;
    opacity:0;
    transform:translateY(20px);
}

.is-show .js-char-title-char{
    animation:titleFade .6s forwards;
    animation-delay:var(--char-delay);
}

@keyframes titleFade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ========================================
   BREADCRUMB
======================================== */

.lower-breadcrumb{
  background: #ffffff;
  border-bottom: 1px solid #d9e7f2;
}

.lower-breadcrumb__inner{
  width: min(calc(100% - 120px), 1500px);
  margin: 0 auto;
  padding: 14px 0;
}

.lower-breadcrumb__inner,
.lower-breadcrumb__inner #breadcrumbs{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.lower-breadcrumb__inner a,
.lower-breadcrumb__inner p,
.lower-breadcrumb__inner span{
  margin: 0;
  color: #000000;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
}

.lower-breadcrumb__inner a:hover{
  color: #0474c7;
}

/* ========================================
   1024px以下
======================================== */

@media screen and (max-width: 1024px){
  .lower-fv{
    height: clamp(240px, 36vw, 340px);
  }

  .lower-fv__content,
  .lower-breadcrumb__inner{
    width: calc(100% - 80px);
  }
}

/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px){
  .lower-fv{
    height: 250px;
  }

  .lower-fv__content{
    width: calc(100% - 40px);
  }

  .lower-fv__title{
    padding: 6px 12px;
    border-width: 1px;
    font-size: clamp(26px, 7vw, 34px);
  }

  .lower-breadcrumb__inner{
    width: calc(100% - 40px);
    padding: 10px 0;
  }

  .lower-breadcrumb__inner a,
  .lower-breadcrumb__inner p,
  .lower-breadcrumb__inner span{
    font-size: 11px;
  }
}

/* ========================================
   Common Button
======================================== */

.c-button {
  --button-color: #0474c7;
  --button-bg: #0474c7;
  --button-text: #ffffff;

  position: relative;

  display: inline-flex;
  align-items: center;

  width: 220px;
  min-height: 56px;
  margin-top: 2rem;
  padding: 0 56px 0 22px;

  color: var(--button-text) !important;
  background: var(--button-bg);
  border: 1px solid var(--button-color);
  border-radius: 6px;

  text-decoration: none;

  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.c-button p {
  margin: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 600;
}

/* 丸 */

.c-button::before {
  content: "";

  position: absolute;
  top: 50%;
  right: 18px;

  width: 10px;
  height: 10px;

  background: #ffffff;
  border-radius: 50%;

  transform: translateY(-50%);

  transition:
    width 0.28s ease,
    height 0.28s ease,
    background-color 0.28s ease;
}

/* 矢印 */

.c-button::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 28px;

  width: 6px;
  height: 6px;

  border-top: 2px solid var(--button-color);
  border-right: 2px solid var(--button-color);

  opacity: 0;

  transform:
    translateY(-50%)
    rotate(45deg)
    scale(0.4);

  transition:
    opacity 0.2s ease 0.1s,
    transform 0.25s ease 0.1s;
}

/* hover */

.c-button:hover {
  //color: var(--button-color) !important;
  //background: #ffffff;
  transform: translateY(-2px);
}

/* 白い丸を大きくする */

.c-button:hover::before {
  width: 24px;
  height: 24px;
  background: #ffffff;
}

/* 青い矢印を表示 */

.c-button:hover::after {
  opacity: 1;

  transform:
    translateY(-50%)
    rotate(45deg)
    scale(1);
}

/* ========================================
   White Button
======================================== */

.c-button--white{
  --button-color: #0474c7;
  --button-bg: #ffffff;
  --button-text: #0474c7;
}

/* hover */

.c-button--white:hover{
  background: #0474c7;
  color: #ffffff !important;
}

/* 通常時の丸 */

.c-button--white::before{
  background: #0474c7;
}

/* hover時の丸 */

.c-button--white:hover::before{
  background: #ffffff;
}

/* 通常時の矢印 */

.c-button--white::after{
  border-color: #0474c7;
}

/* hover時の矢印 */

.c-button--white:hover::after{
  border-color: #0474c7;
}

.form-btn{
    position: relative;
    display: block;
    height: auto;
    width: fit-content;
    padding: 1rem;
    font-size: 1.25rem;
    color: #fff;
    margin: 2rem auto;
    border: 1px solid #fff;
  min-width: 200px;
}

.form-btn p{
  margin: 0;
  line-height: 1;
}
.form-btn:hover{
    background-color: #EBC551;
    color: #fff;
}



@media screen and (max-width: 1024px) {
  .content-wrap{
    position: relative;
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .sp{
    display:block;
  }
  .pc{
  display:none;
  }
  body{
    font-size:14px;
  }

}