@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 10px;
}

body {
  /* プロジェクトによって変動 */
  background-color: #FFF;
  color: #333333;
  line-height: 1.8;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums;
  /* safari hover対策 */
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

h1 {
  font-size: 4.8rem;
  font-weight: 500;
}

h2 {
  font-size: 3.2rem;
  font-weight: 500;
}

h3 {
  font-size: 2.4rem;
  font-weight: 500;
}

h4 {
  font-size: 2.4rem;
  font-weight: 500;
}

h5 {
  font-size: 2rem;
  font-weight: 500;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
  line-height: 1;
}

button {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

select {
  color: #333;
}

@media screen and (max-width: 650px) {
  html {
    /* 1rem = 50pxと再定義 */
    font-size: 5px;
  }
  body {
    font-size: 2.8rem;
  }
  h1 {
    font-size: 8rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3.6rem;
  }
}
/* ///////////////////////////////////////




アニメーション




/////////////////////////////////////// */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger,
.fadeUpTrigger,
.fadeRightTrigger,
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime; /*アニメーションの定義名*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

/*アニメーションの開始から終了までを指定する*/
@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 2s ease-out forwards;
          animation: text_anime_on 2s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomInAnime {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ///////////////////////////////////////

背景色・テキストカラー

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

フォント

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

ボーダー

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




共通




/////////////////////////////////////// */
body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
body a {
  text-decoration: none;
  cursor: pointer;
}

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




画面幅




/////////////////////////////////////// */
.large_container {
  max-width: 1280px;
  width: 90%;
  margin: auto;
}

.large_container02 {
  max-width: 1320px;
  width: 90%;
  margin: auto;
}

.container {
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}

.mid_container {
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
}

.sm_container {
  max-width: 600px;
  width: 90%;
  margin: auto;
}

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




余白・改行




/////////////////////////////////////// */
.mt_100 {
  margin-top: 10rem;
}

.mt_60 {
  margin-top: 6rem;
}

.mt_40 {
  margin-top: 4rem;
}

.mt_24 {
  margin-top: 2.4rem;
}

.mt_16 {
  margin-top: 1.6rem;
}

.mt_10 {
  margin-top: 1rem;
}

.ptb_100 {
  padding: 10rem 0 10rem 0;
}

.pb_100 {
  padding-bottom: 10rem;
}

.indent {
  text-indent: -1em !important;
  padding-left: 1em !important;
}

.center {
  text-align: center;
}

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




flex




/////////////////////////////////////// */
.fl {
  display: flex;
}

@media screen and (max-width: 980px) {
  .fl {
    flex-direction: column;
  }
}
@media screen and (max-width: 650px) {
  .pc_none {
    display: inline-block;
  }
}
/* ///////////////////////////////////////




ボタン



/////////////////////////////////////// */
.btn {
  display: block;
  width: 240px;
  height: 50px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  border: #0F4764 1px solid;
  border-radius: 999px;
  font-family: "Shippori Mincho B1", sans-serif;
  color: #0F4764;
  font-weight: 500;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: 0.5s;
}
.btn::after {
  content: "";
  display: inline-block;
  background-image: url(../images/arrow04.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 4px;
}
.btn:hover {
  transform: scale(0.95);
}

@media screen and (max-width: 650px) {
  .btn {
    width: 180px;
    height: 40px;
    font-size: 3.2rem;
  }
  .btn::before {
    width: 12px;
    height: 3px;
  }
}
/* ///////////////////////////////////////




コンテンツのタイトル




/////////////////////////////////////// */
.con_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  line-height: 1;
}
.con_ttl h2 {
  font-family: "Shippori Mincho B1", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #0F4764;
}
.con_ttl p {
  font-family: "Cormorant", sans-serif;
  color: #9C8D5D;
}
.con_ttl::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #0F4764;
}

.con_ttl02 {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}
.con_ttl02 h2 {
  font-family: "Shippori Mincho B1", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #0F4764;
  letter-spacing: 0.08em;
}
.con_ttl02 h2::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #0F4764;
  margin-top: 5px;
}
.con_ttl02 p {
  font-family: "Cormorant", sans-serif;
  color: #9C8D5D;
}

@media screen and (max-width: 650px) {
  .con_ttl h2 {
    font-size: 4.8rem;
    color: #0F4764;
  }
  .con_ttl p {
    font-size: 12px;
  }
  .con_ttl::after {
    height: 15px;
  }
  .con_ttl02 h2 {
    font-size: 4.8rem;
  }
  .con_ttl02 h2::after {
    height: 15px;
  }
  .con_ttl02 p {
    font-size: 12px;
  }
}
/* ///////////////////////////////////////




コンタクトエリア




/////////////////////////////////////// */
.access {
  background-color: #F8F8F6;
}

.access .map {
  width: 100%;
  height: 450px;
}
.access .map iframe {
  width: 100%;
  height: 100%;
}

.access_info {
  align-items: center;
}
.access_info > div {
  width: 33.3333333333%;
  box-sizing: border-box;
  padding: 2rem;
}
.access_info > div:not(:last-child) {
  border-right: 1px solid #DFDFDF;
}
.access_info > div h3 {
  font-size: 1.6rem;
  color: #0F4764;
}
.access_info > div p {
  margin-top: 10px;
}

.reservation {
  margin-top: 10rem;
  background: url(../images/reserve.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10rem 0;
  color: #FFFFFF;
  position: relative;
  z-index: 0;
  transform: 0.5s;
}
.reservation::before {
  content: "";
  display: inline-block;
  background-color: rgba(51, 51, 51, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  transition: transform 0.6s ease;
  transform: translateX(0);
}
.reservation::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  transition: transform 0.6s ease;
  transform: translateX(0);
}
.reservation .fl {
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  width: 90%;
  margin: auto;
}
.reservation .fl img {
  width: 30px;
  height: auto;
}
.reservation a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.reservation:hover::after {
  transform: translateX(100%);
}

.reservation .ttl h3 {
  font-family: "Shippori Mincho B1", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}
.reservation .ttl p {
  font-family: "Cormorant", sans-serif;
  margin-top: 1rem;
}
.reservation p.txt {
  margin-top: 2.4rem;
}

.access .cta_btn {
  gap: 3.2rem;
  max-width: 1040px;
  margin: 6rem auto 0 auto;
  width: 90%;
}
.access .cta_btn li {
  width: calc((100% - 3.2rem) / 2);
  height: 110px;
  color: #FFFFFF;
  font-family: "Shippori Mincho B1", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  outline: 1px solid #FFFFFF;
  outline-offset: -1rem;
  transition: 0.5s;
}
.access .cta_btn li:first-child {
  background-color: #0F4764;
}
.access .cta_btn li:last-child {
  background-color: #9C8D5D;
}
.access .cta_btn li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.access .cta_btn li:hover {
  transform: scale(0.95);
}

@media screen and (max-width: 980px) {
  .access_info > div {
    width: 100%;
    padding: 0 0 2rem 0;
    border-bottom: 1px solid #DFDFDF;
  }
  .access_info > div:not(:last-child) {
    border-right: none;
  }
  .reservation .wrap {
    width: 100%;
  }
  .reservation .fl {
    gap: 8rem;
  }
  .reservation .fl img {
    margin-left: auto;
  }
  .access .cta_btn {
    align-items: center;
    gap: 2rem;
  }
  .access .cta_btn li {
    width: 100%;
    max-width: 500px;
  }
}
@media screen and (max-width: 650px) {
  .access .map {
    height: 180px;
  }
  .access_info > div h3 {
    font-size: 2.8rem;
  }
  .reservation .ttl h3 {
    font-size: 4.8rem;
  }
  .reservation .ttl p {
    font-size: 12px;
  }
  .reservation .fl img {
    width: 20px;
  }
  .access .cta_btn li {
    font-size: 3.2rem;
    height: 70px;
  }
} /* ///////////////////////////////////////




フッター




/////////////////////////////////////// */
footer {
  background-color: #0F4764;
  color: #FFFFFF;
}

.footer_wrap .logo {
  width: 160px;
}
.footer_wrap .logo img {
  width: 100%;
}

.footer_wrap {
  justify-content: space-between;
  padding: 6rem 0;
}

.footer_menu {
  gap: 4rem;
}
.footer_menu li {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-size: 14px;
  font-family: "Shippori Mincho B1", sans-serif;
  letter-spacing: 0.05em;
  color: transparent;
  background: linear-gradient(to right, #9C8D5D 50%, #FFFFFF 50%) 100%;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.5s;
}
.footer_menu li:hover {
  background-position: 0 100%;
}

.copy_wrap {
  background-color: #09374F;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid #8D8D8D;
}

.copy {
  font-family: "Cormorant", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}
.copy p {
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 980px) {
  .footer_wrap {
    flex-direction: column;
    gap: 4rem;
  }
  .footer_item {
    text-align: center;
  }
  .footer_menu {
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_menu li {
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 650px) {
  .footer_wrap {
    gap: 6rem;
  }
  .logo {
    width: 120px;
  }
  .copy_wrap {
    padding: 2rem 0;
  }
  .copy {
    font-size: 14px;
  }
}
/* ///////////////////////////////////////




メインビジュアル




/////////////////////////////////////// */
.mv {
  width: calc(100% - 200px);
  height: 750px;
  background-image: url(../images/mv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 0 0 auto;
  position: relative;
  z-index: -1;
}
.mv::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 27, 20, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.mv h1 {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-size: 4.8rem;
  font-family: "Shippori Mincho B1", sans-serif;
  color: #FFFFFF;
  font-weight: 500;
  position: absolute;
  right: 10rem;
  bottom: 6rem;
}
.mv h1 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  -webkit-animation: slideUpFade 0.8s ease-out forwards;
          animation: slideUpFade 0.8s ease-out forwards;
}
.mv h1 span:nth-of-type(1) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.mv h1 span:nth-of-type(2) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.mv h1 span:nth-of-type(3) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1200px) {
  .mv {
    width: 100%;
  }
  .mv h1 {
    right: 5%;
  }
}
/* ///////////////////////////////////////




PR




/////////////////////////////////////// */
.pr {
  padding-top: 15rem;
  overflow: hidden;
  position: relative;
}
.pr::before {
  content: "";
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 32.04vw;
  position: absolute;
  background-image: url(../images/illust01.png);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 4rem;
  z-index: 1;
}

.pr .ttl {
  position: relative;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  display: flex;
  align-items: center;
}

.pr h2 {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  line-height: 2.5;
  color: #0F4764;
  font-family: "Shippori Mincho B1", sans-serif;
}

.animate-text span {
  opacity: 0;
  transform: translateX(60px) scale(0.9);
  filter: blur(30px);
  transition: opacity 1.6s ease, transform 1.6s ease, filter 1.6s ease;
}

.animate-text.show span {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.animate-text.show span:nth-of-type(1),
.animate-text.show span:nth-of-type(2),
.animate-text.show span:nth-of-type(3) {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.animate-text.show span:nth-of-type(1) {
  transition-delay: 0.3s;
}

.animate-text.show span:nth-of-type(2) {
  transition-delay: 0.8s;
}

.animate-text.show span:nth-of-type(3) {
  transition-delay: 1.3s;
}

.pr .bg {
  background-color: #F8F8F6;
  position: relative;
  padding-bottom: 10rem;
  z-index: 0;
}
.pr .bg p {
  line-height: 2.4;
  text-align: center;
  font-size: 2rem;
}
.pr .bg::before {
  content: "";
  display: inline-block;
  background-color: #F8F8F6;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  width: 100%;
  height: 500px;
  position: absolute;
  top: -275px;
  left: 0;
  z-index: -1;
}

.pr .bg ul {
  gap: 6rem;
  row-gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pr .bg ul li {
  position: relative;
}
.pr .bg ul li:first-child {
  width: calc((100% - 18rem) * 0.2709);
  /* 約27.09% */
  top: 1.18vw;
}
.pr .bg ul li:nth-child(2) {
  width: calc((100% - 18rem) * 0.1992);
  /* 約19.92% */
  top: 4.17vw;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.pr .bg ul li:nth-child(3) {
  width: calc((100% - 18rem) * 0.3028);
  /* 約30.28% */
}
.pr .bg ul li:nth-child(4) {
  width: calc((100% - 18rem) * 0.2271);
  /* 約22.71% */
  top: 5vw;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.pr .bg ul li:nth-child(5) {
  width: 17.7081952%;
  /* ≒ 25.63% */
  top: 3.82vw;
}
.pr .bg ul li:nth-child(6) {
  width: 26.3881612%;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.pr .bg ul li:nth-child(7) {
  width: 24.9996708%;
  top: 2.78vw;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.pr .bg ul li img {
  width: 100%;
}

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




特徴　features




/////////////////////////////////////// */
.features {
  position: relative;
  overflow: hidden;
}
.features::before, .features::after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
.features::before {
  background-image: url(../images/circle01.png);
  width: 300px;
  height: 350px;
  top: 4rem;
  left: 0;
}
.features::after {
  background-image: url(../images/circle03.png);
  width: 400px;
  height: 400px;
  left: -5%;
  bottom: 5rem;
}

.features h2 {
  color: #0F4764;
  font-family: "Shippori Mincho B1", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
}

.features .item h3 {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", sans-serif;
  color: #FFFFFF;
  line-height: 1;
  position: absolute;
  left: 0;
  top: -4rem;
  left: 2rem;
  font-size: 3.2rem;
}
.features .item h3 .num {
  transform: rotate(-90deg);
  display: inline-block;
}
.features .item h3 .bg {
  background-color: #0F4764;
  padding: 2rem;
  display: inline-block;
}
.features .item h3 .bg:first-child {
  margin-left: 10px;
}

.features .item {
  position: relative;
  margin-top: 10rem;
  gap: 4rem;
  border: #0F4764 1px solid;
  box-sizing: border-box;
  background-color: #FFFFFF;
}
.features .item:nth-of-type(even) {
  flex-direction: row-reverse;
  position: relative;
  z-index: 1;
}
.features .item:nth-of-type(even) h3 {
  right: 2rem;
}
.features .item:nth-of-type(even) .txt_wrap {
  padding: 6rem 0 6rem 6rem;
}
.features .item:nth-of-type(3) {
  position: relative;
  z-index: 1;
}
.features .item:nth-of-type(3)::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  background-image: url(../images/circle01.png);
  width: 300px;
  height: 415px;
  top: 15%;
  right: -25%;
}
.features .item img {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features .item .txt_wrap {
  flex: 1;
  box-sizing: border-box;
  padding: 6rem 6rem 6rem 0;
  background-color: #FFFFFF;
}
.features .item .txt_wrap p {
  line-height: 2.4;
}

.features .item .txt_wrap h4 {
  font-size: 1.6rem;
  color: #0F4764;
  font-weight: 700;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.features .item .txt_wrap h4::before {
  content: "";
  display: inline-block;
  background-color: #0F4764;
  height: 1px;
  flex: auto;
}
.features .item .txt_wrap ul {
  margin-top: 1.6rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.features .item .txt_wrap ul li {
  width: calc((100% - 2rem) / 2);
  text-align: center;
  font-weight: 700;
  background-color: #F8F8F6;
  border-radius: 999px;
  box-sizing: border-box;
  padding: 5px 0;
}

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




施設紹介




/////////////////////////////////////// */
.factory {
  background-color: #F8F8F6;
  overflow: hidden;
}

.factory .large_container {
  margin: 0 0 0 auto;
  overflow: hidden;
}

.factory_list {
  width: 100%;
  height: 500px;
}

.slider2 .swiper-slide {
  width: 320px !important;
  height: 500px;
}
.slider2 .swiper-slide:not(:last-child) {
  margin-right: 4rem !important;
}

.factory_list img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.factory_list h3 {
  font-size: 2.4rem;
  font-family: "Shippori Mincho B1", sans-serif;
  color: #0F4764;
  margin-top: 2.4rem;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
  height: 8px !important;
  width: 30px !important;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  height: 8px !important;
  width: 30px !important;
  background-image: url(../images/arrow01.png) !important;
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  height: 8px !important;
  width: 30px !important;
  background-image: url(../images/arrow02.png) !important;
}

.factory .wrap {
  position: relative;
  width: 120px;
  height: 30px;
}

.factory .foot {
  justify-content: space-between;
  align-items: center;
  max-width: 1040px;
  margin: 8rem auto 0 auto;
}

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




NEWS




/////////////////////////////////////// */
.news_wrap {
  gap: 8rem;
  align-items: flex-start;
}
.news_wrap .con_ttl02 {
  flex-shrink: 0;
}
.news_wrap .news_item {
  flex: 1;
}
.news_wrap .news_con {
  align-items: center;
  gap: 2.4rem;
  position: relative;
  padding: 3.2rem 0 2.4rem 0;
  border-top: 1px solid #DFDFDF;
  transition: 0.5s;
}
.news_wrap .news_con:last-of-type {
  border-bottom: 1px solid #DFDFDF;
}
.news_wrap .news_con h3 {
  font-size: 1.6rem;
  font-weight: 500;
}
.news_wrap .news_con img {
  width: 15px;
  height: 4px;
}
.news_wrap .news_con .ttl_wrap {
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.news_wrap .news_con a {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.news_wrap .news_con:hover {
  background-color: rgba(248, 248, 246, 0.6);
}

.news_head .date {
  margin-right: 1rem;
  font-family: "Cormorant", sans-serif;
  color: #0F4764;
}
.news_head .cat {
  color: #FFFFFF;
  font-size: 12px;
  background-color: #0F4764;
  padding: 3px 10px;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  PR




  /////////////////////////////////////// */
  .pr .bg ul {
    flex-direction: row;
  }
  /* ///////////////////////////////////////




  特徴　features




  /////////////////////////////////////// */
  .features {
    padding-top: 20rem;
  }
  .features::before {
    top: 2.4rem;
  }
  .features h2 .pc_none {
    display: inline-block;
  }
  .features .item:nth-of-type(even) {
    flex-direction: column;
  }
  .features .item:nth-of-type(3)::before {
    content: none;
  }
  .features .item img {
    width: 100%;
    aspect-ratio: 17/12;
  }
  .features .item .txt_wrap {
    padding: 0 4rem 6rem 4rem;
  }
  .features .item:nth-of-type(even) .txt_wrap {
    padding: 0 4rem 6rem 4rem;
  }
  .features .item .txt_wrap ul {
    flex-direction: row;
  }
  .features .item .txt_wrap ul li {
    width: calc((100% - 2rem) / 2);
  }
  /* ///////////////////////////////////////




  施設紹介




  /////////////////////////////////////// */
  .factory .foot {
    flex-direction: row;
  }
  /* ///////////////////////////////////////




  NEWS




  /////////////////////////////////////// */
  .news_wrap {
    flex-direction: row;
    gap: 6rem;
  }
  .news_wrap .news_con {
    align-items: flex-start;
    gap: 2rem;
  }
  .news_wrap .news_con .ttl_wrap {
    width: 100%;
    gap: 10px;
  }
  .news_wrap .news_con .ttl_wrap h3 {
    width: 100%;
  }
  .news_wrap .news_con .ttl_wrap img {
    margin-left: auto;
  }
  .news_head {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  メインビジュアル




  /////////////////////////////////////// */
  .mv {
    height: 680px;
  }
  .mv h1 {
    font-size: 6.4rem;
    bottom: 40px;
  }
  /* ///////////////////////////////////////




  PR




  /////////////////////////////////////// */
  .pr {
    padding-top: 28rem;
  }
  .pr .ttl {
    top: -17px;
  }
  .pr::before {
    height: 32.82vw;
    top: 16rem;
  }
  .pr h2 {
    font-size: 4.8rem;
  }
  .pr .bg {
    padding-bottom: 34.56vw;
  }
  .pr .bg::before {
    top: -185px;
  }
  .pr .bg p {
    font-size: 2.8rem;
  }
  .pr .bg ul {
    gap: 5rem;
  }
  .pr .bg ul li:first-child {
    width: 35.91%;
    top: 0;
  }
  .pr .bg ul li:nth-child(2) {
    width: 25.64%;
    top: 7.69vw;
  }
  .pr .bg ul li:nth-child(3) {
    width: calc((100% - 10rem) * 0.4412); /* 150px相当の比率 */
    top: 0;
  }
  .pr .bg ul li:nth-child(4) {
    width: calc((100% - 10rem) * 0.2941); /* 100px相当の比率 */
    top: 10.26vw;
  }
  .pr .bg ul li:nth-child(5) {
    width: calc((100% - 10rem) * 0.2647); /* 90px相当の比率 */
    top: 5.13vw;
  }
  .pr .bg ul li:nth-child(6) {
    width: 40.99%;
    top: 7.69vw;
  }
  .pr .bg ul li:nth-child(7) {
    width: 30.73%;
    top: 19.23vw;
  }
  /* ///////////////////////////////////////




  特徴　features




  /////////////////////////////////////// */
  .features {
    padding-top: 21.8rem;
  }
  .features h2 {
    font-size: 4rem;
  }
  .features::before {
    width: 160px;
    height: 185px;
  }
  .features::after {
    width: 175px;
    height: 175px;
    bottom: 4rem;
    right: -5%;
    left: auto;
  }
  .features .item h3 {
    font-size: 4rem;
  }
  .features .item .txt_wrap h4 {
    font-size: 14px;
  }
  .features .item .txt_wrap ul {
    flex-direction: column;
    margin-top: 10px;
  }
  .features .item .txt_wrap ul li {
    width: 100%;
  }
  /* ///////////////////////////////////////




  施設紹介




  /////////////////////////////////////// */
  .factory_list {
    height: 100%;
  }
  .slider2 {
    height: 320px;
  }
  .slider2 .swiper-slide {
    width: 200px !important;
    height: 100%;
  }
  .slider2 .swiper-slide img {
    height: 280px;
  }
  .factory .wrap {
    width: 60px;
  }
  .swiper-button-next::after,
.swiper-button-prev::after {
    width: 20px !important;
    height: 5px !important;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0 !important;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0 !important;
  }
  .factory_list h3 {
    font-size: 3.2rem;
  }
  /* ///////////////////////////////////////




  NEWS




  /////////////////////////////////////// */
  .news_wrap .news_con .ttl_wrap h3 {
    font-size: 2.8rem;
  }
  .news_wrap .btn {
    max-width: 180px;
    width: 100%;
  }
}
/* ///////////////////////////////////////




ヘッダー




/////////////////////////////////////// */
.logo {
  display: inline-block;
  width: 148px;
  margin: auto;
}

.global_nav img {
  width: 100%;
}

.global_nav {
  position: relative;
}

.pc_menu {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: space-between;
  width: 200px;
  height: 100vh;
  box-sizing: border-box;
  padding: 2rem;
  z-index: 998;
}
.pc_menu > div {
  flex: 1;
  margin-top: clamp(4rem, 6vw, 14rem);
}
.pc_menu .menu li {
  text-align: center;
  font-family: "Shippori Mincho B1", sans-serif;
  color: transparent;
  background: linear-gradient(to right, #9C8D5D 50%, #333333 50%) 100%;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.5s;
}
.pc_menu .menu li:not(:first-child) {
  margin-top: clamp(2rem, 0.278vw + 2rem, 4rem);
}
.pc_menu .menu li span {
  display: block;
  font-family: "Cormorant", sans-serif;
  font-size: 12px;
  margin-top: 5px;
  color: #0F4764;
}
.pc_menu .menu li:hover {
  background-position: 0 100%;
}

.btn_wrap {
  gap: 10px;
  justify-content: center;
  margin-top: clamp(4rem, 5vw, 8rem);
}

.btn_wrap li {
  width: 50px;
  height: 160px;
  padding: 0 15px;
  box-sizing: border-box;
  text-align: center;
  font-family: "Shippori Mincho B1", sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.btn_wrap li:first-child {
  background-color: #0F4764;
  color: #FFFFFF;
}
.btn_wrap li:last-child {
  background-color: #FFFFFF;
  color: #0F4764;
  border: 1px solid #0F4764;
}
.btn_wrap li a {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 1.2;
}
.btn_wrap li:hover {
  box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
}

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




ハンバーガーメニュー




/////////////////////////////////////// */
.sp_menu {
  display: none;
  position: fixed;
  z-index: 998;
  background-color: #0F4764;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 10rem 4rem 0 4rem;
  border-radius: 0 0 5px 5px;
}

.sp_menu .menu li {
  color: #FFFFFF;
  font-family: "Shippori Mincho B1", sans-serif;
  font-size: 16px;
}
.sp_menu .menu li span {
  display: block;
  font-size: 12px;
}

.sp_menu > .fl {
  max-width: 500px;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  align-items: flex-end;
}

.sp_menu .btn_wrap li:first-child {
  background-color: #9C8D5D;
  color: #FFFFFF;
}
.sp_menu .btn_wrap li:last-child {
  background-color: #FFFFFF;
  border: 1px solid #9C8D5D;
  color: #9C8D5D;
}

.sp_menu.show {
  display: block;
  -webkit-animation: fade-in 0.5s;
          animation: fade-in 0.5s;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
/* ハンバーガーメニュー３本線 */
.nav_toggle_wrap {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 999;
  cursor: pointer;
}
.nav_toggle_wrap p {
  font-family: "Cormorant", sans-serif;
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  margin-top: 5px;
}

.nav_toggle {
  width: 30px;
  height: 20px;
  z-index: 999;
  box-sizing: border-box;
  position: relative;
}

.nav_toggle i {
  display: block;
  width: 30px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  transition: transform 0.5s, opacity 0.5s;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.nav_toggle i:nth-child(1) {
  top: 0;
}

.nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.nav_toggle i:nth-child(3) {
  bottom: 0;
}

/* .showクラスがついた時の挙動 */
.nav_toggle.show i:nth-child(1) {
  transform: translateY(6px) rotate(-25deg);
  left: 0%;
}

.nav_toggle.show i:nth-child(2) {
  opacity: 0;
}

.nav_toggle.show i:nth-child(3) {
  transform: translateY(-12px) rotate(25deg);
  left: 0;
}

.sp_menu ul:first-child {
  margin-top: 4rem;
}

.sp_menu ul:first-child > li {
  border-bottom: 1px solid #0F4764;
  padding: 2rem 0;
}
.sp_menu ul:first-child > li:first-child {
  padding-top: 0;
}
.sp_menu ul:first-child > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.header_02 .nav_toggle i {
  background-color: #333333;
}
.header_02 .nav_toggle_wrap p {
  color: #333333;
}
.header_02 .nav_toggle.show i {
  background-color: #FFFFFF;
}
.header_02 .nav_toggle.show ~ p {
  color: #FFFFFF;
  transition: 0.3s;
}

.nav_toggle_wrap.change-color .nav_toggle i {
  background-color: #333333;
}
.nav_toggle_wrap.change-color p {
  color: #333333;
}
.nav_toggle_wrap.change-color .nav_toggle.show i {
  background-color: #FFFFFF;
}
.nav_toggle_wrap.change-color .nav_toggle.show ~ p {
  color: #FFFFFF;
  transition: 0.3s;
}

@media screen and (max-width: 1200px) {
  .pc_menu {
    display: none;
  }
  .sp_menu .fl {
    flex-direction: row;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
  .sp_menu {
    box-sizing: border-box;
    padding: 13rem 8rem 0 8rem;
  }
  .sp_menu > .fl {
    width: 100%;
  }
  .nav_toggle_wrap {
    width: 25px;
    height: 28px;
  }
}
/* ///////////////////////////////////////


下層ページMV


/////////////////////////////////////// */
.page_mv {
  width: 100%;
  height: 450px;
  background-image: url(../images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.page_mv > div {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: absolute;
  bottom: -40px;
  display: flex;
  justify-content: center;
}
.page_mv h1 {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-weight: 600;
  font-size: 4rem;
  font-family: "Shippori Mincho B1", sans-serif;
  letter-spacing: 0.1em;
}
.page_mv::before {
  content: "";
  display: inline-block;
  width: 37.5vw;
  height: 20.83vw;
  background-image: url(../images/illust03.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -40px;
  right: 0;
}

.news_mv::before {
  background-image: url(../images/illust05.png);
}

.price_mv::before {
  background-image: url(../images/illust04.png);
}

.contact_mv > div {
  bottom: -9.58vw;
}
.contact_mv::before {
  background-image: url(../images/illust06.png);
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////


  下層ページMV


  /////////////////////////////////////// */
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////


  下層ページMV


  /////////////////////////////////////// */
  .page_mv {
    width: 100%;
    height: 53.85vw;
    background-image: url(../images/bg_sp.png);
    background-position: center bottom;
  }
  .page_mv h1 {
    font-size: 4.8rem;
    bottom: -46px;
  }
  .page_mv::before {
    width: 46.15vw;
    height: 25.64vw;
    bottom: 11.79vw;
    right: 0;
  }
  .contact_mv > div {
    bottom: -80px;
  }
}
/* ///////////////////////////////////////




コンタクトフォーム




/////////////////////////////////////// */
.contact_form .container {
  max-width: 945px;
}

.contact_form {
  margin-top: 30rem;
  padding-top: 0;
}
.contact_form .lead {
  text-align: center;
}

.contact_form .must,
.contact_form .any {
  color: #FFFFFF;
  margin-right: 5px;
  font-weight: 500;
  font-size: 12px;
  padding: 2px 10px;
}

.contact_form .must {
  background-color: #0F4764;
}

.contact_form .any {
  background-color: #DFDFDF;
}

.contact_form dl {
  display: flex;
}
.contact_form dl:not(:last-of-type) {
  align-items: center;
}
.contact_form dl dt {
  width: 30%;
  font-weight: 500;
}
.contact_form dl dd {
  width: 70%;
  font-family: "Shippori Mincho B1", sans-serif;
  font-weight: 500;
}

.contact_form dl:not(:first-of-type) {
  margin-top: 4rem;
}

span.wpcf7-list-item {
  display: block;
  margin: 0;
}

input.wpcf7-form-control.wpcf7-text {
  width: 100%;
  border-radius: 2px;
  border: none;
  height: 50px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 1.5rem;
  background-color: #F8F8F6;
  border: 1px solid #DFDFDF;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  height: 200px;
  border: none;
  padding: 1.5rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  background-color: #F8F8F6;
  border: 1px solid #DFDFDF;
}

::-moz-placeholder {
  color: #DFDFDF;
}

:-ms-input-placeholder {
  color: #DFDFDF;
}

::placeholder {
  color: #DFDFDF;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #DFDFDF;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #DFDFDF;
}

input:focus {
  outline: 1px solid #0F4764;
}

textarea:focus {
  outline: 1px solid #0F4764;
}

.submit_btn {
  margin: 6rem 0;
  display: block;
  text-align: center;
}

input.wpcf7-form-control.wpcf7-submit {
  background: #FFFFFF;
  color: #0F4764;
  border: #0F4764 1px solid;
  height: 50px;
  width: 240px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.8rem;
  font-family: "Shippori Mincho B1", sans-serif;
  transition: 0.5s;
  text-align: center;
  box-sizing: border-box;
}
input.wpcf7-form-control.wpcf7-submit:hover {
  background-color: #0F4764;
  color: #FFFFFF;
}

.wpcf7-spinner {
  display: none !important;
}

.privacy_policy_box {
  height: 250px;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  overflow-y: scroll;
  margin-top: 1.6rem;
  background-color: #F8F8F6;
  border: 1px solid #DEDEDE;
}
.privacy_policy_box .bold {
  font-weight: 700;
}
.privacy_policy_box ul {
  padding-left: 1.5em;
}
.privacy_policy_box ul > li {
  list-style: disc !important;
}

.privacy_policy_lead {
  font-weight: 500;
  margin-top: 4rem;
}

.margin_top {
  margin-top: 2.4rem;
}

.checkbox_wrap {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
}
.checkbox_wrap p {
  font-weight: 700;
}

.privacy_policy {
  margin-top: 3.2rem;
}

.privacy_policy_box::-webkit-scrollbar {
  width: 10px;
}

.privacy_policy_box::-webkit-scrollbar-thumb {
  background: #0F4764;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  background-clip: padding-box;
}

.privacy_policy_box::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 5px;
  margin-bottom: 5px;
}

.checkbox_wrap span.wpcf7-list-item {
  margin: 0 0 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
  text-align: center;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  position: relative;
  font-weight: 700;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
}

input[type=checkbox] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}

.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #DEDEDE;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url("../images/check.png") no-repeat center;
  background-size: contain;
  content: "";
  width: 15px;
  height: 15px;
  left: 4px;
  position: absolute;
  top: 5px;
}

p.checkbox_txt {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (max-width: 980px) {
  .contact_form dl {
    flex-direction: column;
    gap: 12px;
  }
  .contact_form dl dt {
    width: 100%;
  }
  .contact_form dl dd {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .contact_form {
    margin-top: 32rem;
  }
  input.wpcf7-form-control.wpcf7-text {
    height: 40px;
    font-size: 2.8rem;
    padding: 2.4rem;
  }
  textarea.wpcf7-form-control.wpcf7-textarea {
    height: 160px;
    padding: 2rem;
    font-size: 2.8rem;
  }
  .privacy_policy_box {
    height: 180px;
    margin-top: 2.4rem;
  }
  p.privacy_policy {
    margin-top: 4rem;
  }
  .checkbox_wrap {
    margin-top: 2.4rem;
    align-items: flex-start;
  }
  input.wpcf7-form-control.wpcf7-submit {
    font-size: 3.6rem;
    height: 50px;
    max-width: 240px;
    width: 100%;
    line-height: 1.9;
  }
  .checkbox_wrap .wpcf7-list-item-label::before {
    width: 15px;
    height: 15px;
  }
  input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    width: 12px;
    height: 12px;
    left: 3px;
    top: 5px;
  }
  .contact_form .center {
    margin-top: 10rem;
  }
  p.checkbox_txt {
    font-size: 12px;
    margin-top: 1rem;
  }
}
/* ///////////////////////////////////////


施設紹介一覧ページ


/////////////////////////////////////// */
.factory_lead {
  padding: 16rem 0 10rem 0;
}
.factory_lead .fl {
  gap: 6rem;
  align-items: flex-end;
}
.factory_lead h2 {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-weight: 600;
  font-family: "Shippori Mincho B1", sans-serif;
  color: #0F4764;
  letter-spacing: 0.08em;
}

.factory_con {
  background-color: #F8F8F6;
}

.factory_con .fl {
  flex-wrap: wrap;
  gap: 4rem;
  row-gap: 6rem;
}

.factory_con .item {
  width: calc((100% - 4rem) / 2);
}
.factory_con .item img {
  width: 100%;
  height: auto;
  aspect-ratio: 50/39;
  -o-object-fit: cover;
     object-fit: cover;
}
.factory_con .item h3 {
  font-weight: 400;
  font-family: "Shippori Mincho B1", sans-serif;
  color: #0F4764;
}
.factory_con .item p {
  margin-top: 1.6rem;
}

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


基本情報


/////////////////////////////////////// */
.basic_info dl .fl {
  border-bottom: 1px solid #DFDFDF;
}
.basic_info dl .fl:first-of-type {
  padding-bottom: 2.4rem;
}
.basic_info dl .fl:not(:first-of-type) {
  padding: 3.2rem 0 2.4rem 0;
}
.basic_info dl .fl .child {
  width: 75%;
}
.basic_info dl .fl:last-of-type {
  border-bottom: none;
}

.basic_info dl dt {
  font-weight: 700;
  color: #0F4764;
  width: 25%;
}
.basic_info dl dd {
  width: 100%;
}

@media screen and (max-width: 980px) {
  .factory_lead .fl {
    flex-direction: row;
    align-items: flex-start;
  }
  .factory_lead p {
    margin-top: 6rem;
  }
  .factory_con .fl {
    flex-direction: row;
  }
  .basic_info dl dt {
    width: 100%;
  }
  .basic_info dl .fl {
    gap: 2rem;
  }
  .basic_info dl .fl .child {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .factory_lead h2 {
    font-size: 4rem;
  }
  .factory_lead p {
    margin-top: 8rem;
  }
  .factory_con .fl {
    flex-direction: column;
  }
  .factory_con .item {
    width: 100%;
  }
  .factory_con .item img {
    aspect-ratio: 34/21;
  }
  .factory_con .item h3 {
    font-size: 3.6rem;
  }
  .factory_con .item p {
    margin-top: 2rem;
  }
  /* ///////////////////////////////////////


  基本情報


  /////////////////////////////////////// */
  .basic_info dl .fl:first-of-type {
    padding-bottom: 2.4rem;
  }
  .basic_info dl .fl:not(:first-of-type) {
    padding: 4rem 0 2.4rem 0;
  }
}
/* ///////////////////////////////////////




記事ページ




/////////////////////////////////////// */
.news_contentWrap {
  padding-top: 20rem;
}

.post_contents {
  padding-bottom: 10rem;
}

.post_contents .news_head {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.post_contents .news_head .date {
  font-size: 1.6rem;
}

.post_contents.post_title {
  font-size: 3.2rem;
  color: #333333;
  font-weight: 700;
}

.post_title {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Shippori Mincho B1", sans-serif;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #DFDFDF;
  line-height: 1.2;
  margin-bottom: 6rem;
}

.news_content {
  margin-top: 6rem;
}
.news_content h2, .news_content h3, .news_content h4, .news_content h5, .news_content h6 {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Shippori Mincho B1", sans-serif;
  margin-top: 4rem;
  background-color: #F8F8F6;
  padding: 10px 10px 10px 20px;
  position: relative;
}
.news_content h2:first-child, .news_content h3:first-child, .news_content h4:first-child, .news_content h5:first-child, .news_content h6:first-child {
  margin-top: 0;
}
.news_content h2::before, .news_content h3::before, .news_content h4::before, .news_content h5::before, .news_content h6::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 70%;
  border-radius: 999px;
  background-color: #0F4764;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 10px;
}
.news_content p:not(:first-child) {
  margin-top: 2.4rem;
}
.news_content img {
  width: 100%;
  height: auto;
  margin-top: 4rem;
}

.news_contentWrap .btn {
  margin: 10rem auto 0 auto;
}

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




記事一覧ページ




/////////////////////////////////////// */
.post {
  margin-top: 20rem;
  padding-top: 0;
}
.post .news_con {
  padding: 4rem 0;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #DFDFDF;
  position: relative;
  transition: 0.5s;
}
.post .news_con:last-of-type {
  border-bottom: 1px solid #DFDFDF;
}
.post .news_con > div {
  flex: 1;
}
.post .news_con h3 {
  margin-top: 2.4rem;
}
.post .news_con a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.post .news_con:hover {
  background-color: rgba(248, 248, 246, 0.6);
}
.post img {
  width: 15px;
  height: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
  gap: 2rem;
}

a.prev.page-numbers,
a.next.page-numbers {
  color: #0F4764;
  box-sizing: border-box;
  border: 1px solid #0F4764;
  width: 50px;
  height: 30px;
  text-align: center;
  line-height: 1;
  font-size: 1.4rem;
  font-family: "Shippori Mincho B1", sans-serif;
  line-height: 1.8;
  transition: 0.5s;
}
a.prev.page-numbers:hover,
a.next.page-numbers:hover {
  transform: scale(1.2);
}

a.page-numbers,
span.page-numbers.current {
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  font-family: "Cormorant", sans-serif;
  text-align: center;
  line-height: 1.5;
}

a.page-numbers {
  border: #0F4764 1px solid;
  transition: 0.5s;
}
a.page-numbers:hover {
  transform: scale(1.2);
}

span.page-numbers.current {
  background-color: #0F4764;
  color: #FFFFFF;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  記事一覧ページ




  /////////////////////////////////////// */
  .post .news_con > div {
    width: 100%;
  }
  .post img {
    margin-left: auto;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  記事ページ




  /////////////////////////////////////// */
  .news_contentWrap {
    padding-top: 20rem;
  }
  .news_contentWrap .post_title {
    font-size: 4rem;
  }
  .news_content h2, .news_content h3, .news_content h4, .news_content h5, .news_content h6 {
    font-size: 3.2rem;
    padding: 10px 10px 10px 15px;
  }
  .news_content h2::before, .news_content h3::before, .news_content h4::before, .news_content h5::before, .news_content h6::before {
    width: 4px;
    left: 5px;
  }
  /* ///////////////////////////////////////




  記事一覧ページ




  /////////////////////////////////////// */
  .post {
    margin-top: 24rem;
  }
  .post .post .news_con h3 {
    font-size: 2.8rem;
  }
  .nav-links {
    max-width: 1000px;
    width: 95%;
    margin: 8rem auto 0 auto;
    flex-wrap: wrap;
  }
  a.prev.page-numbers, a.next.page-numbers {
    font-size: 2.8rem;
    height: 25px;
    width: 40px;
    line-height: 1.6;
  }
  a.page-numbers, span.page-numbers.current {
    width: 25px;
    height: 25px;
    line-height: 1.4;
  }
} /* ///////////////////////////////////////




料金案内




/////////////////////////////////////// */
.menu_link {
  gap: 4rem;
  max-width: 1040px;
  width: 90%;
  margin: auto;
  margin-top: 20rem;
}
.menu_link li {
  width: calc((100% - 8rem) / 3);
  font-size: 2rem;
  position: relative;
  text-align: center;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 1.6rem;
  font-family: "Shippori Mincho B1", sans-serif;
}
.menu_link li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  right: 0;
  top: -20px;
  bottom: 0;
  margin: auto;
}
.menu_link li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.price_area {
  padding-top: 16rem;
}
.price_area .fl_wrap {
  gap: 8rem;
}
.price_area .con_ttl02 {
  flex-shrink: 0;
}
.price_area dl {
  flex: 1;
}
.price_area dl dt {
  font-family: "Shippori Mincho B1", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  width: 25%;
}
.price_area dl dt span {
  font-family: "Cormorant", sans-serif;
  font-size: 12px;
  color: #0F4764;
  font-weight: 500;
  padding-left: 5px;
}
.price_area dl .fl {
  border-bottom: 1px solid #DFDFDF;
  position: relative;
  padding: 4rem 0 2.4rem 0;
}
.price_area dl .fl:first-of-type {
  padding-top: 0;
}
.price_area dl .fl::before {
  content: "";
  display: inline-block;
  width: 25%;
  height: 1px;
  background-color: #0F4764;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.price_area .child {
  width: 75%;
}
.price_area dd {
  width: 100%;
}

.attention {
  background-color: #F8F8F6;
  padding: 6rem 0;
}

.other {
  padding: 6rem 0 10rem 0;
}
.other .fl_wrap {
  align-items: center;
}

@media screen and (max-width: 980px) {
  .menu_link li {
    width: 100%;
  }
  .price_area .fl_wrap {
    flex-direction: row;
  }
  .price_area dl dt {
    width: 100%;
  }
  .price_area dl .fl {
    gap: 2rem;
  }
}
@media screen and (max-width: 650px) {
  .menu_link {
    margin-top: 24rem;
  }
  .menu_link li {
    font-size: 3.2rem;
    padding-bottom: 2rem;
  }
  .menu_link li::before {
    width: 8px;
    height: 8px;
    top: -15px;
  }
  .price_area dl dt {
    width: 100%;
    font-size: 3.2rem;
  }
  .price_area dl .fl {
    padding: 4rem 0 2.4rem 0;
  }
  .price_area dl .fl {
    gap: 3.2rem;
  }
}/*# sourceMappingURL=style.css.map */