@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #333;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  color: #333;
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dd,
dt,
dl {
  margin: 0;
}

figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  margin: 2px;
  padding: 0 0.3em;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 0 0.3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type="checkbox"],
input[type="radio"] {
  background: #fff;
  cursor: pointer;
  margin-right: 0.5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #c5c5c5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous,
.pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}
.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul,
.breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"),
    url("./fonts/slick/slick.woff") format("woff"),
    url("./fonts/slick/slick.ttf") format("truetype"),
    url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #aaa;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
/* modal setting */
.main.fixed {
  position: relative;
}
.main.fixed:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #cacecb;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  z-index: 5;
}

.modal_content {
  height: 0;
}

.modal_content_block {
  display: none;
  position: fixed;
  width: calc(100% - 250px);
  height: 100lvh;
  top: 0;
  right: 0;
  z-index: 99;
}
@media screen and (min-width: 1501px) {
  .modal_content_block {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 768px) {
  .modal_content_block {
    width: 100%;
  }
}
.modal_content_block.open {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .modal_content_block.open {
    padding-top: 120px;
  }
}

.modal_content_block_back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.modal_content_block_body {
  position: relative;
}

.modal_content_block_close {
  position: absolute;
  width: 54px;
  height: 54px;
  background: #009f5d;
  border-radius: 100%;
  right: -25px;
  top: -25px;
  z-index: 4;
  rotate: 45deg;
}
.modal_content_block_close:hover {
  cursor: pointer;
  opacity: 0.8;
}
.modal_content_block_close:before,
.modal_content_block_close:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}
.modal_content_block_close:after {
  rotate: 90deg;
}

.modal_content_block_container {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 4px 4px 20px rgba(52, 81, 49, 0.4);
}

/***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .toggle {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    padding: 13px;
    right: 10px;
    text-align: center;
    top: 50%;
    translate: 0 -50%;
    z-index: 7;
  }

  .toggle__bar {
    position: relative;
    margin: 8px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .toggle__bar,
  .toggle__bar::before,
  .toggle__bar::after {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #009f5d;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .toggle__bar::before,
  .toggle__bar::after {
    position: absolute;
    content: "";
  }

  .toggle__bar::before {
    top: -8px;
  }

  .toggle__bar::after {
    top: 8px;
  }
}
.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

@media screen and (min-width: 769px) {
  .gnav {
    display: block !important;
    height: inherit !important;
  }
}
/***************************

 header

***************************/
.header {
  background-color: #fff;
  position: fixed;
  height: 100lvh;
  top: 0;
  left: 0;
  z-index: 999;
  width: 250px;
  padding: 30px 15px;
  border-right: 1px solid #ddd;
}
@media screen and (min-width: 1501px) {
  .header {
    width: 400px;
  }
}

.header .logo {
  margin-bottom: 50px;
}

.gnav {
  padding: 0 15px;
}

.gnav ul {
  margin-bottom: 40px;
}

.gnav ul li:not(:last-child) {
  margin-bottom: 30px;
}

.gnav ul li a {
  position: relative;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  background: linear-gradient(0deg, #009f5d 2px, transparent 2px);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 0 2px;
}
.gnav ul li a:hover {
  opacity: 1;
  color: #009f5d;
  background-size: 100% 2px;
}
.gnav ul li a.current {
  color: #009f5d;
  background-size: 100% 2px;
}

@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: auto;
    padding: 10px 15px;
    border-right: none;
  }

  .header .logo {
    margin-bottom: 0;
  }

  .gnav {
    position: fixed;
    display: none;
    right: 0;
    top: 87px;
    width: 100%;
    background: #fff;
    z-index: 6;
    padding: 20px 15px;
  }

  .gnav ul li {
    text-align: center;
  }

  .gnav .insta_link {
    display: block;
    width: 45px;
    margin: 0 auto;
  }
}
/***************************

layout/footer.scss

***************************/
.footer {
  width: calc(100% - 250px);
  margin-left: auto;
  margin-right: 0;
  background: #fff;
  color: #000;
  font-weight: normal;
  padding-top: 45px;
}
@media screen and (min-width: 1501px) {
  .footer {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 768px) {
  .footer {
    width: 100%;
  }
}

footer a,
footer a:hover {
  color: #333;
}

.footer_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px 40px;
  padding-bottom: 60px;
}

.footer_inner .add {
  width: 380px;
}
.footer_inner .add .logo {
  margin-bottom: 20px;
}
.footer_inner .add .map_link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #009f5d;
  text-decoration: underline;
}

.sub-nav {
  max-width: 650px;
  width: calc(100% - 420px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.sub-nav a {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer_under {
  width: 100%;
  border-top: 1px solid #ddd;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_under .copy {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.flat_site_link {
  display: flex;
  gap: 30px;
}
.flat_site_link a {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1024px) {
  .footer_inner {
    flex-wrap: wrap;
  }

  .footer_inner .add {
    width: 100%;
  }

  .sub-nav {
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .footer_under {
    flex-wrap: wrap;
  }

  .flat_site_link {
    width: 100%;
    justify-content: space-around;
  }

  .footer_under .copy {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sub-nav {
    max-width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .footer_inner .add {
    text-align: center;
  }

  .footer_inner .add .logo {
    text-align: center;
  }

  .footer_inner .add .insta_link {
    display: block;
    width: 45px;
    margin: 0 auto;
  }

  .sub-nav li {
    width: 50%;
    text-align: center;
  }

  .flat_site_link {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
.container_l {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
.yugo {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic",
    sans-serif;
}

.zen-kaku-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.middle {
  font-weight: 500;
}

.s-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.e-bold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.ls_12 {
  letter-spacing: 0.12em;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.ls_4 {
  letter-spacing: 0.04em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

.fz21 {
  font-size: clamp(18px, 2.7vw, 21px);
}

.fz15 {
  font-size: 1.5rem;
}

.fz14 {
  font-size: 1.4rem;
}

.col-white {
  color: #fff;
}

.f_set_palt {
  font-feature-settings: "palt";
}

/*////////////////////////

layout base

////////////////////////*/
.main {
  width: calc(100% - 250px);
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 1501px) {
  .main {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 768px) {
  .main {
    width: 100%;
    margin-top: 85px;
  }
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg_01 {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #009f5d 2px, transparent 2px);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 35px 100%;
  padding-top: 10px;
}

.hdg_01__en {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: #009f5d;
  margin-bottom: 10px;
}

.hdg_01__ja {
  font-size: clamp(24px, 3.7vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f0a07;
}

/***************************

object/project/top.scss

***************************/
.top-mv {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}
.top-mv .mv-image {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top-mv .mv-image {
    height: 450px;
    object-fit: cover;
  }
}
@media screen and (max-width: 600px) {
  .top-mv .mv-image {
    height: calc(100svh - 85px);
    /* 251001 add */
    height: auto;
  }
}
.top-mv:after {
  position: absolute;
  content: "";
  max-width: 485px;
  width: clamp(285px, 40vw, 485px);
  height: 485px;
  bottom: -50px;
  left: -50px;
  background-image: url(../img/top/mv-parts.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom right;
  mix-blend-mode: screen;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-mv {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .top-mv::after {
    bottom: 0;
  }
}

.main-visual {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 80px 0;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .main-visual {
    padding: 40px 0;
  }
}
@media screen and (max-width: 600px){
  .main-visual {
    position: relative;
  }
}

.main-visual_ttl {
  font-size: clamp(26px, 4.7vw, 48px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 600px){
  .main-visual_ttl{
    color: #009f5d;
  }
  .main-visual p {
    color: #000;
}
}

.t-section {
  width: 100%;
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .t-section {
    margin-bottom: 70px;
  }
}

.about_content_block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .about_content_block {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.about_content_text {
  max-width: 565px;
}
@media screen and (max-width: 1024px) {
  .about_content_text {
    max-width: 100%;
  }
}

.flat_meaning {
  width: 100%;
  background: #fef5ef;
  border: 1px dotted #49b887;
  border-radius: 5px;
  padding: 20px 30px;
}
.flat_meaning p span {
  background-color: #fff;
  font-weight: 500;
}

.about_content_image {
  max-width: 500px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about_content_image {
    max-width: 100%;
    width: 100%;
  }
}

.top02 {
  width: 100%;
  padding: 80px 0;
  background: #fef5ef;
}
@media screen and (max-width: 768px) {
  .top02 {
    padding: 40px 0;
  }
}

.support_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  .support_list {
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .support_list {
    margin-top: 40px;
    gap: 30px;
  }
}
.support_list li {
  max-width: 535px;
  width: calc(50% - 15px);
  border-top: 1px solid #ccc;
  padding-top: 50px;
}
@media screen and (max-width: 900px) {
  .support_list li {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .support_list li {
    padding-top: 25px;
  }
}

.facility-gallery {
  width: 100%;
  margin-top: 50px;
}

.swiper-button-prev.facility-gallery-prev {
  width: 41px;
  height: 41px;
  left: 13%;
  top: 45%;
}
@media screen and (min-width: 1201px) {
  .swiper-button-prev.facility-gallery-prev {
    top: 45%;
    left: 5%;
  }
}
@media screen and (max-width: 500px) {
  .swiper-button-prev.facility-gallery-prev {
    left: 6%;
    top: 25vw;
  }
}
.swiper-button-prev.facility-gallery-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top/facility-prev.png);
}

.swiper-button-next.facility-gallery-next {
  width: 41px;
  height: 41px;
  right: 13%;
  top: 45%;
}
@media screen and (min-width: 1201px) {
  .swiper-button-next.facility-gallery-next {
    top: 45%;
    right: 5%;
  }
}
@media screen and (max-width: 500px) {
  .swiper-button-next.facility-gallery-next {
    right: 6%;
    top: 25vw;
  }
}
.swiper-button-next.facility-gallery-next:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top/facility-next.png);
}

.facility_image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 25px;
}
.facility_image .img {
  width: 100%;
}

.facility-gallery-item:hover {
  cursor: pointer;
}
.facility-gallery-item:hover .modal-fillter {
  position: relative;
  display: block;
}
.facility-gallery-item:hover .modal-fillter:hover {
  opacity: 1;
}
.facility-gallery-item:hover .modal-fillter:hover:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: url(../img/top/facility-icn.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(102, 102, 102, 0.6);
  mix-blend-mode: multiply;
}
.facility-gallery-item:hover .modal-fillter:hover:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  background-image: url(../img/top/facility-icn.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.top04 {
  padding: 80px 0;
  background: #fef5ef;
}
@media screen and (max-width: 768px) {
  .top04 {
    padding: 40px 0;
  }
}

.company_content {
  width: 100%;
  display: flex;
  gap: 30px 50px;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .company_content {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .company_content {
    margin-top: 30px;
  }
}

.company_info {
  width: 100%;
}
.company_info div {
  display: flex;
  padding: 10px 0;
}
.company_info div dt {
  width: 135px;
}
.company_info div dd {
  width: calc(100% - 135px);
}

.company_map {
  max-width: 585px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .company_map {
    max-width: 100%;
  }
}
.company_map iframe {
  height: 70%;
}
@media screen and (max-width: 1024px) {
  .company_map iframe {
    height: 50vh;
  }
}

.staff_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .staff_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .staff_list {
    margin-top: 30px;
    gap: 30px 20px;
  }
}
@media screen and (max-width: 425px) {
  .staff_list {
    grid-template-columns: 100%;
  }
}

.staff_image {
  margin-bottom: 30px;
}
.staff_image img {
  width: 100%;
}

.staff_post {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #009f5d;
  margin-bottom: 10px;
}

.staff_name {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.staff_name_ja {
  font-size: clamp(18px, 2.7vw, 21px);
}

.staff_name_en {
  font-size: 1.3rem;
  color: #cacad9;
}

.staff_license li {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.insta_field {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .insta_field {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .insta_field {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.insta_field li img {
  border-radius: 4px;
}

.btn-instaLink {
  display: block;
  max-width: 275px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 40px 20px 50px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  background: #009f5d;
  background-image: url(../img/top/arrow01.png), url(../img/top/insta-icn.png);
  background-repeat: no-repeat;
  background-position: right 20px center, left 40px center;
}
.btn-instaLink:hover {
  color: #fff;
}

.top07 {
  padding: 80px 0;
  background: #f2f2f2;
  border-top-right-radius: 14px;
  border-top-left-radius: 14px;
}
@media screen and (max-width: 768px) {
  .top07 {
    padding: 40px 0;
  }
}

.form_wrap {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 80px;
}
.form_wrap dl {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form_wrap {
    margin-bottom: 50px;
  }
}

.form_wrap_block {
  padding: 10px 0;
}
.form_wrap_block dt {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 10px;
}
.form_wrap_block input[type="text"],
.form_wrap_block input[type="email"],
.form_wrap_block input[type="tel"] {
  font-size: 15px;
  font-size: 1.5rem;
  background: #fff;
  border: none;
  margin: 0;
  padding: 15px 25px;
  width: 100%;
  height: 55px;
  letter-spacing: 0.04em;
  border-radius: 4px;
}
.form_wrap_block textarea::placeholder,
.form_wrap_block input::placeholder {
  color: #ccc;
}
.form_wrap_block textarea {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  background: #fff;
  border: none;
  padding: 15px 25px;
  resize: vertical;
  height: 155px;
  border-radius: 4px;
}
.form_wrap_block input[type="radio"] {
  display: none;
}
.form_wrap_block .contact-radio-wrap .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.form_wrap_block .contact-radio-wrap .wpcf7-list-item {
  min-width: 205px;
  background: #fff;
  border: none;
  padding: 20px 15px;
  display: inline-flex;
  align-items: center;
}
.form_wrap_block .contact-radio-wrap .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding: 0 0 0 35px;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.form_wrap_block .contact-radio-wrap .wpcf7-list-item-label::after,
.form_wrap_block .contact-radio-wrap .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.3s;
}
.form_wrap_block .contact-radio-wrap .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 50%;
}
.form_wrap_block .contact-radio-wrap .wpcf7-list-item-label::before {
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 13px;
  height: 13px;
  background: #009f5d;
  border-radius: 100%;
  opacity: 0;
  z-index: 1;
  border: 0;
}
.form_wrap_block
  .contact-radio-wrap
  input[type="radio"]:checked
  + .wpcf7-list-item-label::before {
  opacity: 1;
}

.form_submit {
  max-width: 275px;
  width: 100%;
  margin: 50px auto 0;
}
.form_submit input {
  width: 100%;
  background: #009f5d;
  border: none;
  padding: 25px 40px;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: 500;
  background-image: url(../img/top/arrow01.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.contact_tel_wrap {
  width: 100%;
  background: #fff;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .contact_tel_wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contact_tel_wrap {
    padding: 20px;
  }
}
.contact_tel_wrap h3 {
  font-size: clamp(18px, 2.7vw, 21px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #009f5d;
}
.contact_tel_wrap a {
  font-size: clamp(25px, 4vw, 42px);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #009f5d;
}
@media screen and (max-width: 768px) {
  .contact_tel_wrap a img {
    width: 40px;
  }
}

.contact_tel {
  text-align: right;
}
@media screen and (max-width: 900px) {
  .contact_tel {
    text-align: center;
  }
}

/* 250730 instagram add */
.instagram-wrapper {
  margin-top: 50px;
  margin-bottom: 30px;
}
.instagram-wrapper .--sp {
  display: block;
}
.instagram-wrapper .--pc {
  display: none;
}
@media (min-width: calc(768em / 16)) {
  .instagram-wrapper .--sp {
    display: none;
  }
  .instagram-wrapper .--pc {
    display: block;
  }
}

/* 250909 add */
.inline-block {
  display: inline-block;
}
