/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
:root {
  --color-base: #FFFFFF;
  --color-background:#112F85;
  --color-shadow : #CED4DC;

  --color-text: #3F3F3F;
  --color-main: #066A8D;
  --color-sub: #E8EFF5;;
  --color-accent: #FF7900;
  --color-hover : #066A8D16;
}

html {
  font-size:62.5%;
  scroll-behavior: smooth;
}
body {
  position: relative;
  font-size: 1.6rem;
  font-weight:500;
  font-family: "Noto Sans JP" , "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", 'Noto Sans JP' , "メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-feature-settings: "palt";
  color: #555555;
  background-color:#F2F2F2;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP" , "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro" , 'Noto Sans JP' , "メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}

a {
  color:inherit;
  text-decoration: none;
  transition: opacity 0.15s ease-out;
}

.inner{
  width: 100%;
  max-width: calc(1200px + 4.0rem);
  padding-right: 2.0rem;
  padding-left: 2.0rem;
  margin-right: auto;
  margin-left: auto;
}
.inner.width{
  max-width: 100%;
  padding:0;
}



p,
li,
dt,
dd,
td,
td{
  font-size:1.6rem;
}

/* OBJECT FIT */
.of {
  line-height: 1
}
.of img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%
}
figcaption{
  line-height:1.714;
  font-weight:700;
}
picture {
  display: block;
  line-height: 1
}
a[onclick] {
  cursor: pointer
}
address {
  font-style: normal
}

.rounded{
  border-radius:25px;
}

/* FONT FAMILY*/
/*

/* TEXT SIZE */
.catch {
  font-size:1.8rem;
  line-height: 1.88;
  font-weight:700;
}
.read {
  font-size:1.6rem;
  line-height: 1.79;
  font-weight:700;
}
.caption{
  font-size:1.6rem;
  line-height: 1.88;
  font-weight:700;
}
.text {
  font-size:1.4rem;
  line-height: 2.4;
  font-weight:500;
}
.title span,
.catch span,
.read span,
.text span,
.caption span{
  display: inline-block;
}
@media screen and (min-width:769px) {
  .catch {
    font-size:2.8rem;
  }
  .read {
    font-size:2.4rem;
  }
  .caption{
    font-size:2.0rem;
  }
  .text {
    font-size:1.8rem;
  }

}

[data-scroll-anchor]{
  scroll-margin-top:140px;
}
@media only screen and (min-width: 769px) {
  [data-sc-sp] {
    display: none !important
  }
}
@media only screen and (max-width: 768px) {
  [data-sc-pc] {
    display: none !important
  }
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/
.header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:100;
}
.header .wrapper{
  height:55px;
  background-color:#FFFFFF;
}
.header .wrapper_inner{
  width: 100%;
  max-width: calc(1200px + 4.0rem);
  height: 100%;
  padding-right: 2.0rem;
  padding-left: 2.0rem;
  margin-right: auto;
  margin-left: auto;
}
.header .header_container{
  width:100%;
  height:100%;
  display:grid;
  align-items:center;
  margin:auto;
}
.header .header_container .header_block{
  display: grid;
  grid-template-columns: auto auto;
}
.header .header_container .contact_block{
  display: flex;
  justify-content: flex-end;
  align-items:center;
  gap:1em;
}
.header .header_logo{
  width:256px;
}
.header .header_logo a span:nth-child(2){
  margin-top:5px;
}
.header .header_container .contact_block .phone{
  display:none;
}
.header .header_container .contact_block .link{
  display:none;
}
.header .header_menu{
  display:none;
}
@media only screen and (min-width: 993px) {
  .header .wrapper{
    height:125px;
  }
  .header .header_container .contact_block .phone{
    display: block;
  }
  .header .header_container .contact_block .link{
    display: block;
  }
  .header .header_menu{
    display: block;
  }
  .header .header_menu_list{
    display:grid;
    grid-template-columns: repeat(5 , 1fr);
    margin:auto;
  }
  .header .header_menu_list li{
    text-align:center;
    border-right:1px solid #CCCCCC;
  }
  .header .header_menu_list li:first-child{
    border-left:1px solid #CCCCCC;
  }
  .header .header_menu_list li a {
    position:relative;
    display: block;
    font-size:1.8rem;
    letter-spacing: 0.01em;
    transition: 0.3s ease-in-out;
    color: #282828;
    padding-top:5px;
    padding-bottom:5px;
  }
  .header .header_menu_list li a:hover{
    color:#FFFFFF;
    background:var(--color-main);
  }
}


/*========= ナビゲーションのためのCSS ===============*/
.header .spnav{
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 10;
  opacity: 0;
  overflow-x: hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  pointer-events: none;
  background-color: #FFFFFF;
  padding: 20px;
  transition:0.5s cubic-bezier(0.17, 0.84, 0.44, 1);
}

.header .spnav.panelactive{
  opacity: 1;
  pointer-events:all;
}

.header .spnavi_menu .spmenu_list{
  width: 100%;
  margin: 0 auto 40px;
}
.header .spnavi_menu .spmenu_list > li{
  position:relative;
  border-bottom:1px solid #CED4DC;
  margin-bottom:1em;
  padding-bottom:1em;
}
.header .spnavi_menu > ul > li a{
  display:block;
  font-size:1.6rem;
}
.header .spnavi_menu .spnavi_submenu{
  display:flex;
  flex-wrap:wrap;
  margin-top:1em;
}
.header .spnavi_menu .spnavi_submenu > li{
  position:relative;
  display: flex;
  align-items:center;
  width:100%;
  transition-duration: 0.4s;
  margin-bottom:0.5em;
  padding-left:1.5em;
}
.header .spnavi_menu .spnavi_submenu > li:hover{
  color:var(--color-hover);
}
.header .spnavi_menu .spnavi_submenu > li::before{
  position:absolute;
  top:0;
  left: 0;
  font-size: 1em;
  font-weight: 600;
  content: "→";
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
  z-index: 9999;
  top:5px;
  right: 5px;
  cursor: pointer;
  width: 50px;
  height:50px;
}
.openbtn span{
  width: 45%;
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #000000;
}
.openbtn span:nth-of-type(1) {
  top:15px;
}
.openbtn span:nth-of-type(2) {
  top:23px;
}
.openbtn span:nth-of-type(3) {
  top:31px;
}
.openbtn.active span:nth-of-type(1) {
  width: 30%;
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  width: 30%;
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
}
@media only screen and (min-width: 993px) {
  .openbtn{
    display: none;
  }
}

.acd-check{
  display: none;
}
.acd-label{
  position: absolute;
  top:0;
  right:0;
  display: flex;
  align-items:center;
  background: #FFFFFF;
  color: #000000;
  border-radius:10px;
}
.acd-label:after{
  background: #FFFFFF;
  display: flex;
  align-items:center;
  width:auto;
  height:100%;
  content:'▼';
  position: absolute;
  right: 0;
  top: 0px;
  border-left:1px solid #CED4DC;
  padding: 10px 20px;
}
.acd-content{
  background:#FFFFFF;
  border-radius:0 0 10px 10px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: .4s;
  padding:0;
}

.acd-check:checked + .acd-label:after{
  transform:rotateX(180deg);
  transition-duration: .4s;

}
.acd-check:checked + .acd-label + .acd-content{
  height: auto;
  opacity: 1;
}


/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer .wrapper{
  background:var(--color-main);
  border-top:1px solid #E3E3E3;
  padding-top:30px;
  padding-bottom:30px;
}
.footer .wrapper_inner{
  margin-right: auto;
  margin-left: auto;
  padding-right: 2.0rem;
  padding-left: 2.0rem;
  height:100%;
}
.footer .footer_menu_list{
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  gap:1em 2em;
  margin-bottom:30px;
}
.footer .footer_menu_list li{
  width:100%;
}
.footer .footer_menu_list li a {
  position:relative;
  font-size:1.8rem;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  padding-top:5px;
  padding-bottom:5px;
}
.footer .footer_menu_list li a span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.02rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .4s cubic-bezier(.77, 0, .175, 1);
  transition: -webkit-transform .4s cubic-bezier(.77, 0, .175, 1);
  transition: transform .4s cubic-bezier(.77, 0, .175, 1);
  transition: transform .4s cubic-bezier(.77, 0, .175, 1), -webkit-transform .4s cubic-bezier(.77, 0, .175, 1)
}
.footer .footer_menu_list li a:hover span:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left top;
  transform-origin: left top
}
@media only screen and (min-width: 769px) {
  .footer .wrapper{
    padding-top:60px;
    padding-bottom:60px;
  }
  .footer .footer_menu_list {
    margin:0;
  }
  .footer .footer_menu_list li{
    width:auto;
  }
}

.copyright{
  color: #FFFFFF;
  background:#000000;
  padding-top:0.5em;
  padding-bottom:0.5em;
}
.copyright .text{
  font-size:1.0rem;
  font-weight:700;
  text-align:center;
}
/*--------------------------------------------------------------
/* page-top
--------------------------------------------------------------*/
#page-top {
  position: fixed;
  width:35px;
  height:35px;
  color:#FFFFFF;
  background-color:#000000;
  right: 15px;
  bottom: 75px;
  z-index: 2;
  opacity: 0;
  transform: translateY(150px);
}
#page-top a{
  width:100%;
  height:100%;
  display: flex;
  justify-content: center;
  align-items:center;
  font-size:150%;
  transition:all 0.3s;
}
#page-top a:hover{
  opacity: 0.75;
}
#page-top a span{
  display:block;
  font-weight:700;
  text-align:center;
  color:#000;
}
#page-top i{
  position:absolute;
  top:50%;
  bottom:0;
  width: 10px;
  height: 10px;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  transform: translateY(-50%) rotate(-45deg);
}

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}


@media (min-width: 992px) {
  #page-top {
    width:50px;
    height:50px;
    right: 25px;
    bottom: 25px;
  }
  #page-top a{
    font-size:200%;
  }
}

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

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(150px);
  }
}


/* COMMON PARTS*/
.tag a {
  position:relative;
  color: #282828;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  padding-top: 5px;
  padding-bottom: 5px;
}
.tag a span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.02rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #282828;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .4s cubic-bezier(.77, 0, .175, 1);
  transition: -webkit-transform .4s cubic-bezier(.77, 0, .175, 1);
  transition: transform .4s cubic-bezier(.77, 0, .175, 1);
  transition: transform .4s cubic-bezier(.77, 0, .175, 1), -webkit-transform .4s cubic-bezier(.77, 0, .175, 1)
}
.tag a:hover span:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left top;
  transform-origin: left top
}

/* COMMON LAYOUT*/
.page_visual{
  background:#F9F7F5;
  padding-top:50px;
}

.page_title{
  display: grid;
  place-items: center;
  height:200px;
}
.page_title .title{
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  font-style: normal;
  color:#555555;
  line-height:1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page_title .title span{
  display: block;
}
.page_title .title[data-title]::after{
  content: attr(data-title);
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight:700;
  font-style: normal;
  color:var(--color-accent);
  white-space: pre;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform:capitalize;
}
@media (min-width: 769px) {
  .page_visual{
    padding-top:125px;
  }
  .page_title .title{
    font-size:3.2rem;
  }
}
.sec_title{
}
.sec_title .title{
  font-size: 2.4rem;
  font-weight: 700;
  font-style: normal;
  line-height:1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-bottom:4px solid var(--color-main);
  margin-bottom:1em;
  padding-bottom:0.4em;
}
.page_contents .sec_title .title[data-title]{
  color: var(--color-main);
  border-bottom:none;
  margin-bottom:0.5em;
}
.page_contents .sec_title .title[data-title]::after{
  content: attr(data-title);
  display: block;
  font-size: 1.6rem;
  font-weight:700;
  font-style: normal;
  color:var(--color-accent);
  white-space: pre;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform:capitalize;
}

.sec_title .title .underline{
  border-bottom: 4px solid #066A8D;
  padding-bottom:15px;
}

@media (min-width: 769px) {
  .sec_title .title{
    font-size:3.2rem;
  }
}

.inline_block {
  display: inline-block;
}

.team_item a img{
  transition: all 0.1s 0.1s ease-in-out;
}
.team_item a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0.8;
}

/* BUTTON */
.btn01{
  width:200px;
  height:50px;
  position: relative;
  display: grid;
  place-items: center;
  font-size:2.4rem;
  font-weight: 700;
  font-style: normal;
  text-align:center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color:#FFFFFF;
  background-color:var(--color-main);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.btn01:hover {
  background: var(--color-accent);
}

.btn02 {
  width:280px;
  height:50px;
  position: relative;
  display: grid;
  place-items: center;
  text-align:center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border:2px solid var(--color-main);
  color:#FFFFFF;
  background-color:var(--color-main);
  border-radius:50px;
}
.btn02 > span {
  font-size:1.6rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1;
}
.btn02:hover{
  color:var(--color-main);
  background-color:#FFFFFF;
}
.btn02::after{
  position:absolute;
}
@media screen and (min-width: 769px) {
  .btn02 > span {
    font-size:2.0rem;
  }
}
.btn03{
  width:190px;
  height:53px;
  position: relative;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-style: normal;
  text-align:center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius:100vw;
  color:#FFFFFF;
  margin-top: 50px;
  background-color:#C49C77;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.btn03:hover {
  background: #82D0C3;
}
.btn03::after{
  content:"→";
  position: absolute;
  top: 50%;
  right: 1.3em;
  transform:translateY(-50%);
}

.grecaptcha-badge {
  bottom: 100px !important;
}
@media screen and (min-width:769px) {
  .grecaptcha-badge {
    bottom: 200px !important;
  }
}

.breadcrumbs{
  margin-top:10px;
}
.contact_block .phone a{
  font-size: 1.4rem;
  font-weight: 700;
}
.contact_block .phone a .number{
  font-size: 2.4rem;
  margin-left:0.25em;
}
