@charset "UTF-8";
/*
Theme Name: 
Theme URI: 
Author: COMLAB
*/
/* font
  ========================================================================== */
/*Import font data*/
@font-face {
  font-family: "ZenKakuGothicNew";
  src: url("../fonts/ZenKakuGothicNew-Medium.ttf") format("truetype"), url("../fonts/ZenKakuGothicNew-Medium.woff") format("woff"), url("../fonts/ZenKakuGothicNew-Medium.svg") format("svg");
  font-weight: 500;
}
@font-face {
  font-family: "ShipporiMincho";
  src: url("../fonts/ShipporiMincho-Regular.ttf") format("truetype"), url("../fonts/ShipporiMincho-Regular.woff") format("woff"), url("../fonts/ShipporiMincho-Regular.svg") format("svg");
  font-weight: 400;
}
/*font family settings*/
/* mixin
  ========================================================================== */
/* !このファイルは制作時に書き換えを行わないでください! */
/* base
  ========================================================================== */
body {
  font-size: 16px;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.4px;
  color: #222;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

a:focus {
  outline: none;
}

section {
  position: relative;
}

textarea {
  padding: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input {
  padding-left: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input::-ms-clear {
  visibility: hidden;
}

input::-ms-reveal {
  visibility: hidden;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.slick-slide {
  outline: none;
}

li {
  list-style-type: none;
}

/*Safariでplaceholderの位置がずれるのを修正*/
body.js_isSafari input::-webkit-input-placeholder {
  position: relative;
  top: 0.18em;
}

/*Firefoxでplaceholdertextのopacityが小さくなるのを修正*/
input:-moz-placeholder,
input::-moz-placeholder {
  opacity: 1;
}

/* Android系で出るタップ時の青い枠を出さない */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* フォーカスインジケーターの表示 */
/*
*:focus-visible {
  outline: 2px solid #33568A;
  outline-offset:2px;
}
*/
/* header
   ========================================================================== */
/* block skip */
.c-skip_nav a {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
.c-skip_nav a:focus, .c-skip_nav a a:active {
  display: block;
  width: 15em;
  height: auto;
  top: 5px;
  left: 5px;
  clip: auto;
  z-index: 1000;
  font-size: 1.8rem;
  padding: 5px;
  background-color: #FFF;
  border: #CCC solid 1px;
  text-align: center;
}

/* 404(notfound)
   ========================================================================== */
.p-notfound {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 400px;
}
@media screen and (max-width: 840px) {
  .p-notfound {
    height: 330px;
  }
}

.p-notfound__text {
  padding-top: 3em;
}

.p-notfound__button {
  padding-top: 3em;
}
.p-notfound__button > a {
  text-decoration: underline;
}

/* variable
  ========================================================================== */
/* fadeIn */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* common
  ========================================================================== */
body {
  font-family: "ShipporiMincho", Yu Mincho, YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
      grid-template-areas: "header . ." ". . ." "main . footer";
  height: 100svh;
  width: 100svw;
  max-height: 100%;
  max-width: 100%;
  padding: 5.8svh 5.1%;
  opacity: 0;
  -webkit-animation: fadeIn 1.5s ease 0.1s 1 forwards;
          animation: fadeIn 1.5s ease 0.1s 1 forwards;
}
@media (max-width: 840px) {
  body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.8svh 6.75%;
    font-size: 0.8125rem;
  }
}
@media (max-width: 540px) {
  body {
    padding: 1.8svh 8.4%;
    font-size: 0.75rem;
  }
}

/* .l-bg */
.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.p-bg_slider, .p-bg_slider .slick-list, .p-bg_slider .slick-track {
  width: 100%;
  height: 100%;
}
.p-bg_slider__box .__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 8s;
  transition: -webkit-transform 8s;
  transition: transform 8s;
  transition: transform 8s, -webkit-transform 8s;
}
.p-bg_slider__box[tabindex="0"] .__img {
  -webkit-transform: scale(102.5%);
          transform: scale(102.5%);
}

/* header
  ========================================================================== */
/* .l-header */
.l-header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  padding-top: 3.2svh;
  grid-area: header;
}
@media (max-width: 840px) {
  .l-header {
    padding-top: 3.1svh;
  }
}
@media (max-width: 540px) {
  .l-header {
    padding-top: 3svh;
  }
}

.p-header_logo img {
  width: 286px;
}
@media (max-width: 840px) {
  .p-header_logo img {
    width: 245px;
  }
}
@media (max-width: 540px) {
  .p-header_logo img {
    width: 204px;
  }
}

/*.p-header_text {
	@include font-family.fz(25);
	letter-spacing: 0.025em;
	@media (max-width: 840px) {
		@include font-family.fz(21.5);
	}
	@media (max-width: 540px) {
		@include font-family.fz(18);
	}
	.__letter-long {
		letter-spacing: 0.15em;
	}
}*/
/* main
  ========================================================================== */
/* .l-main */
.l-main {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: main;
}
@media (max-width: 840px) {
  .l-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
/* footer
  ========================================================================== */
/* .l-footer */
.l-footer {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  -ms-grid-row-align: end;
      align-self: end;
  grid-area: footer;
}
@media (max-width: 840px) {
  .l-footer {
    margin-top: 3.1svh;
  }
}

.p-footer_copy {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
@media (max-width: 840px) {
  .p-footer_copy {
    font-size: 0.6875rem;
  }
}
@media (max-width: 540px) {
  .p-footer_copy {
    font-size: 0.625rem;
  }
}

/* index
  ========================================================================== */
/* .p-index_address */
.p-index_address__main .__sub {
  font-size: 0.875rem;
}
@media (max-width: 840px) {
  .p-index_address__main .__sub {
    font-size: 0.8125rem;
  }
}
@media (max-width: 540px) {
  .p-index_address__main .__sub {
    font-size: 0.75rem;
  }
}
.p-index_address__main .__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
}
.p-index_address__contact {
  font-size: 1rem;
  text-underline-offset: 0.3em;
  letter-spacing: 0.05em;
  text-decoration: underline;
  padding: 1.15em 0;
  display: inline-block;
}
@media (max-width: 840px) {
  .p-index_address__contact {
    padding: 0.97em 0 1em;
    font-size: 0.9375rem;
  }
}
@media (max-width: 540px) {
  .p-index_address__contact {
    padding: 0.8em 0 0.95em;
    font-size: 0.875rem;
  }
}