/*
Theme Name:lexa-theme-child
Template:lexa-theme
Theme URI: https://lexa.co.jp
Author: Lexa inc.
Author URI: https://lexa.co.jp
Version: 1.0.0
*/

/**********************
* ブレイクポイント
* 560px/960px
**********************/


/*********************
ROOT
**********************/
:root {
   --text-main: #333;
   --text-sub: rgb(42 92 130 / 18%);

   --accent-blue: #275983;
   --accent-red: #D9602B;

   --font-jp: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
   --font-kaisei: 'Kaisei Opti', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
   --font-sarah: "sarah-script", 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;

   --container-side: 3%;
   --container: calc( 1920px + var(--container-side)*2 );
   --container-l: calc( 1200px + var(--container-side)*2 );
   --container-m: calc( 1100px + var(--container-side)*2 );
   --container-s: calc( 800px + var(--container-side)*2 );
}


/*********************
BASE
*********************/
html {
   font-size: 62.5%;
}

body {
   color: var(--text-main);
   font-family: var(--font-jp);
   font-size: 1.6rem;
   letter-spacing: .05em;
   line-height: 1.9;
}

section {
   position: relative;
   width: 100%;
}

h1,
h2,
h3 {
   font-family: var(--font-kaisei);
   font-weight: normal;
}

p {
   margin: 0 0 1em;
}

a {
   color: var(--accent-blue);
   transition: all 0.3s;
}

img {
   height: auto;
   border: none;
   line-height: 0;
   vertical-align: bottom;
}

ol,
ul {
   padding: 0;
}

ol li {
   margin: 0 0 1em 1.5em;
}

ul li {
   margin: 0 0 1em 1.2em;
}

dl,
dt,
dd {
   margin: 0;
}

@media only screen and (min-width: 961px) {
   a:hover {
      opacity: 0.7;
   }
}

@media only screen and (max-width: 560px) {
   body {
      font-size: 1.5rem;
   }
}


/*********************
GENERAL
*********************/

/*FONT*/
.font-en {
   font-family: var(--font-sarah);
}

.uppercase {
   text-transform: uppercase;
}

.line-heighter,
.line-heighter * {
   line-height: 2.1;
}

.line-heighter p {
   margin: 0 0 2em;
}

@media only screen and (max-width: 560px) {

}


/*ALIGN*/
.center {
   text-align: center;
}

.center > * {
   margin-left: auto;
   margin-right: auto;
}

.left {
   text-align: left;
}

.right {
   text-align: right;
}


/*FLEX*/
.flex {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

.flex-reverse {
   flex-direction: row-reverse;
}

.nowrap {
   flex-wrap: nowrap;
}

.space-around {
   justify-content: space-around;
}

.justify-start {
   justify-content: flex-start;
}

.justify-end {
   justify-content: flex-end;
}

.items-center {
   align-items: center;
}

.cell {
   position: relative;
}

.cell img {
   display: block;
   width: 100%;
}

.cell > *:last-child {
   margin-bottom: 0;
}

.cell--1-2 {
   width: 48%;
}

.cell--1-4 {
   width: 23%;
}

@media only screen and (max-width: 560px) {

   .cell--1-2,
   .cell--1-4 {
      width: 100%;
   }

}


/*IMAGE*/
.wrap-ratio {
   position: relative;
}

.wrap-ratio::before {
   content: "";
   display: block;
}

.wrap-ratio img {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   object-fit: cover;
}

.ratio-45::before {
   padding-top: 45%;
}

.ratio-60::before {
   padding-top: 60%;
}

.ratio-100::before {
   padding-top: 100%;
}

.ratio-130::before {
   padding-top: 130%;
}

@media only screen and (max-width:560px) {
   .ratio-100::before,
   .ratio-130::before {
      padding-top: 66%;
   }
}


/*LIST*/
.list-none {
   list-style: none;
   padding-left: 0;
   margin: 0;
}

.list-none li {
   margin-left: 0;
}


/*OTHER*/
.shadow {
   box-shadow: 0 0 1.8rem -1rem rgb(0 0 0 / 27%);
}

.radius-12 {
   border-radius: 12px;
}

.radius-corner {
   border-radius: 20px 0 20px 0;
}

.radius-half {
   border-radius: 50%;
}


/*********************
NAVI
*********************/
.header {
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 100;
}

.header-logo {
   width: 230px;
   z-index: 9999;
}

.header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: 1920px;
   margin: 0 auto;
   padding-top: 1.7rem;
   padding-bottom: 1.7rem;
}

.header-title {
   margin: 0;
}

#drawer-input {
   display: none;
}

.header-nav-item {
   list-style: none;
}

.header-nav-link {
   color: var(--accent-blue);
   font-weight: normal;
   font-size: 1.6rem;
   display: block;
   position: relative;
   text-decoration: none;
}


@media only screen and (min-width: 961px) {

   #drawer-content {
      display: flex;
      column-gap: 25px;
   }

   .header-nav {
      display: flex;
      align-items: center;
   }

   .header-nav-list {
      align-items: center;
      display: flex;
      column-gap: 40px;
      margin: 0;
      padding: 0;
   }

   .header-nav-item {
      margin: 0;
   }

}


@media only screen and (max-width: 960px) {
   .header {
      padding: 1.3rem;
   }

   #drawer-content {
      background: center / cover no-repeat url(../../uploads/bg-main.jpg);
      opacity: 0;
      visibility: hidden;
      overflow: auto;
      position: fixed;
      top: 0;
      left: 0;
      transition: 0.3s ease-in-out;
      height: 100%;
      width: 100%;
      z-index: -1;
   }

   #drawer-content::before {
      content: "";
      background: bottom / contain no-repeat url(../../uploads/icon_house.svg);
      position: absolute;
      bottom: 0;
      left: 0;
      height: 300px;
      width: 100%;
      z-index: -1;
   }

   #drawer-open {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      right: 0;
      background-color: var(--accent-blue);
      height: 60px;
      width: 60px;
      outline: none;
      z-index: 1000;
   }

   #drawer-open span {
      content: '';
      background-color: #fff;
      display: block;
      height: 2px;
      width: 25px;
      position: absolute;
      transition: 0.3s ease-in-out;
      transform-origin: center;
   }

   #drawer-open span.top {
      top: 20px;
   }

   #drawer-open span.middle {
      top: 50%;
      transform: translateY(-50%);
   }

   #drawer-open span.bottom {
      bottom: 20px;
   }

   #drawer-input:checked ~ #drawer-open span.top {
      transform: rotate(-45deg);
      top: 28px;
   }

   #drawer-input:checked ~ #drawer-open span.middle {
      display: none;
   }

   #drawer-input:checked ~ #drawer-open span.bottom {
      transform: rotate(45deg);
      bottom: 29px;
   }

   #drawer-input:checked ~ #drawer-content {
      opacity: 1;
      visibility: visible;
      z-index: 999;
   }

   .header-nav {
      display: flex;
      justify-content: center;
      height: 100vh;
      align-items: center;
      padding-left: 60px;
      padding-right: 60px;
   }

   .header-nav-list {
      margin: 0;
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      row-gap: 20px;
   }

   .header-nav-item {
      margin: 0;
   }

   .header-nav-link {
      font-size: 1.8rem;
      padding: 1.5rem;
      width: 100%;
   }

}

@media only screen and (max-width:560px) {
   .header-logo {
      width: 180px;
   }
}



/*********************
BREADCRUMBS
*********************/
#breadcrumb {
   padding: 1.5em 0;
}

.breadcrumb-list {
   padding: 0;
   max-width: var(--container-l);
   margin: 0 auto;
}

.breadcrumb-item {
   color: var(--text-main);
   line-height: 1;
   list-style: none;
   display: inline-block;
   margin: 0;
}

.breadcrumb-item:not(:last-of-type)::after {
   content: '>';
   padding: 0 0.5em;
}

.breadcrumb-item a {
   color: inherit;
   font-weight: normal;
   text-decoration: none;
}



/*********************
CONTAINER
*********************/
.site-content{
   margin-top: 0;
   margin-bottom: 0;
}

.section-wrap {
   padding-top: 100px;
   padding-bottom: 150px;
   position: relative;
}

.content-wrap {
   padding-top: 60px;
   padding-bottom: 100px;
   position: relative;
}

.container {
   max-width: var(--container);
   padding-right: var(--container-side);
   padding-left:  var(--container-side);
   position: relative;
   margin: 0 auto;
   width: 100%;
}

.container-l {
   max-width: var(--container-l);
   margin: 0 auto;
}

.container-m {
   max-width: var(--container-m);
   margin: 0 auto;
}

.container-s {
   max-width: var(--container-s);
   margin: 0 auto;
}

.map-wrap {
   position: relative;
}

.map-wrap::before {
   content: "";
   display: block;
   padding-top: 55%;
}

.map-wrap iframe {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
}


@media only screen and (max-width: 560px) {

   .section-wrap {
      padding-top: 50px;
      padding-bottom: 50px;
   }

   .content-wrap {
      padding-top: 20px;
      padding-bottom: 20px;
   }

   .container {
      padding-right: 5%;
      padding-left: 5%;
   }

   .map-wrap::before {
      padding-top: 75%;
   }

}


/*********************
HEADING
*********************/
.h2-top {
   color: var(--accent-blue);
   font-size: 4.1rem;
   letter-spacing: .1em;
   margin-top: -64px;
}

.h2-top span {
   color: rgb(39 89 131 / 18%);
   font-family: var(--font-sarah);
   font-size: 10.9rem;
   display: block;
   line-height: 1;
   transform: translateY(65px);
}

.h2-page {
   color: var(--accent-blue);
   font-size: 3rem;
   position: relative;
}

.h2-page span {
   color: var(--text-main);
   font-family: var(--font-sarah);
   font-size: 1.8rem;
   display: block;
   line-height: 1;
}

@media only screen and (max-width: 960px) {

}

@media only screen and (max-width: 560px) {
   .h2-top {
      font-size: 2rem;
      margin-top: -18px;
   }

   .h2-top span {
      font-size: 4.5rem;
      transform: translateY(18px);
   }

   .h2-page {
      font-size: 2.4rem;
   }
}



/*********************
BUTTON
*********************/
.btn-wrap {
   margin-top: 1.5em;
   width: 100%;
}

.btn {
   color: var(--text-main);
   display: inline-block;
   font-size: 1em;
   font-weight: normal;
   line-height: 1;
   position: relative;
   text-decoration: none;
   transition: all .3s;
   z-index: 1;
}

.btn-main {
   font-size: 1.8rem;
   background-color: var(--accent-blue);
   color: #fff;
   text-align: center;
   letter-spacing: .2em;
   padding: 20px 55px;
   font-family: var(--font-kaisei);
   position: relative;
}

.btn-main::before {
   content: "";
   background-color: #fff;
   height: 1px;
   width: 45px;
   position: absolute;
   top: 50%;
   right: 0;
   transform: translateY(-50%);
}

.btn-main::after {
   content: "";
   background-color: #fff;
   height: 7px;
   width: 7px;
   position: absolute;
   top: 50%;
   right: 45px;
   transform: rotate(45deg) translateY(-50%);
   transition: all .3s ease-out;
}

.btn-cv,
.wrap-btn-cv a {
   display: inline-block;
   background-color: var(--accent-blue);
   border-radius: 5px;
   color: #fff;
   font-size: 1.6rem;
   text-align: center;
   padding: 1em 2em;
   position: relative;
}

.btn-cv::before,
.wrap-btn-cv a::before {
   content: "";
   display: block;
   border: 1px solid #fff;
   border-radius: 3px;
   height: calc(100% - 10px);
   width: calc(100% - 10px);
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate3d(-50%, -50%, 0);
   transition: all .3s ease-in;
}

.btn-submit {
   background-color: var(--accent-blue);
   border: 1px solid var(--accent-blue);
   border-radius: 5px;
   color: #fff;
   display: inline-block;
   font-size: 1.8rem;
   line-height: 1;
   padding: 1.2em;
   text-align: center;
   width: 260px;
}


@media only screen and (min-width: 961px) {
   .btn:hover {
      opacity: 1;
   }

   .btn-main:hover::after {
      right: 0;
   }

   .btn-cv:hover,
   .wrap-btn-cv a:hover {
      opacity: 1;
   }

   .btn-cv:hover::before,
   .wrap-btn-cv a:hover::before {
      height: 100%;
      width: 100%;
   }
}

@media only screen and (max-width:560px) {
   .btn-wrap {
      margin-top: 50px;
   }
}


/*********************
HOME
*********************/
.section-top {
   padding-top: 100px;
   padding-bottom: 100px;
}

.section-top p {
   font-size: 1.4rem;
}

.bg-image {
   padding-top: 200px;
   padding-bottom: 200px;
   background: center / cover no-repeat url(../../uploads/bg-main.jpg);
}

.bg-image::before {
   content: "";
   background: linear-gradient(to bottom, #fff 2%, transparent 18%, transparent 86%, #fff 99%);
   height: 100%;
   width: 100%;
   position: absolute;
   left: 0;
   top: 0;
   z-index: 0;
}

@media only screen and (max-width: 560px) {
   .section-top {
      padding-top: 58px;
      padding-bottom: 58px;
   }

   .bg-image {
      padding-top: 80px;
      padding-bottom: 90px;
   }
}


/*FV*/
.fv {
   background: center / cover no-repeat url(../../uploads/bg-img.jpg);
   height: calc(100vh - 10px);
   position: relative;
   padding-top: 100px;
}

.fv::before {
   content: "";
   background: linear-gradient(to bottom, transparent, rgb(129 203 211 / 87%) 92%);
   height: 100%;
   width: 100%;
   position: absolute;
   left: 0;
   top: 0;
   z-index: 0;
}

.slider1 {
   width: 75vw;
   height: 80vh;
   margin-right: 0!important;
   margin-left: auto!important;
   position: relative;
   z-index: 1;
}

.slider1.swiper-container {
   overflow: visible!important;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
   bottom: 30vh!important;
   left: -25px!important;
   width: auto!important;
   transform: rotate(90deg)!important;
   transform-origin: left!important;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
   margin: 0 10px!important;
}

.slider1 .swiper-wrapper {
   border-radius: 40px 0 0 40px!important;
   overflow: hidden!important;
}

.swiper-pagination-bullet {
   background-color: #FAD5AF!important;
   opacity: 1!important;
}

.swiper-pagination-bullet-active {
   background-color: #D04D17!important;
   border-radius: 0!important;
   transform: rotate(45deg)!important;
}

.slide-img {
   height: 100%;
   background-size: cover;
   background-position: center center;
}

.slide-img.slide1 {
   background-image: url(../../uploads/20230924_103111.jpg);
}

.slide-img.slide2 {
   background-image: url(../../uploads/20230924_103058.jpg);
}

.slide-img.slide3 {
   background-image: url(../../uploads/fv-03.jpg);
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
   animation: zoomin 8s linear infinite;  
}

@keyframes zoomin {
   0% {
      transform: scale(1);
   }
   100% {
      transform: scale(1.1);
   }
}

.text-fv {
   writing-mode: tb-rl;
   flex-direction: column;
   row-gap: 25px;
   align-items: flex-start;
   position: absolute;
   left: 12.5%;
   top: 50%;
   transform: translate3d(-50%, -50%, 0);
   z-index: 2;
}

.copy-fv {
   color: var(--accent-blue);
   font-size: clamp(40px,2.5vw,50px);
   font-family: var(--font-kaisei);
   letter-spacing: .4em;
   line-height: 1;
   margin: 0;
}

.copy-fv:last-child {
   margin-top: 2em;
}

.deco-fv {
   position: absolute;
   bottom: 0;
   left: 15%;
   z-index: 1;
   width: 30vw;
}

@media only screen and (min-width: 961px) {
   .fv {
      min-height: 930px;
   }
}

@media only screen and (max-width: 960px) {
   .swiper-container-horizontal>.swiper-pagination-bullets {
      transform: none!important;
      top: auto!important;
      bottom: -45px!important;
      left: auto!important;
      right: 3%!important;
   }

   .slide-img {
      background-position: 36% 50%;
   }

   .text-fv {
      row-gap: 14px;
   }

   .copy-fv:last-child {
      margin-top: 1em;
   }

   .deco-fv {
      bottom: 20px;
      left: 4%;
   }

}

@media only screen and (max-width: 560px) {
   .slide-img {
      background-position: 36% 50%;
   }

   .text-fv {
      row-gap: 14px;
      bottom: 155px;
      transform: translateX(-50%);
      top: auto;
   }

   .copy-fv {
      font-size: 27px;
   }

   .deco-fv {
      bottom: 0;
      left: 0;
      width: 181px;
   }
}




/*HOME - news*/
.section-top-news {
   background: linear-gradient(to top, transparent, rgb(129 203 211 / 87%) 71%);
}

.wrap-top-news {
   background-color: #fff;
   border-radius: 250px;
   padding: 35px 80px;
   align-items: center;
   position: relative;
   justify-content: space-evenly;
}

.btn-insta {
   font-size: 1.6rem;
   color: #fff;
   background-color: var(--accent-blue);
   height: 125px;
   width: 125px;
   border-radius: 50%;
   text-align: center;
   line-height: 70px;
   position: relative;
}

.btn-insta::before {
   content: "";
   background: bottom / contain no-repeat url(../../uploads/icon-insta.svg);
   position: absolute;
   left: 50%;
   bottom: 35px;
   height: 30px;
   width: 30px;
   transform: translateX(-50%);
}

.title-top-news .btn-main {
   font-size: 1.6rem;
}

.article-top-news {
   width: 50%;
   max-width: 568px;
   position: relative;
   padding-left: 20px;
}

.article-top-news::before {
   content: "";
   background-color: var(--accent-blue);
   height: 120%;
   width: 1px;
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
}

.section-top-news .archive-list {
   border: none;
   padding-bottom: 0;
}

.section-top-news .archive-list::after {
   content: none;
}

.section-top-news .archive-list a {
   display: flex;
   justify-content: space-between;
}

.section-top-news .meta-archive {
   width: 11rem;
}

.section-top-news .meta-archive time {
   font-size: 1.6rem;
}

.section-top-news .archive-list .title-archive {
   width: calc(100% - 12rem);
   margin-top: 0;
}


@media only screen and (min-width: 961px) {
   .btn-insta:hover {
      box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
      background-color: #4c7395;
   }
}

@media only screen and (max-width: 1024px) {
   .wrap-top-news {
      flex-direction: column;
      border-radius: 550px;
      padding: 35px 20px;
      row-gap: 45px;
   }

   .btn-insta {
      font-size: 1.36rem;
      height: 100px;
      width: 100px;
      line-height: 62px;
      order: 3;
   }

   .btn-insta::before {
      bottom: 24px;
      height: 27px;
      width: 27px;
   }

   .title-top-news,
   .article-top-news {
      width: 100%;
   }

   .title-top-news .btn-wrap {
      margin-top: 18px;
   }

   .article-top-news {
      padding-left: 0;
      padding-top: 25px;
   }

   .article-top-news::before {
      height: 1px;
      width: 100%;
      top: 0;
      transform: none;
   }

   .section-top-news .archive-list a {
      flex-direction: column;
   }

   .section-top-news .archive-list:last-child {
      margin-bottom: 0;
   }

   .section-top-news .meta-archive,
   .section-top-news .archive-list .title-archive {
      width: 100%;
   }

}


@media only screen and (max-width: 960px) {


}


/*HOME - slider*/
.slider2 {
   padding-top: 20px!important;
   padding-bottom: 20px!important;
}

.slider2 .swiper-wrapper {
   transition-timing-function: linear;
   column-gap: 25px;
}

.slider2 .swiper-slide img {
   border-radius: 12px;
   box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}


/*HOME - concept*/
.logo-top-concept img {
   max-width: 400px;
}

@media only screen and (max-width: 560px) {
   .wrap-top-concept {
      row-gap: 25px;
   }

   .logo-top-concept img {
      margin: auto;
      max-width: 250px;
   }
}


/*HOME - service*/
.wrap-top-service .cell:nth-child(even) {
   transform: translateY(40px);
}

.text-top-service {
   transform: translateY(-80px);
}

.text-top-service h3 {
   color: var(--accent-red);
   font-size: 1.8rem;
   display: inline-block;
   background-color: #FBFBFB;
   padding: .5em 1em;
}

.text-top-service p {
   background-color: #FBFBFB;
   padding: 1em;
   margin-bottom: 0;
   width: 95%;
}

@media only screen and (min-width:561px) and (max-width:960px) {
   .wrap-top-service .cell--1-4 {
      width: 48%;
   }
}

@media only screen and (max-width:560px) {
   .wrap-top-service {
      row-gap: 30px;
   }

   .wrap-top-service .cell {
      margin-bottom: -80px;
   }

   .wrap-top-service .cell:nth-child(even) {
      transform: none;
   }
}


/*HOME - feature*/
.wrap-top-feature {
   row-gap: 35px;
}

.wrap-top-feature .cell {
   background-color: #fff;
   border-radius: 20px 0 20px 0;
   box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.wrap-top-feature .cell img {
   border-radius: 20px 0 0 0;
}

.wrap-top-feature .wrap-ratio {
   width: 200px;
}

.text-top-feature {
   position: relative;
   padding: 30px 20px 20px;
   width: calc(100% - 200px);
}

.number-top-feature {
   font-family: var(--font-sarah);
   line-height: 1;
   font-size: 3.7rem;
   color: var(--accent-blue);
   position: absolute;
   top: 15px;
   right: 40px;
}

.number-top-feature::before {
   content: "";
   background: center / contain no-repeat url(../../uploads/icon-leaf.svg);
   position: absolute;
   top: 50%;
   left: 50%;
   height: 120px;
   width: 120px;
   transform: translate3d(-50%, -50%, 0);
}

.title-top-feature {
   color: var(--accent-blue);
   margin-bottom: .7em;
}

.text-top-feature p {
   margin-bottom: 0;
}

@media only screen and (max-width:960px) {
   .wrap-top-feature .wrap-ratio,
   .text-top-feature {
      width: 100%;
   }

   .number-top-feature {
      font-size: 2.6rem;
   }
}



/*HOME - greeting*/
.section-top-greeting .container {
   max-width: 570px;
}

.section-top-greeting .container::before {
   content: "";
   background: bottom / contain no-repeat url(../../uploads/icon-dog.svg);
   position: absolute;
   bottom: 0;
   right: -140px;
   height: 175px;
   width: 140px;
}

@media only screen and (max-width:960px) {
   .section-top-greeting {
      padding-bottom: 80px;
   }

   .section-top-greeting .container::before {
      right: 0;
      bottom: -121px;
      width: 100px;
      height: 126px;
   }
}



/*********************
PAGES
*********************/
.main-noheader {
   padding-top: 96px;
}

/*page header*/
.header-page {
   background: bottom center / cover no-repeat url(../../uploads/bg-pageheader.jpg);
   height: 360px;
   display: flex;
   justify-content: flex-start;
   align-items: flex-end;
   position: relative;
   width: 100%;
   padding-bottom: 5rem;
}

.header-page h1,
.h1-page {
   color: var(--accent-blue);
   font-size: 2.8rem;
   font-weight: normal;
   letter-spacing: .08em;
}

.header-page h1 span,
.h1-page span {
   color: #fff;
   font-family: var(--font-sarah);
   font-size: 17.4rem;
   display: block;
   letter-spacing: .05em;
   line-height: 1;
   transform: translateY(50px);
}


@media only screen and (max-width: 960px) {

   .header-page {
      height: 238px;
      padding-bottom: 2rem;
   }

   .header-page h1,
   .h1-page {
      font-size: 1.7rem;
      margin-top: -19px;
   }

   .header-page h1 span, 
   .h1-page span {
      font-size: 6.5rem;
      transform: translateY(17px);
   }

}

@media only screen and (max-width:560px) {

}


/*service*/
.section-service .line-heighter p {
   font-size: 1.4rem;
}

.list-service {
   counter-reset: count 0;
   row-gap: 50px;
}

.item-service {
   color: var(--accent-blue);
   font-family: var(--font-kaisei);
   font-size: 1.8rem;
   text-align: left;
   width: 30%;
   padding-left: 2em;
   position: relative;
   margin: 0;
}

.item-service::before {
   content: counter(count, decimal-leading-zero);
   counter-increment: count;
   font-family: var(--font-sarah);
   font-size: 2.5rem;
   position: absolute;
   left: 0;
}

.wrap-service-image {
   background: center / cover no-repeat url(../../uploads/bg-img.jpg);
   padding: 3.5rem;
}

.title-service-content {

}

.text-service-content {
   width: 60%;
   max-width: 610px;
}

.list-content {
   margin-top: 3rem;
}

.list-content li {
   list-style: none;
   margin-left: 0;
   margin-bottom: 3rem;
   padding-left: 1em;
   position: relative;;
}

.list-content li::before {
   content: "";
   background-color: var(--text-main);
   height: 1px;
   width: 7px;
   position: absolute;
   left: 0;
   top: 13px;
}

@media only screen and (max-width:960px) {
   .list-service {
      justify-content: center;
   }

   .item-service {
      row-gap: 28px;
      width: 100%;
      max-width: 230px;
   }

   .wrap-service-image {
      padding: 1.5rem;
   }

   .title-service-content,
   .text-service-content {
      width: 100%;
   }

   .list-content li {
      margin-bottom: 2rem;
   }
}


/*********************
FOOTER
*********************/
#footer {
   position: relative;
}

.footer-cta {
   padding-top: 125px;
   padding-bottom: 125px;
}

.footer-cta-content {
   background: center / cover no-repeat url(../../uploads/cta.jpg);
   border-radius: 15px;
   cursor: pointer;
   padding: 100px 50px;
   text-decoration: none;
   display: block;
   position: relative;
}

.footer-cta-content::before {
   content: "";
   border-radius: 15px;
   background-color: rgb(39 89 131 / 60%);
   height: 100%;
   width: 100%;
   position: absolute;
   left: 0;
   top: 0;
   z-index: 0;
}

.footer-cta-content::after {
   content: "";
   border-radius: 15px;
   height: calc(100% - 25px);
   width: calc(100% - 25px);
   border: 2px solid #fff;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate3d(-50%, -50%, 0);
   z-index: 1;
}

.wrap-cta-content {
   align-items: center;
   color: #fff;
   position: relative;
   padding-left: 10vw;
   padding-right: clamp(8vw, 130px, 13vw);
   z-index: 2;
}

.wrap-cta-content::before {
   content: "";
   background: bottom / contain no-repeat url(../../uploads/icon-dog.svg);
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   left: 0;
   height: 175px;
   width: 10vw;
}

.wrap-cta-content::after {
   content: "";
   background: bottom / contain no-repeat url(../../uploads/icon-arrowbtn.svg);
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   height: 90px;
   width: 90px;
}

.title-cta-content {
   width: 45%;
}

.text-cta-content {
   font-size: 1.4rem;
   width: 53%;
}

.wrap-cta-content .h1-page {
   color: #fff;
   text-align: center;
   margin-top:-32px;
}

.wrap-cta-content .h1-page span {
   font-size: 11.5rem;
   transform: translateY(32px);
}

.footer-main {
   background: center / cover no-repeat url(../../uploads/bg-footer.jpg);
   position: relative;
}

.footer-main-content {
   padding-top: 6.5rem;
   padding-bottom: 6.5rem;
}

.wrap-footer-info {
   align-items: flex-end;
}

.logo-footer-info a {
   display: inline-block;
   margin-bottom: 2rem;
}

.logo-footer-info img {
   width: 300px;
}

.footer-main-list {
   align-items: center;
   column-gap: 25px;
}

.footer-main-item {
   list-style: none;
   margin: 0;
}

.footer-main-link {
   color: inherit;
   text-decoration: none;
}

.copyright {
   background-color: var(--accent-blue);
   color: #fff;
   font-size: 1.5rem;
   padding: 20px 0;
   text-align: center;
}

.page-id-20 .footer-cta,
.page-id-22 .footer-cta {
   display: none;
}

.page-id-20 #footer,
.page-id-22 #footer {
   padding-top: 30px;
}


@media only screen and (min-width:961px) {
   .footer-cta a:hover {
      opacity: .7;
   }
}

@media only screen and (max-width:960px) {
   .footer-cta {
      padding-top: 80px;
      padding-bottom: 80px;
   }

   .wrap-cta-content {
      flex-direction: column;
   }

   .footer-cta-content {
      padding: 50px;
   }

   .wrap-cta-content {
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 100px;
      row-gap: 30px;
   }

   .wrap-cta-content::before {
      content: none;
   }

   .wrap-cta-content::after {
      right: 50%;
      top: auto;
      bottom: 0;
      transform: translateX(50%);
      height: 70px;
      width: 70px;
   }

   .title-cta-content,
   .text-cta-content {
      width: 100%;
   }

   .text-cta-content {
      text-align: center;
   }

   .wrap-cta-content .h1-page span {
      font-size: 7.5rem;
      transform: translateY(25px);
   }
}

@media only screen and (max-width:560px) {
   .logo-footer-info img {
      width: 200px;
   }

   .footer-main-list {
      row-gap: 19px;
      margin-top: 50px;
   }

   .footer-main-item {
      width: 45%;
   }

   .wrap-btn-cv {
      margin-top: 20px;
      width: 100%;
   }

   .wrap-btn-cv a {
      width: 100%;
   }
}



/*********************
ARCHIVE
*********************/
.archive-wrap a {
   text-decoration: none;
}

.archive-list {
   padding-bottom: 1.5em;
   border-bottom: solid .5px var(--accent-blue);
   margin-bottom: 1.5em;
   transition: all 0.3s;
   position: relative;
}

.archive-list::after {
   content: "";
   background-color: var(--accent-blue);
   height: 2px;
   width: 100px;
   position: absolute;
   left: 0;
   bottom: -1px;
}

.archive-list:last-of-type {
   margin-bottom: 0;
}

.archive-list a {
   display: block;
}

.meta-archive {
   font-weight: normal;
}

.meta-archive time {
   color: var(--accent-blue);
   font-size: 1.4rem;
}

.archive-list .title-archive {
   color: var(--text-main);
   font-size: 1.5rem;
   font-family: var(--font-jp);
   margin-top: 1rem;
   overflow: hidden;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   transition: all .3s;
}


/*PAGENATION*/
.navigation.pagination {
   margin-top: 4em;
}

.navigation .nav-links {
   display: flex;
   justify-content: center;
   align-items: center;
   column-gap: 50px;
}

.pagination .page-numbers {
   color: #707070;
   display: inline-block;
   font-size: 2.4rem;
}

.pagination a {
   text-decoration: none;
}

.pagination .nav-links .current {
   color: var(--accent-blue);
}

.pagination .nav-links .prev,
.pagination .nav-links .next {
   background-image: url(../../uploads/icon-chevron.svg);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center center;
   border: none;
   width: 1em;
   height: 1em;
}

.pagination .nav-links .prev {
   transform: scale(-1, 1);
}


@media only screen and (min-width: 961px) {

}

@media only screen and (max-width: 560px) {

   .archive-list:last-child {
      margin-bottom: 1.5em;
   }

   .archive-list .time-archive {
      margin-right: 0;
      margin-bottom: .5em;
   }

   .archive-list .time-archive,
   .archive-list .title-archive {
      width: 100%;
   }

   .navigation .nav-links {
      column-gap: 32px;
   }

   .pagination .page-numbers {
      font-size: 1.8rem;
   }
}



/*********************
SINGLE
*********************/
.single .h1-title {
   margin-bottom: 2rem;
}

.main-single-post h2 {
   font-size: 1.8em;
}

.main-single-post h3 {
   font-size: 1.5em;
}

.main-single-post h4 {
   font-size: 1.2em;
}

.main-single-post h2,
.main-single-post h3,
.main-single-post h4 {
   margin: 1em 0 .5em;
}

.main-single-post figure,
.main-single-post img {
   display: block;
   max-width: 100%;
   margin: auto;
}

.main-single-post figure {
   margin-bottom: 2em;
}

.main-single-post figcaption {
   font-size: .8em;
   line-height: 1.7;
   margin-top: .5em;
}

.content-single {
   font-size: 1.4rem;
   font-weight: normal;
   line-height: 2.1;
   margin-top: 2rem;
}

.adjacent-post-wrap {
   margin-top: 7rem;
}

.item-adjacent-post {
   width: 30%;
}

.text-adjacent {
   text-decoration: none;
   color: var(--text-main);
   font-size: 1.3rem;
   position: relative;
}

.text-adjacent.prev::before,
.text-adjacent.next::before {
   content: "";
   background: center / contain no-repeat url(../../uploads/icon-chevron.svg);
   width: 1em;
   height: 1em;
   position: absolute;
   top: 50%;
}

.text-adjacent.prev {
   padding-left: 1.5em;
}

.text-adjacent.prev::before {
   left: 0;
   transform: translateY(-50%) scale(-1, 1);
}

.text-adjacent.next {
   padding-right: 1.5em;
}

.text-adjacent.next::before {
   right: 0;
   transform: translateY(-50%);
}

.totop-adjacent {
   font-weight: normal;
   text-decoration: none;
}

@media only screen and (max-width: 560px) {
   .single .h1-title {
      font-size: 2.2rem;
   }

   .adjacent-post-wrap {
      margin-top: 3.5rem;
      padding-top: 3.5rem;
   }
}



/*********************
CONTACT
*********************/
input[type=email],
input[type=text],
input[type=tel],
input[type=file],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
   color: inherit;
   font-size: 1.6rem;
   display: inline-block;
   width:100%;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
   border: none;
   border-radius: 5px;
   background-color: #FBFBFB;
   line-height: 1.7;
   padding: 1rem .9rem;
}

input[type=number] {
   margin-right: .5rem;
   padding: .5rem 1rem;
   width: calc(4em + 2rem);
}

input[type=checkbox],
input[type=radio],
.wpcf7-list-item-label {
   vertical-align: middle;
}

::placeholder {
   color: #9C9DA1;
   font-size: 1.4rem;
   letter-spacing: .15rem;
}

.number-month,
.number-date {
   margin-left: 1em;
}

.wpcf7-list-item {
   margin: 0 1em 0 0;
}

.wpcf7-list-item:last-child {
   margin: 0;
}

.wpcf7-checkbox .wpcf7-list-item {
   display: block;
   margin-bottom: .5em;
}

.wpcf7-acceptance .wpcf7-list-item {
   margin: 0;
}


.wrap-form-contact {
   display: flex;
   row-gap: 30px;
   flex-direction: column;
}

.wrap-form-contact p {
   margin: 0;
}

.item-form-contact {
   display: flex;
   align-items: flex-start;
   padding-bottom: 1.5em;
   border-bottom: solid .5px var(--accent-blue);
   position: relative;
}

.item-form-contact::after {
   content: "";
   background-color: var(--accent-blue);
   height: 2px;
   width: 30%;
   position: absolute;
   left: 0;
   bottom: -1px;
}

.heading-form-contact {
   align-items: center;
   width: 30%;
}

.detail-form-contact {
   padding-left: 25px;
   width: 75%;
}

.label-title {
   font-size: 1.8rem;
}

.label-title span {
   color: var(--accent-blue);
   display: block;
   font-size: 1.4rem;
}

.label-required {
   color: var(--accent-red);
   border: 1px solid var(--accent-red);
   display: inline-block;
   font-size: 1.4rem;
   padding: 5px 12px;
   line-height: 1;
   vertical-align: text-bottom;
}


@media only screen and (max-width: 560px) {

   .item-form-contact {
      flex-direction: column;
      position: relative;
   }

   .item-form-contact::before,
   .item-form-contact::after {
      content: "";
      height: 2px;
      position: absolute;
      left: 0;
      bottom: 0;
   }

   .item-form-contact::before {
      background-color: var(--accent-blue);
      width: 30%;
      z-index: 1;
   }

   .item-form-contact::after {
      background-color: #F8F8F8;
      width: 100%;
      z-index: 0;
   }

   .heading-form-contact,
   .detail-form-contact {
      border-bottom: 0;
      width: 100%;
   }

   .heading-form-contact {
      padding-bottom: 13px;
      justify-content: flex-start;
      column-gap: 10px;
   }

   .label-title {
      font-size: 1.65rem;
   }

   .detail-form-contact {
      font-size: 1.5rem;
      padding: 0 0 13px;
   }

   .detail-form-contact .cell--1-2 {
      width: 48%;
   }

   .contact-label {
      font-size: 1.1rem;
   }

   ::placeholder {
      font-size: 1em;
   }

   .wpcf7-list-item-label {
      font-size: 1.3rem;
   }

   .wpcf7-text,
   .wpcf7-textarea {
      font-size: 1.6rem;
   }

}



/*********************
MARGIN
*********************/
.margin-section {
   margin-bottom: 120px;
}

.margin-l {
   margin-bottom: 80px;
}

.margin-m {
   margin-bottom: 60px;
}

.margin-s {
   margin-bottom: 25px;
}

@media only screen and (max-width: 560px) {
   .margin-section {
      margin-bottom: 80px;
   }

   .margin-l {
      margin-bottom: 25px;
   }

   .margin-m {
      margin-bottom: 25px;
   }

   .margin-s {
      margin-bottom: 20px;
   }
}


/*********************
ANIMATION
*********************/
.fadein {
   opacity: 0;
   transform: translateY(30px);
   transition-property: transform, opacity;
   transition-duration: 1.5s;
   transition-delay: 0s;
}

.fadein.is-active {
   opacity: 1;
   transform: translateY(0);
}

.fade {
   opacity: 0;
   transition-property: opacity;
   transition-duration: 1.5s;
   transition-delay: 0s;
}

.fade.is-active {
   opacity: 1;
}


.delay--2 {
   transition-delay: .3s;
}

.delay--3 {
   transition-delay: .6s;
}

.delay--4 {
   transition-delay: .9s;
}


@media only screen and (max-width: 960px) {
   .delay--2,
   .delay--3
   .delay--4 {
      transition-delay: 0s;
   }
}


/*********************
RESPONSIVE
*********************/
@media only screen and (min-width: 961px) {
   .tb_only { display: none !important; }
   .sp_only { display: none !important; }
   .sp_tb { display: none !important; }
}

@media only screen and (min-width: 561px) and (max-width: 960px) {
   .pc_only { display: none !important; }
   .sp_only { display: none !important; }
   .sp_pc { display: none !important; }
}

@media only screen and (max-width: 560px) {
   .pc_only { display: none !important; }
   .tb_only { display: none !important; }
   .tb_pc { display:none!important; }
}

@media only screen and (max-width: 320px) {
   html { font-size: .58em; }
}