@charset "utf-8";

/* CSS Document */

/*
  font-family: "Oswald", sans-serif;
*/

:root {
  --font-family-gothic:     'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-serif:      'Zen Antique','Yu Mincho','游明朝',YuMincho,'Hiragino Mincho ProN',serif;

  --color-base: #fff;
  --color-main: #000;
  --color-brand01: #379bd5;
  --color-brand02: #2488c2;
  --color-primary01: #009143;
  --color-primary02: #037e3c;
  --color-accent01: #db654b;
  --color-highlight01: #fff200;
  --color-sub01: #f0f0f0;
  --color-sub02: #ccc;
  --color-sub03: #ebf5fb;

}



/***********
base
************/
html,
body {
  height: 100%;
  min-height: 100%;
  font-size: 13px;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  color: var(--color-main);
}

body.is-menu-open {
  overflow: hidden;
}
h1,h2,h3,h4,h5,h6,strong,th,em{
  font-weight: 700;
  font-style: normal;
}

@media screen and (max-width:1280px) {
  body{
    font-size: 12px;
  }
}
@media screen and (max-width:834px) {
  body{
    font-size: min(calc(9px + 0.7vmin),12px);
    -webkit-tap-highlight-color:transparent;
  }
}
@media screen and (max-width:520px) {
  body{
    font-size: min(calc(9px + 1vmin),12px);
    -webkit-tap-highlight-color:transparent;
  }
}


a {
  text-decoration: underline;
  transition: 0.2s;
}

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

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

::selection {
  background: rgba(0, 144, 202, 0.5); /* Safari */
}
::-moz-selection {
  background: rgba(0, 144, 202, 0.5); /* Firefox */
}

@media screen and (min-width:835px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/***********************
layout
************************/

/***********
wp
************/

.right,.alignright {  float: right !important; }
.left,.alignleft  {  float: left !important; }
.aligncenter  { display: block; margin-left:auto; margin-right:auto; }
.wp-caption {   max-width: 100%; }

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

  .right,
  .alignright {
    float: right !important;
    width: 35%;
    margin-left: 1em;
  }

  .left,
  .alignleft {
    float: left !important;
    width: 35%;
    margin-right: 1em;
  }

}

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

  .right,
  .alignright ,
  .left,
  .alignleft {
    display: block;
    width: 100%;
    margin: 0 auto 1.5em;
    float: none !important;
  }
}

/***********
common
************/

.l-relative {  position: relative !important; }

.l-textAlign-center {  text-align: center !important; }
.l-textAlign-right  {  text-align: right !important; }
.l-textAlign-left   {  text-align: left !important; }

.l-bottom-xxsmall {  margin-bottom: 5px  !important; }
.l-bottom-xsmall  {  margin-bottom: 10px !important; }
.l-bottom-small   {  margin-bottom: 15px !important; }
.l-bottom         {  margin-bottom: 20px !important; }
.l-bottom-large   {  margin-bottom: 30px !important; }
.l-bottom-xlarge  {  margin-bottom: 50px !important; }
.l-bottom-xxlarge {  margin-bottom: 80px !important; }

.l-top-xxsmall {  margin-top: 5px  !important; }
.l-top-xsmall  {  margin-top: 10px !important; }
.l-top-small   {  margin-top: 15px !important; }
.l-top         {  margin-top: 20px !important; }
.l-top-large   {  margin-top: 30px !important; }
.l-top-xlarge  {  margin-top: 50px !important; }
.l-top-xxlarge {  margin-top: 80px !important; }

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

  .l-bottom-xxsmall {  margin-bottom: 5px  !important; }
  .l-bottom-xsmall  {  margin-bottom: 7px !important; }
  .l-bottom-small   {  margin-bottom: 10px !important; }
  .l-bottom         {  margin-bottom: 15px !important; }
  .l-bottom-large   {  margin-bottom: 20px !important; }
  .l-bottom-xlarge  {  margin-bottom: 30px !important; }
  .l-bottom-xxlarge {  margin-bottom: 40px !important; }

  .l-top-xxsmall {  margin-top: 5px  !important; }
  .l-top-xsmall  {  margin-top: 7px !important; }
  .l-top-small   {  margin-top: 10px !important; }
  .l-top         {  margin-top: 15px !important; }
  .l-top-large   {  margin-top: 20px !important; }
  .l-top-xlarge  {  margin-top: 30px !important; }
  .l-top-xxlarge {  margin-top: 40px !important; }

}

/***********
layout
************/

.l-wrapper{
}

.l-contents{
  position: relative;
}
.l-contents-inner{
  overflow: hidden;
}

/***********
column
************/

.l-column{
  display: flex;
  justify-content: space-between;
}

.l-column-first{
  width: 68%;
}

.l-column-second{
  width: 25%;
}

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

  .l-column{
    display: block;
  }

  .l-column-first{
    width: auto;
  }

  .l-column-second{
    width: auto;
  }

}

/***********
base
************/

.l-base {
  width: auto;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.l-base-wide {
  width: auto;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.l-base-xwide {
  width: auto;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.l-base-xxwide {
  width: auto;
  max-width: 1660px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.l-base-small {
  width: auto;
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.l-block {
  padding-top: 10em;
  padding-bottom: 10em;
}
.l-block-small {
  padding-top: 5em;
  padding-bottom: 5em;
}
.l-block-large {
  padding-top: 15em;
  padding-bottom: 15em;
}

.l-block-top {
  padding-top: 10em;
}
.l-block-top-small {
  padding-top: 5em;
}
.l-block-top-large {
  padding-top: 15em;
}

.l-block-bottom {
  padding-bottom: 10em;
}
.l-block-bottom-small {
  padding-bottom: 5em;
}
.l-block-bottom-large {
  padding-bottom: 15em;
}

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

  .l-base ,
  .l-base-wide ,
  .l-base-xwide ,
  .l-base-xxwide ,
  .l-base-small {
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .l-base:not(.-noOffset),
  .l-base-wide:not(.-noOffset),
  .l-base-xwide:not(.-noOffset),
  .l-base-xxwide:not(.-noOffset),
  .l-base-small:not(.-noOffset){
    padding-left: 5%;
    padding-right: 5%;
  }

  .l-base-wide .l-base,
  .l-base-wide .l-base-small,
  .l-base .l-base-small {
    padding-left: 0;
    padding-right: 0;
  }


  .l-block {
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .l-block-small {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .l-block-large {
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .l-block-top {
    padding-top: 5em;
  }
  .l-block-top-small {
    padding-top: 3em;
  }
  .l-block-top-large {
    padding-top: 8em;
  }

  .l-block-bottom {
    padding-bottom: 5em;
  }
  .l-block-bottom-small {
    padding-bottom: 3em;
  }
  .l-block-bottom-large {
    padding-bottom: 8em;
  }

}

/***********
zoom
************/

.l-zoomHover{
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.l-zoomHover img{
  transform:scale(1) ;
  transition:all 0.5s ease;
}
body.is-pc a:hover .l-zoomHover img:hover{
  transform:scale(1.03) ;
}

/***********
l-hoverUnderline
************/

.l-hoverUnderline {
  padding-bottom: 0.2em;
  background: linear-gradient(#000, #000) 0 100% / 0 1px no-repeat;
  transition: background 0.3s;
  text-decoration: none;
}
body.is-pc .l-hoverUnderline:hover {
  background-size: 100% 1px;
}

/*
左から右に抜ける
.l-hoverLine {
  background: linear-gradient(0deg, #000, #000) no-repeat right bottom / 0 1px;
  transition: background-size 350ms;
}
.l-hoverLine:where(:hover, :focus-visible) {
  background-size: 100% 1px;
  background-position-x: left;
}

*/
/***********
l-hoverLine
************/

.l-hoverLine {
  background: linear-gradient(#000,#000) 100% 100%/100% 2px no-repeat;
  text-decoration: none;
  color: #000;
}
body.is-pc .l-hoverLine:hover {
 animation:anim-hoverLine .8s cubic-bezier(.23,1,.32,1) 0s
}

@keyframes anim-hoverLine {
 0% {
  background-size:100% 2px;
  background-position:100% 100%
 }
 50% {
  background-size:0 2px;
  background-position:100% 100%
 }
 51% {
  background-size:0 2px;
  background-position:0 100%
 }
 to {
  background-size:100% 2px;
  background-position:0 100%
 }
}

/***********
marker
************/

.l-marker {
  background: linear-gradient(to right ,#fff358, #fff358) 0 100% / 0 100% no-repeat;
  transition: background 1s cubic-bezier(0.83, 0, 0.17, 1);
  text-decoration: none;
  padding-left: 0.2em;
  padding-right: 0.2em;
}

.l-marker.is-inview {
  background-size: 100% 100%;
}

/***********
l-flip
************/
/*
<span class="l-flipUp" data-name="inview"><span>テキスト</span></span>
*/

.l-flipUp{
  display: inline-flex;
  overflow: hidden;
}
.l-flipUp > span{
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.5s;
  transition-delay: 0.2s;
  transform: translateY(100%);
  vertical-align: middle;
}
.l-flipUp.is-show > span{
  transform: translateY(0%);
}

/***********
l-flip
************/

.l-flip{
  display: flex;
  position: relative;
  text-align: center;
  overflow: hidden;
  line-height: 1;
}
.l-flip > span{
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.1s;
}
.l-flip > span::after{
  content: attr(data-text)"";
/*  font-size: 85%;*/
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 100%;
}
a:hover .l-flip > span {
  transform: translateY(-100%);
  white-space: nowrap;
}

/***********
l-mask
************/

.l-mask {
  display: inline-block;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
/*  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 100% 0%); 左起点*/
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
  vertical-align: middle;
}
.is-show .l-mask,
.is-show.l-mask {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
/*  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 0%);*/
}
.l-mask.-full {
  width: 100%;
}

.l-mask-down {
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.l-mask-up {
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.l-mask-left {
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.is-show.l-mask-down{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.is-show.l-mask-up{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.is-show.l-mask-left{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/***********
fontColor
************/

.l-fontColor-accent01 {
  color: var(--color-accent01);
}
.l-fontColor-brand01 {
  color: var(--color-brand01);
}

/***********
text
************/

.l-textMain{
  font-size: clamp(108%,1.2vw, 124%);
  line-height: 2;
}
.l-textLead{
  font-size: clamp(108%,1.2vw, 124%);
  line-height: 2;
  text-align: center;
}

.l-list-circle {}
.l-list-circle li {
  padding-left: 1em;
  position: relative;
}
.l-list-circle li::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  left: 0;
  top: 0.8em;
  background: var(--color-main);
  border-radius: 50%;
}

.l-list-dot {}
.l-list-dot li {
  margin-left: 1em;
}
.l-list-dot li::before {
  content: "・";
  margin-left: -1em;
}

.l-list-asterisk {}

.l-list-asterisk li {
  margin-left: 1em;
}
.l-list-asterisk li::before {
  content: "※";
  margin-left: -1em;
}

.l-list-number {
  padding-left: 2em;
}
.l-list-number li {
  list-style: decimal;
}

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

  .l-textMain,
  .l-textLead{
    font-size: 108%;
    line-height: 1.8;
  }
}

@media screen and (max-width:520px) {
  .l-textLead{
    text-align: left;
  }
}

/***********
linkWrap
************/


/***********
linkWrap
************/

.l-linkWrap{
  padding-top: 2em;
  text-align: center;
}
.l-linkWrap.-left{
  text-align: left;
}
.l-linkWrap.-right{
  text-align: right;
}


.l-linkSeparate {
  display: flex;
  justify-content: center;
  padding-top: 2em;
}
.l-linkSeparate-item {
  padding: 0 1%;
  min-width: 30%;
}
.l-linkSeparate-item .l-btn {
}


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

  .l-linkWrap.-left ,
  .l-linkWrap.-right{
    text-align: center;
  }

  .l-linkSeparate {
    display: block;
    text-align: center;
  }
  .l-linkSeparate-item {
    padding: 0;
    min-width: initial;
  }
  .l-linkSeparate-item + .l-linkSeparate-item {
    padding-top: 10px;
  }
  .l-linkSeparate-item .l-btn {
    width: 100%;
    max-width: 480px;
  }

}

/***********
btn
************/

.l-btn {
  display: inline-block;
  width: auto;
  min-width: 18em;
  padding: 1em 3em ;
  font-size: 1.39rem;
  font-weight: 500;
  font-family: var(--font-family-gothic);
  color: #000;
  text-decoration: none !important;
  background-color: var(--color-brand01);
  color: #fff;
  transition: all 0.2s ease;
  position: relative;
}

.l-btn::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  line-height: normal;
}

body.is-pc .l-btn:hover {
  background-color: var(--color-main);
}

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

  .l-btn {
    font-size: 1.16rem;
  }

  .l-btn::after {
    right: 0.5em;
  }

}

/***********
header
************/

.l-header {
}

.l-header-inner {
}

.l-header-logo {
}


/***********
navi
************/

.l-navi {
  background-color: var(--color-brand01);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.l-navi-list {
  display: flex;
  margin: 0 auto;
}
.l-navi-list li {
  padding: 0 1px;
  border: 1px solid var(--color-base);
  border-top: none;
  border-bottom: none;
}
.l-navi-list li:first-child {
  border-left: none;
}
.l-navi-list li:last-child {
  border-left: none;
}
.l-navi-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--color-brand01);
}
.l-navi-list li.-primary a {
  background-color: var(--color-primary01);
}


body.is-pc .l-navi-list a:hover {
  background-color: var(--color-brand02);
}
body.is-pc .l-navi-list li.-primary a:hover {
  background-color: var(--color-primary02);
}
body.is-pc .l-navi-list li.-accent a:hover {
  background-color: var(--color-accent01);
}

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

  .l-navi {
  }
  .l-navi-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-left: -1px;
    margin-right: -1px;
  }
  .l-navi-list li {
    padding: 0 1px;
    border: none;
    border-right: 1px solid var(--color-base);
    border-top: none;
    border-bottom: none;
  }
  .l-navi-list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: var(--color-brand01);
  }
  .l-navi-list li.-primary a {
    background-color: var(--color-primary01);
  }


  .l-navi-list li:nth-child(1) {
    order: 1;
    width: 50%;
    padding: 0 0;
    border-bottom: 1px solid var(--color-base);
  }
  .l-navi-list li:nth-child(5) {
    order: 2;
    width: 50%;
    padding: 0 0;
    border-bottom: 1px solid var(--color-base);
  }
  .l-navi-list li:nth-child(1) a {
    padding-left: 8%;
    padding-right: 8%;
  }
  .l-navi-list li:nth-child(5) a {
    padding-left: 8%;
    padding-right: 8%;
  }

  .l-navi-list li:nth-child(2) {
    order: 3;
    width: calc(100% / 3);
  }
  .l-navi-list li:nth-child(3) {
    order: 4;
    width: calc(100% / 3);
  }
  .l-navi-list li:nth-child(4) {
    order: 5;
    width: calc(100% / 3);
  }

  .l-navi-list li:nth-child(1) img,
  .l-navi-list li:nth-child(5) img{
    aspect-ratio: 16 / 6;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .l-navi-list li:nth-child(2) img,
  .l-navi-list li:nth-child(3) img,
  .l-navi-list li:nth-child(4) img{
    aspect-ratio: 16 / 8;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}


/***********
footer
************/

.l-footer {
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding: 8em 0;
}

.l-footer-container {
  display: flex;
  justify-content: space-between;
}
.l-footer-info {
}
.l-footer-info-corp {
}
.l-footer-info-corp + .l-footer-info-corp {
  padding-top: 2em;
}
.l-footer-info-title {
  font-weight: 500;
  font-size: clamp(124%,1.6vw, 154%);
  padding-bottom: 0.2em;
}
.l-footer-info-address {
  font-size: clamp(108%,1.2vw, 124%);
  font-style: normal;
}
.l-footer-inner {
}
.l-footer-navi {
  display: flex;
  justify-content: space-between;
}
.l-footer-navi li{
  padding-left: 2em;
}
.l-footer-navi li a{
  display: inline-block;
  padding: 0.2em 0 0.2em 1em;
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: clamp(108%,1.2vw, 124%);
}
.l-footer-navi li a::before {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  left: 0;
  top: 50%;
  scale: 0.8;
  translate: 0 -50%;
}
body.is-pc .l-footer-navi li a:hover {
  text-decoration: underline;
}

.l-footer-copyright {
  display: block;
  font-size: clamp(93%,1vw, 116%);
  text-align: right;
}

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

  .l-footer {
    padding: 3em 0;
  }

  .l-footer-container {
    display: block;
  }

  .l-footer-navi {
    display: block;
    padding-top: 2em;
    padding-left: 0;
  }
  .l-footer-navi li{
    padding-left: 0;
    margin-bottom: -1px;
  }
  .l-footer-navi li a{
    font-size: clamp(116%,1.2vw, 124%);
    display: block;
    padding: 1em 2em;
    text-align: center;
    border: 1px solid #fff;
  }
  .l-footer-navi li a::before {
    position: absolute;
    right: 1em;
    left: auto;
    top: 50%;
    translate: 0 -50%;
  }
  .l-footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 3em;
    padding-bottom: 6em;
  }


}


/***********
jump
************/

.l-jumpTop{
  position: fixed;
  right: 0;
  bottom: 10px;
  z-index: 999;
  width: 200px;
  translate: 100% 0;
  transition: 0.3s;
}
body.is-fixed .l-jumpTop {
  translate: 0 0;
}
.l-jumpTop a{
  display: block;
  translate: 2px 0;
  transition: 0s;
}
.l-jumpTop a:hover {
  translate: 0 0;
}


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

  .l-jumpTop{
    width: 100px;
  }

}
/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/




/***********
fade
************/

[data-fade] {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.2s;
}
[data-fade].is-show {
  opacity: 1;
}

[data-fade="fade-up"] {
  transform: translateY(20px);
}
[data-fade="fade-up"].is-show {
  transform: translateY(0);
}

[data-fade="fade-left"] {
  translate: -2vw 0;
}
[data-fade="fade-left"].is-show {
  translate: 0 0;
}

[data-fade="fade-right"] {
  translate: 2vw 0;
}
[data-fade="fade-right"].is-show {
  translate: 0 0;
}


/***********
slick common
************/

.slick-slide li {
  vertical-align: bottom;
}

/***********
status
************/

.is-hide {
  display: none;
}
.is-readerHide {
  clip: rect(1px, 1px, 1px, 1px);
}

.is-inlineBlock{
  display: inline-block;
}

.is-out{
  position: absolute;
  left: -9999999px;
}

.is-pc-hide {
  display: none;
}

.is-pc-inline ,
.pc-br {
  display: inline;
}

.is-sp-inline ,
.sp-br,
.ssp-br {
  display: none;
}

.is-pc-noevent {
  pointer-events: none;
}

.is-step > *{
  opacity: 0;
  transition: opacity 1.2s ease;
}
.is-step.is-show > *{
  opacity: 1;
}

.is-gothic {
  font-family: var(--font-family-gothic);
}

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

  .is-pc-hide {
    display: block;
  }

  .is-sp-hide {
    display: none;
  }

  .is-sp-inline ,
  .sp-br {
    display: inline;
  }

  .is-pc-inline ,
  .pc-br {
    display: none;
  }

  .is-pc-noevent {
    pointer-events: auto;
  }

  .is-spGothic {
    font-family: var(--font-family-gothic);
  }

}

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

  .ssp-br {
    display: inline;
  }

}
