@charset "UTF-8";
/* Scss Document */
:root {
  /* color -------------------------------------------------*/
  --color_txt: #1a0f0f;
  --color_bg: #f1f0ef;
  --color_bg_dark:#1a0f0f;
  --color_warning: #CF1212;
  --color_main: #312b2b;
  --color_border: #c4c4c4;
  --color_accent: #c1a978;
  --color_brown:#4d2020;
  --color_grad_txt: linear-gradient(to right,#b7991b 0%,#f7e4c6 100%);
  --color_gradation: linear-gradient(60deg,#f6d49a 0%,#fffdd6 100%);
  --color_twitter: #1DA1F2;
  --color_facebook: #1877f2;
  --color_line: #00b900;
  --color_youtube: #DA1725;
  --color_x: #0f1419;
  --color_insta: #e1306c;
  /* transition speed ------------------------------------------------- */
  --trans_speed: 0.3s;
  /* contents size ------------------------------------------------- */
  --contents_max: 1800px;
  --contents_wide: 1600px;
  --contents_lg: 1400px;
  --contents_base: 1200px;
  --contents_sm: 1000px;
  --contents_ss: 800px;
  /* padding -------------------------------------------------*/
  --padding_large: 160px;
  --padding_medium: 120px;
  --padding_small: 80px;
  --padding_ss: 50px;
  /* wrapper padding */
  --wrap-padding:5vw;
  --wrap-padding_md:3vw;
  --wrap-padding_lg:60px;
  /* text size -------------------------------------------------*/
  --fontSize_sm: 14;
  --fontSize_md: 16;
  --fontSize_lg: 18;
  /* header height -------------------------------------------------*/
  --header_height: 80px;
  --header_height_lg: 100px;
}

* {
  box-sizing: border-box;
}

/* webkit specific styles */
input[type=color]::-webkit-color-swatch {
  border: none;
}

input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}

/* 
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;
  font-size: 100%;
  /*vertical-align:baseline;
  background:transparent;
  font-weight:inherit;*/
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* 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;
  font-family: inherit;
}

input:focus {
  outline: none;
}

ul:not(.entryBody ul), ol:not(.entryBody ol) {
  list-style-type: none;
}

button {
  font-family: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

svg {
  width: 100%;
  fill: #000;
  max-width: 100%;
}

body {
  line-height: 1;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: var(--color_txt);
  position: relative;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-autospace: normal;
}
body.is-menuopen {
  overflow: hidden;
  height: 100%;
}

a {
  outline: none;
  color: var(--color_txt);
  text-decoration: none;
}

/*=============================================================
  parts/base.scss
==============================================================*/
/* base style
---------------------------------------------*/
.base--max {
  --contents_size: var(--contents_max);
}

.base--wide {
  --contents_size: var(--contents_wide);
}

.base--large {
  --contents_size: var(--contents_lg);
}

.base {
  --contents_size: var(--contents_base);
}

.base--small {
  --contents_size: var(--contents_sm);
}

.base--ss {
  --contents_size: var(--contents_ss);
}

[class*=base] {
  width: 100%;
  padding-inline: var(--wrap-padding);
  box-sizing: border-box;
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  [class*=base] {
    padding-inline: var(--wrap-padding_md);
  }
}
@media screen and (min-width: 1200px) {
  [class*=base] {
    padding-inline: var(--wrap-padding_lg);
  }
}
[class*=base]:not(.base--full) {
  max-width: calc(var(--contents_size) + var(--wrap-padding) * 2);
}
@media screen and (min-width: 1200px) {
  [class*=base]:not(.base--full) {
    max-width: calc(var(--contents_size) + var(--wrap-padding_md) * 2);
  }
}
@media screen and (min-width: 1200px) {
  [class*=base]:not(.base--full) {
    max-width: calc(var(--contents_size) + var(--wrap-padding_lg) * 2);
  }
}
[class*=base] [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
  max-width: var(--contents_size);
}
@media screen and (min-width: 960px) {
  [class*=base] [class*=base] {
    max-width: var(--contents_size);
  }
}

/*=============================================================
  space.scss
==============================================================*/
.space--large {
  padding-top: calc(var(--padding_large) / 3);
  padding-bottom: calc(var(--padding_large) / 3);
}
@media screen and (min-width: 768px) {
  .space--large {
    padding-top: calc(var(--padding_large) / 3 * 2);
    padding-bottom: calc(var(--padding_large) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--large {
    padding-top: var(--padding_large);
    padding-bottom: var(--padding_large);
  }
}

.space--medium {
  padding-top: calc(var(--padding_medium) / 3);
  padding-bottom: calc(var(--padding_medium) / 3);
}
@media screen and (min-width: 768px) {
  .space--medium {
    padding-top: calc(var(--padding_medium) / 3 * 2);
    padding-bottom: calc(var(--padding_medium) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--medium {
    padding-top: var(--padding_medium);
    padding-bottom: var(--padding_medium);
  }
}

.space--small {
  padding-top: calc(var(--padding_small) / 2);
  padding-bottom: calc(var(--padding_small) / 2);
}
@media screen and (min-width: 768px) {
  .space--small {
    padding-top: calc(var(--padding_small) / 3 * 2);
    padding-bottom: calc(var(--padding_small) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--small {
    padding-top: var(--padding_small);
    padding-bottom: var(--padding_small);
  }
}

.space--ss {
  padding-top: calc(var(--padding_ss) / 2);
  padding-bottom: calc(var(--padding_ss) / 2);
}
@media screen and (min-width: 768px) {
  .space--ss {
    padding-top: calc(var(--padding_ss) / 2);
    padding-bottom: calc(var(--padding_ss) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--ss {
    padding-top: var(--padding_ss);
    padding-bottom: var(--padding_ss);
  }
}

.space--contents {
  padding-top: calc(var(--padding_medium) / 3);
  padding-bottom: var(--padding_medium);
}
@media screen and (min-width: 768px) {
  .space--contents {
    padding-top: calc(var(--padding_medium) / 3 * 2);
    padding-bottom: var(--padding_large);
  }
}
@media screen and (min-width: 1200px) {
  .space--contents {
    padding-top: var(--padding_medium);
    padding-bottom: calc(var(--padding_large) * 1.5);
  }
}

/*=============================================================
  sectionbox.scss
==============================================================*/
.sectionbox {
  margin-top: calc(var(--padding_large) / 3);
}
@media screen and (min-width: 768px) {
  .sectionbox {
    margin-top: calc(var(--padding_large) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox {
    margin-top: var(--padding_large);
  }
}
.sectionbox--medium {
  margin-top: calc(var(--padding_medium) / 3);
}
@media screen and (min-width: 768px) {
  .sectionbox--medium {
    margin-top: calc(var(--padding_medium) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox--medium {
    margin-top: var(--padding_medium);
  }
}
.sectionbox--small {
  margin-top: calc(var(--padding_small) / 3);
}
@media screen and (min-width: 768px) {
  .sectionbox--small {
    margin-top: calc(var(--padding_small) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox--small {
    margin-top: var(--padding_small);
  }
}
.sectionbox--ss {
  margin-top: calc(var(--padding_ss) / 3 * 2);
}
@media screen and (min-width: 768px) {
  .sectionbox--ss {
    margin-top: calc(var(--padding_ss) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox--ss {
    margin-top: var(--padding_ss);
  }
}

/*=============================================================
  background.scss
==============================================================*/
.contents_bg {
  background: var(--color_bg);
}

/*=============================================================
  gridLayout.scss
==============================================================*/
.c-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  row-gap: 60px;
}
@media screen and (max-width: 1199px) {
  .c-grid {
    row-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-grid {
    row-gap: 40px;
  }
}
.c-grid--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-grid--reverse {
    flex-direction: column;
  }
}

.c-gridItem--cell30 {
  width: 28%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell30 {
    width: 100%;
  }
}
.c-gridItem--cell35 {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell35 {
    width: 100%;
  }
}
.c-gridItem--cell40 {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell40 {
    width: 100%;
  }
}
.c-gridItem--cell45 {
  width: 43%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell45 {
    width: 100%;
  }
}
.c-gridItem--cell55 {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell55 {
    width: 100%;
  }
}
.c-gridItem--cell60 {
  width: 57%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell60 {
    width: 100%;
  }
}
.c-gridItem--cell65 {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell65 {
    width: 100%;
  }
}
.c-gridItem--cell70 {
  width: 67%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell70 {
    width: 100%;
  }
}

.c-gridItem_img {
  text-align: center;
}

.c-grid--row2 .c-gridItem {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .c-grid--row2 .c-gridItem {
    width: 100%;
  }
}
.c-grid--row2_spHalf {
  flex-direction: row;
}
.c-grid--row2_spHalf .c-gridItem {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .c-grid--row2_spHalf .c-gridItem {
    width: 48%;
  }
}
.c-grid--row2_wrapnon {
  flex-direction: row;
}
.c-grid--row2_wrapnon .c-gridItem {
  width: 47%;
}

.c-grid--row3::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .c-grid--row3::before {
    display: none;
  }
}
.c-grid--row3 .c-gridItem {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .c-grid--row3 .c-gridItem {
    width: 100%;
  }
}
.c-grid--row3_spHalf {
  flex-direction: row;
}
.c-grid--row3_spHalf .c-gridItem {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .c-grid--row3_spHalf .c-gridItem {
    width: 48%;
  }
}
.c-grid--row3_spHalf .c-gridItem:last-of-type {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-grid--row3_spHalf .c-gridItem:last-of-type {
    margin: 0 auto;
  }
}
.c-grid--row3_wrapnon {
  flex-direction: row;
}
.c-grid--row3_wrapnon::after {
  content: "";
  display: block;
  width: 31%;
}
.c-grid--row3_wrapnon .c-gridItem {
  width: 31%;
}

.c-grid--row4::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.c-grid--row4::after {
  content: "";
  display: block;
  width: 23%;
}
@media screen and (max-width: 767px) {
  .c-grid--row4::before {
    display: none;
  }
}
.c-grid--row4 .c-gridItem {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .c-grid--row4 .c-gridItem {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .c-grid--row4 .c-gridItem {
    width: 100%;
  }
}
.c-grid--row4_spHalf {
  flex-direction: row;
}
.c-grid--row4_spHalf::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.c-grid--row4_spHalf::after {
  content: "";
  display: block;
  width: 23%;
}
@media screen and (max-width: 767px) {
  .c-grid--row4_spHalf::before {
    display: none;
  }
}
.c-grid--row4_spHalf .c-gridItem {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .c-grid--row4_spHalf .c-gridItem {
    width: 48%;
  }
}
.c-grid--row4_wrapnon {
  flex-direction: row;
}
.c-grid--row4_wrapnon::before {
  content: "";
  display: block;
  width: 24%;
  order: 1;
}
.c-grid--row4_wrapnon::after {
  content: "";
  display: block;
  width: 24%;
}
.c-grid--row4_wrapnon .c-gridItem {
  width: 23%;
}

/*=============================================================
  txt.scss
==============================================================*/
/* text style
---------------------------------------------*/
.txtbox p,
.txt {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .txtbox p,
  .txt {
    line-height: 2;
  }
}
@media screen and (min-width: 1200px) {
  .txtbox p,
  .txt {
    line-height: 2.2;
  }
}

.txtbox:not(.entryBody) p + p,
.txt + .txt {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .txtbox:not(.entryBody) p + p,
  .txt + .txt {
    margin-top: 30px;
  }
}

.txt--small {
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .txt--small {
    line-height: 1.7;
  }
}
@media screen and (min-width: 1200px) {
  .txt--small {
    line-height: 1.8;
  }
}
.txt--small + .txt, .txt + .txt--small {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .txt--small + .txt, .txt + .txt--small {
    margin-top: 30px;
  }
}

.txt--big {
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .txt--big {
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  .txt--big {
    line-height: 2;
  }
}
.txt--big + .txt, .txt + .txt--big {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .txt--big + .txt, .txt + .txt--big {
    margin-top: 30px;
  }
}

.c-underline {
  display: inline-block;
  padding: 0 2px 2px 2px;
  background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.6) 60%);
}

.c-txtCenter {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-txtCenter {
    text-align: center;
  }
}

.c-txtAnnotation {
  font-size: 0.75rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-txtAnnotation {
    font-size: 0.8125rem;
  }
}

.c-notesMark {
  position: relative;
  padding-left: 15px;
}
@media screen and (min-width: 1200px) {
  .c-notesMark {
    padding-left: 20px;
  }
}
.c-notesMark::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/*=============================================================
  title.scss
==============================================================*/
.c-headingSet01 {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .c-headingSet01 {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingSet01 {
    margin-bottom: 100px;
  }
}

.c-heading01_main {
  position: relative;
  padding-top: calc(40px + 3vw);
}
@media screen and (min-width: 768px) {
  .c-heading01_main {
    padding-top: calc(40px + 5vw);
  }
}
@media screen and (min-width: 1200px) {
  .c-heading01_main {
    padding-top: 90px;
  }
}
.c-heading01_main::before {
  content: "";
  background: url(../../img/point.png) no-repeat center center/contain;
  width: clamp(6.25rem, 4.134rem + 9.405vw, 11.188rem);
  aspect-ratio: 179/21;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 0;
}
.c-heading01_main strong {
  font-size: clamp(1.5rem, 1.046rem + 2.019vw, 2.8125rem);
  font-weight: 500;
  position: relative;
  word-break: keep-all;
  display: flex;
  column-gap: min(3%, 15px);
  line-height: 1.3;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-heading01_main strong {
    column-gap: min(5%, 30px);
  }
}
.c-heading01_main strong span {
  display: inline-block;
  text-align: center;
  width: fit-content;
}
.c-heading01_main strong::before, .c-heading01_main strong::after {
  content: "";
  width: clamp(3.125rem, 2.589rem + 2.381vw, 4.375rem);
  height: 2px;
  display: block;
  background: currentColor;
}
.c-heading01_main strong br {
  display: inline;
}
@media screen and (min-width: 768px) {
  .c-heading01_main strong br {
    display: none;
  }
}

.c-heading01_sub {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  background: var(--color_grad_txt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.827rem + 0.769vw, 1.5rem);
  line-height: 1.2;
  font-style: italic;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-heading01_sub {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading01_sub {
    margin-top: 30px;
  }
}

.c-heading02 {
  font-size: clamp(1.625rem, 1.274rem + 1.558vw, 3.125rem);
  color: currentColor;
  line-height: 1.7;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-heading02 {
    padding-bottom: 30px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading02 {
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
}
.c-heading02::after {
  content: "";
  display: block;
  width: 150px;
  height: 5px;
  background: linear-gradient(to right, #b5b5b6 20%, #aba594 20%, #aba594 40%, #6f6076 40%, #6f6076 60%, #5f5147 60%, #5f5147 80%, #000000 80%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-heading02::after {
    width: 200px;
    height: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading02::after {
    width: 300px;
    height: 10px;
  }
}

.c-headingSet02 {
  position: relative;
  padding-block: 25px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  text-align: center;
  min-width: 120px;
}
@media screen and (min-width: 768px) {
  .c-headingSet02 {
    padding-block: 30px;
    row-gap: 10px;
    min-width: 190px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingSet02 {
    padding-block: 35px;
    min-width: 223px;
  }
}
.c-headingSet02::before, .c-headingSet02::after {
  content: "";
  background: url(../../img/ornate01.png) no-repeat center center/contain;
  height: clamp(0.375rem, 0.214rem + 0.714vw, 0.75rem);
  aspect-ratio: 223/12;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50%;
}
.c-headingSet02::after {
  top: auto;
  bottom: 0;
}

.c-headingSet02_main {
  order: 1;
  font-size: clamp(1.25rem, 0.812rem + 1.948vw, 3.125rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 1;
}

.c-headingSet02_sub {
  order: 2;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  line-height: 1.6;
}

/*=============================================================
  button.scss
==============================================================*/
.c-btnWrap {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-btnWrap {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .c-btnWrap {
    margin-top: 80px;
  }
}

.c-btn_more {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  text-transform: lowercase;
  font-style: italic;
  font-size: clamp(1.25rem, 1.034rem + 0.962vw, 1.875rem);
  width: 50%;
  max-width: 230px;
  position: relative;
  padding-bottom: 10px;
  line-height: 1.3;
}
.c-btn_more::before, .c-btn_more::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: var(--trans_speed) all;
}
.c-btn_more::after {
  width: 20px;
  left: auto;
  right: 0;
  rotate: 35deg;
  transform-origin: right bottom;
}
@media (any-hover: hover) {
  .c-btn_more:hover::before {
    width: 105%;
  }
  .c-btn_more:hover::after {
    right: -5%;
  }
}
.c-btn_more.-right {
  margin-left: auto;
  margin-right: 0;
}

.c-btn01 {
  background: var(--color_bg_dark);
  color: #fff;
  display: block;
  max-width: 400px;
  padding: 20px 10px;
  text-align: center;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  line-height: 1.3;
  font-weight: 600;
  transition: var(--trans_speed) background;
}
@media screen and (min-width: 768px) {
  .c-btn01 {
    padding: 25px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .c-btn01 {
    padding: 30px 10px;
  }
}
@media (any-hover: hover) {
  .c-btn01:hover {
    background: color-mix(in srgb, var(--color_bg_dark) 80%, transparent);
  }
}
.c-btn01.-cen {
  margin: 0 auto;
}

/*=============================================================
  formParts.scss
==============================================================*/
/* form parts style
---------------------------------------------*/
.form50 {
  width: 50px;
}

.form70 {
  width: 70px;
}

.form100 {
  width: 100%;
  max-width: 100px;
}

.form150 {
  width: 100%;
  max-width: 150px;
}

.form200 {
  width: 100%;
  max-width: 200px;
}

.form250 {
  width: 100%;
  max-width: 250px;
}

.form300 {
  width: 100%;
  max-width: 300px;
}

.form350 {
  width: 100%;
  max-width: 350px;
}

.form400 {
  width: 100%;
  max-width: 400px;
}

.formmax {
  width: 100%;
}

.comment_box {
  width: 100%;
  margin: 5px 0px 5px 0px;
  height: 300px;
}

.formZip {
  width: 100%;
  max-width: 100px;
}
@media screen and (min-width: 560px) {
  .formZip {
    max-width: 150px;
  }
}

.formPostbtn {
  display: inline-block;
  max-width: 150px;
  margin-left: 10px;
}
.formPostbtn button {
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 8px 10px;
  font-weight: bold;
  border: none;
}
@media screen and (min-width: 560px) {
  .formPostbtn button {
    font-size: 0.875rem;
  }
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  border: 1px solid #ccc;
  padding: 10px 15px;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  border: 1px solid #fff;
  box-shadow: 0px 0px 0 2px var(--color_main);
}
input[type=text]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=email]:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #999;
}

select {
  border: 1px solid #ccc;
  padding: 10px 15px;
  background: #fff;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  border: 1px solid #fff;
  box-shadow: 0px 0px 3px #ccc;
}

input[type=radio] {
  margin-top: -3px;
}

button:disabled {
  opacity: 0.4 !important;
  cursor: default !important;
}

label {
  display: inline-block;
  padding: 10px;
}

/*=============================================================
  formlayout.scss
==============================================================*/
.formWrap {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}

.formTable {
  width: 100%;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 40px;
}
.formTable th,
.formTable td {
  display: block;
  width: 100%;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .formTable th,
  .formTable td {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .formTable th,
  .formTable td {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.formTable th {
  font-size: 0.9375rem;
  padding-top: 30px;
  border-top: 1px solid var(--color_border);
}
@media screen and (min-width: 768px) {
  .formTable th {
    padding-top: 35px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .formTable th {
    font-size: 1.125rem;
    padding-top: 40px;
  }
}
.formTable th span {
  background: var(--color_warning);
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
  padding: 2px 3px;
  border-radius: 3px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 768px) {
  .formTable th span {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 1200px) {
  .formTable th span {
    font-size: 0.8125rem;
    padding: 5px 8px;
    margin-right: 10px;
  }
}
.formTable td {
  font-size: 0.9375rem;
  padding-top: 10px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .formTable td {
    padding-top: 15px;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .formTable td {
    font-size: 1rem;
    padding-bottom: 40px;
  }
}

.confirmTable {
  width: 100%;
  border-bottom: 1px solid var(--color_border);
  margin: 40px 0 60px 0;
}
@media screen and (min-width: 768px) {
  .confirmTable {
    table-layout: fixed;
  }
}
.confirmTable th,
.confirmTable td {
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .confirmTable th,
  .confirmTable td {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .confirmTable th,
  .confirmTable td {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .confirmTable th,
  .confirmTable td {
    padding: 40px 30px;
  }
}
.confirmTable th {
  font-size: 0.9375rem;
  border-top: 1px solid var(--color_border);
}
@media screen and (max-width: 767px) {
  .confirmTable th {
    padding-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .confirmTable th {
    font-size: 1rem;
    width: 33%;
  }
}
@media screen and (min-width: 1200px) {
  .confirmTable th {
    font-size: 1.125rem;
  }
}
.confirmTable th span {
  background: var(--color_warning);
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
  padding: 2px 3px;
  border-radius: 3px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 768px) {
  .confirmTable th span {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 1200px) {
  .confirmTable th span {
    font-size: 0.8125rem;
    padding: 5px 8px;
    margin-right: 10px;
  }
}
.confirmTable td {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .confirmTable td {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .confirmTable td {
    border-top: 1px solid var(--color_border);
  }
}
@media screen and (min-width: 1200px) {
  .confirmTable td {
    font-size: 1rem;
  }
}

.formList_row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 5px;
}
@media screen and (min-width: 768px) {
  .formList_row {
    row-gap: 10px;
  }
}

.formFlex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 15px;
}
.formFlex div {
  display: flex;
  align-items: center;
}
.formFlex--sanka {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .formFlex--sanka {
    flex-direction: row;
  }
}

.formPointTxt {
  margin-top: 20px;
  font-size: 0.8125rem;
  line-height: 1.3;
}
.formPointTxt li::before {
  color: var(--color_warning);
}

.formPrivacy {
  padding: 20px;
  text-align: center;
  margin: 0px auto;
}
.formPrivacy_txt {
  font-size: 0.8125rem;
  line-height: 1.5;
  padding-bottom: 15px;
}
@media screen and (min-width: 1200px) {
  .formPrivacy_txt {
    font-size: 0.875rem;
  }
}
.formPrivacy_check {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .formPrivacy_check {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1200px) {
  .formPrivacy_check {
    font-size: 1.25rem;
  }
}
.formPrivacy_check input {
  margin-right: 10px;
}

.error_txt {
  width: 100%;
  padding: 10px 15px 8px 35px;
  box-sizing: border-box;
  font-size: 108%;
  position: relative;
  background: #FFF5F5;
}

.error_txt i {
  display: block;
  position: absolute;
  top: 11px;
  left: 10px;
  font-size: 18px;
}

.error_box {
  background: #fff;
  padding: 20px;
  border: 1px solid #bcbcbc;
  border-radius: 3px;
  margin-bottom: 40px;
}

.error_box p {
  color: #CF1212;
  padding-bottom: 10px;
  font-size: 0.8125rem;
}

.submit_btn {
  width: 90%;
  max-width: 340px;
  margin: 30px auto;
}
.submit_btn button[type=submit] {
  width: 100%;
  background-color: var(--color_accent);
  border: none;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: all 0.1s;
}
@media screen and (min-width: 768px) {
  .submit_btn button[type=submit] {
    font-size: 18px;
    padding: 20px 15px;
  }
}
@media screen and (min-width: 1200px) {
  .submit_btn button[type=submit] {
    padding: 25px 15px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .submit_btn button[type=submit]:hover {
    opacity: 0.7;
  }
}
.submit_btn button[type=submit] .c-btniconSvg {
  display: inline-block;
}
.submit_btn button[type=submit] .c-btniconSvg svg {
  fill: #fff;
  width: 16px;
  aspect-ratio: 320/512;
}

.back_btn {
  width: 40%;
  max-width: 250px;
  margin: 20px auto 0px auto;
  text-align: center;
}
.back_btn button {
  border: 1px solid #b9b9b9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0px auto;
  color: var(--color_txt);
  padding: 10px 0px 8px 0px;
  font-size: 13px;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  background: rgb(238, 238, 238);
}
@media screen and (min-width: 768px) {
  .back_btn button {
    padding: 13px 0px 13px 0px;
    font-size: 15px;
    line-height: 1.5;
  }
}
.back_btn button .c-btniconSvg {
  display: inline-flex;
  align-items: center;
  padding-top: 2px;
}
.back_btn button .c-btniconSvg svg {
  fill: var(--color_txt);
  width: 16px;
  aspect-ratio: 320/512;
}

.formbtn_box {
  margin-top: 40px;
  margin-bottom: 40px;
}

/*=============================================================
  list.scss
==============================================================*/
.c-ulList {
  padding-left: 25px;
}
.c-ulList li {
  list-style: disc;
  font-size: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
}
@media screen and (min-width: 560px) {
  .c-ulList li {
    font-size: calc(var(--fontSize_md) / 16)rem;
  }
}
@media screen and (min-width: 960px) {
  .c-ulList li {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
  }
}
.c-ulList li + li {
  margin-top: 5px;
}

.c-olList {
  padding-left: 25px;
}
.c-olList li {
  list-style: decimal;
  font-size: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
}
@media screen and (min-width: 560px) {
  .c-olList li {
    font-size: calc(var(--fontSize_md) / 16)rem;
  }
}
@media screen and (min-width: 960px) {
  .c-olList li {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
  }
}
.c-olList li + li {
  margin-top: 5px;
}

.c-notesList li {
  position: relative;
  padding-left: 15px;
}
@media screen and (min-width: 960px) {
  .c-notesList li {
    padding-left: 20px;
  }
}
.c-notesList li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/*=============================================================
  loading.scss
==============================================================*/
.loading {
  position: fixed;
  width: 100svw;
  height: 100svh;
  z-index: 999;
  text-align: center;
  color: #fff;
  display: none;
}
.loading.is-active {
  display: block;
}

.js-fadein {
  opacity: 0;
}

/*=============================================================
  pagetop.scss
==============================================================*/
.pagetop {
  display: none;
}
@media screen and (min-width: 960px) {
  .pagetop {
    display: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color_main);
    color: #000;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border: 3px solid #fff;
    overflow: hidden;
    z-index: 100;
    cursor: pointer;
  }
  .pagetop::before {
    font-family: "Font Awesome 6 Free";
    content: "\f062";
    font-weight: 900;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.9375rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.pagetop * {
  display: none;
}
@media screen and (min-width: 960px) {
  .pagetop * {
    display: block;
  }
}

/*=============================================================
  youtube.scss
==============================================================*/
.c-youtube {
  position: relative;
  width: 100%;
}
.c-youtube::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.c-youtube div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-youtube iframe {
  width: 100%;
  height: 100%;
}

.c-video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-video video {
  object-fit: cover;
  width: 102%;
  height: 102%;
}

/*=============================================================
  table.scss
==============================================================*/
.c-tableScroll {
  overflow: auto;
  max-width: 100%;
}
.c-tableScroll table {
  width: 680px !important;
}
@media screen and (min-width: 560px) {
  .c-tableScroll table {
    width: 100%;
  }
}

/*=============================================================
  hide.scss
==============================================================*/
.is-spHide {
  display: none;
}
@media screen and (min-width: 560px) {
  .is-spHide {
    display: block;
  }
}
.is-spHide--inline {
  display: none;
}
@media screen and (min-width: 560px) {
  .is-spHide--inline {
    display: inline;
  }
}

.is-pcHide {
  display: block;
}
@media screen and (min-width: 960px) {
  .is-pcHide {
    display: none;
  }
}
.is-pcHide--inline {
  display: inline;
}
@media screen and (min-width: 960px) {
  .is-pcHide--inline {
    display: none;
  }
}

.is-tabHide {
  display: block;
}
@media screen and (min-width: 560px) {
  .is-tabHide {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .is-tabHide {
    display: block;
  }
}
.is-tabHide--inline {
  display: inline;
}
@media screen and (min-width: 560px) {
  .is-tabHide--inline {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .is-tabHide--inline {
    display: inline;
  }
}

.is-spShow {
  display: block;
}
@media screen and (min-width: 560px) {
  .is-spShow {
    display: none;
  }
}
.is-spShow--inline {
  display: inline;
}
@media screen and (min-width: 560px) {
  .is-spShow--inline {
    display: none;
  }
}

.is-pcShow {
  display: none;
}
@media screen and (min-width: 960px) {
  .is-pcShow {
    display: block;
  }
}
.is-pcShow--inline {
  display: none;
}
@media screen and (min-width: 960px) {
  .is-pcShow--inline {
    display: inline;
  }
}

.is-tabShow {
  display: none;
}
@media screen and (min-width: 560px) {
  .is-tabShow {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .is-tabShow {
    display: none;
  }
}
.is-tabShow--inline {
  display: none;
}
@media screen and (min-width: 560px) {
  .is-tabShow--inline {
    display: inline;
  }
}
@media screen and (min-width: 960px) {
  .is-tabShow--inline {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-mdUnderHide {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-mdOverHide {
    display: none;
  }
}

/*=============================================================
  link.scss
==============================================================*/
.a-linkline:link, .a-linkline:visited {
  color: #1530A0;
  text-decoration: underline;
}
.a-linkline:hover, .a-linkline:active {
  color: #4460D5;
  text-decoration: none;
}

.c-anchorlink {
  padding-top: var(--header_height);
  margin-top: -var(--header_height);
}
@media screen and (min-width: 960px) {
  .c-anchorlink {
    padding-top: var(--header_height_lg);
    margin-top: -var(--header_height_lg);
  }
}

.c-hoverimg img {
  transition: all 0.3s;
  backface-visibility: hidden;
}
@media screen and (min-width: 960px) {
  .c-hoverimg:hover img {
    transform: scale(1.1);
  }
}

/*=============================================================
  animation.scss
==============================================================*/
.is-anime_img {
  position: relative;
  overflow: hidden;
}
.is-anime_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color_main);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.is-anime_img[data-aos=is-animation]::after {
  transition-property: left;
  transition-duration: 0.2s;
  transition-delay: 0.1s;
}
.is-anime_img[data-aos=is-animation].aos-animate::after {
  left: 100%;
}
[data-aos=is-animation] .is-anime_img::after {
  transition-property: left;
  transition-duration: 0.2s;
  transition-delay: 0.1s;
}
[data-aos=is-animation].aos-animate .is-anime_img::after {
  left: 100%;
}
[data-aos=is-animationBox] .is-anime_img:nth-of-type(even)::after {
  transition-delay: 0s;
}
[data-aos=is-animationBox] .is-anime_img:nth-of-type(3n-1)::after {
  transition-delay: 0.15s;
}
[data-aos=is-animationBox] .is-anime_img:nth-of-type(3n)::after {
  transition-delay: 0.3s;
}
[data-aos=is-animationBox] .is-anime_img::after {
  transition-property: left;
  transition-duration: 0.2s;
  transition-delay: 0.1s;
}
[data-aos=is-animationBox].aos-animate .is-anime_img::after {
  left: 100%;
}

@keyframes animeRotation {
  0% {
    rotate: 0;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes animeScroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
[data-aos=is-lineup] {
  overflow: hidden;
}
[data-aos=is-lineup] span {
  display: inline-block;
  translate: 0 105%;
  transition-property: translate;
  transition-duration: 1.2s;
  transition-delay: 0s;
}
[data-aos=is-lineup].aos-animate span {
  translate: 0 0;
}
[data-aos=is-lineup] + [data-aos=is-lineup] span {
  transition-delay: 0.3s;
}
[data-aos=is-lineup] + [data-aos=is-lineup] + [data-aos=is-lineup] span {
  transition-delay: 0.6s;
}

/*=============================================================
  aosCustomize.scss
==============================================================*/
[data-aos=fade-up] {
  transform: translate3d(0, 50px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -50px, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(50px, 0, 0);
  transform: translate3d(50px, 0, 0);
}

/*=============================================================
  contact.scss
==============================================================*/
.p-contactMail {
  display: grid;
  align-items: center;
  row-gap: 20px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-contactMail {
    grid-template-columns: 1fr min(50%, 486px);
    column-gap: 5%;
    justify-content: space-between;
  }
}

.p-contactMail_heading {
  grid-column: 1/2;
  grid-row: 1/2;
}

.p-contactMail_txt01 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(5.5cqw, 30px);
  font-size: clamp(1rem, 0.508rem + 2.188vw, 1.875rem);
  column-gap: 3%;
}
@media screen and (min-width: 768px) {
  .p-contactMail_txt01 {
    font-size: clamp(1.125rem, -1.358rem + 5.172vw, 1.875rem);
  }
}
.p-contactMail_txt01 br {
  display: none;
}
.p-contactMail_txt01 span:first-of-type {
  display: inline-block;
  width: min(6cqw, 42px);
}
@media screen and (min-width: 768px) {
  .p-contactMail_txt01 span:first-of-type {
    width: clamp(2.125rem, 0.47rem + 3.448vw, 2.625rem);
  }
}

.p-contactMail_txt02 {
  text-align: center;
  font-size: min(3.2cqw, 18px);
  font-size: clamp(0.75rem, 0.645rem + 0.469vw, 0.9375rem);
  margin-top: calc(10px + 1cqw);
}
@media screen and (min-width: 768px) {
  .p-contactMail_txt02 {
    font-size: clamp(0.625rem, -1.03rem + 3.448vw, 1.125rem);
  }
}

.p-contactMail_mail {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (min-width: 768px) {
  .p-contactMail_mail {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.p-contactMail_mail a {
  display: block;
  background: var(--color_bg_dark);
  color: #fff;
  font-size: clamp(1rem, 0.827rem + 0.769vw, 1.5rem);
  text-align: center;
  padding: 35px 10px 25px 10px;
  position: relative;
  transition: var(--trans_speed) background;
}
@media screen and (min-width: 768px) {
  .p-contactMail_mail a {
    padding: 40px 10px 30px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .p-contactMail_mail a {
    padding: 45px 10px 35px 10px;
  }
}
.p-contactMail_mail a::before {
  content: "";
  background: url(../../img/point-white.png) no-repeat center center/contain;
  aspect-ratio: 99/12;
  width: min(21%, 99px);
  display: block;
  position: absolute;
  left: 50%;
  top: 10px;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .p-contactMail_mail a::before {
    top: 15px;
  }
}
@media (any-hover: hover) {
  .p-contactMail_mail a:hover {
    background: color-mix(in srgb, var(--color_bg_dark) 80%, transparent);
  }
}
.p-contactMail_mail.-white a {
  background: #fff;
  color: var(--color_txt);
}
.p-contactMail_mail.-white a::before {
  background: url(../../img/point.png) no-repeat center center/contain;
}

.p-contactTel {
  background: #fff;
  padding: 15px;
  color: var(--color_txt);
  display: grid;
  align-items: center;
  row-gap: 15px;
  font-weight: 500;
  position: relative;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-contactTel {
    padding: 25px 0px;
    grid-template-columns: auto auto;
  }
}
@media screen and (min-width: 1200px) {
  .p-contactTel {
    padding: 50px 0px;
    grid-template-columns: 33% 1fr;
  }
}

.p-contactTel_heading {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: clamp(1rem, 0.719rem + 1.25vw, 1.5rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contactTel_heading {
    padding-block: 10px;
    border-right: 1px solid var(--color_bg_dark);
  }
}
@media screen and (min-width: 1200px) {
  .p-contactTel_heading {
    padding-block: 20px;
  }
}

.p-contactTel_inner {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (min-width: 768px) {
  .p-contactTel_inner {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-block: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .p-contactTel_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 20px;
  }
}

.p-contactTel_btn {
  font-size: clamp(1.75rem, 1.469rem + 1.25vw, 2.25rem);
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .p-contactTel_btn {
    width: 50%;
  }
}
.p-contactTel_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3%;
}
@media screen and (min-width: 768px) {
  .p-contactTel_btn a {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .p-contactTel_btn a::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
  }
}
.p-contactTel_btn span:first-of-type {
  width: 25px;
  display: inline-flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-contactTel_btn span:first-of-type {
    padding-top: 5px;
  }
}

.p-contactTel_time {
  font-size: clamp(0.75rem, -0.491rem + 2.586vw, 1.125rem);
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .p-contactTel_time {
    margin-top: 5px;
  }
}

/*=============================================================
  header.scss
=============================================================*/
.l-header {
  height: var(--header_height);
  position: fixed;
  left: 0;
  top: 0;
  display: grid;
  grid-template-columns: 1fr var(--header_height);
  grid-template-areas: "h-logo h-btn";
  align-items: center;
  color: #fff;
  z-index: 999;
  transition: 0.7s all;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: var(--header_height_lg);
  }
}
@media screen and (min-width: 960px) {
  .l-header {
    grid-template-columns: min(23%, 400px) 1fr;
    column-gap: 5%;
    grid-template-areas: "h-logo h-navi";
  }
}

.l-header_logo {
  grid-area: h-logo;
}

.l-header_navi {
  grid-area: h-navi;
}

.l-header_btn {
  grid-area: h-btn;
}

.l-header_logo {
  container-type: inline-size;
}
.l-header_logo a {
  color: currentColor;
  display: flex;
  align-items: flex-end;
  column-gap: min(5%, 20px);
  row-gap: 5px;
  flex-wrap: wrap;
  max-width: 300px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 960px) {
  .l-header_logo a {
    max-width: none;
    width: 400px;
  }
}

.header-logo_img {
  display: block;
  width: 100%;
  max-width: 170px;
}
@media screen and (min-width: 960px) {
  .header-logo_img {
    max-width: 250px;
  }
}

.header-logo_txt {
  display: inline-block;
  font-size: min(8cqw, 14px);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.75;
  margin-bottom: 5px;
}
@media screen and (min-width: 560px) {
  .header-logo_txt {
    font-size: 0.875rem;
  }
}

.l-header_btn {
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .l-header_btn {
    display: none;
  }
}

.l-header_navi {
  color: #fff;
}
@media screen and (max-width: 959px) {
  .l-header_navi {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    background: url(../../img/bg03.jpg) no-repeat center top;
  }
}
@media screen and (min-width: 960px) {
  .l-header_navi {
    display: block;
  }
}

@media screen and (max-width: 959px) {
  .header_navi {
    padding-top: calc(var(--header_height) + 20px);
    padding-bottom: 40px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-inline: 8vw;
  }
}

@media screen and (max-width: 959px) {
  .header_navi_inner {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .header_menu {
    display: flex;
    justify-content: flex-end;
    column-gap: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .header_menu {
    column-gap: 30px;
  }
}
@media screen and (max-width: 959px) {
  .header_menu li + li {
    margin-top: calc(25px + 1vw);
  }
}
@media screen and (min-width: 960px) {
  .header_menu li:first-of-type {
    visibility: hidden;
  }
}
.header_menu a {
  color: currentColor;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .header_menu a {
    font-size: clamp(1rem, 0.784rem + 0.962vw, 1.625rem);
  }
}
@media screen and (min-width: 960px) {
  .header_menu a {
    font-size: clamp(0.875rem, 0.602rem + 0.455vw, 1rem);
    transition: var(--trans_speed) all;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    display: inline-block;
    white-space: nowrap;
  }
}
.header_menu a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--color_gradation);
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50%;
  transition: var(--trans_speed) all;
}
@media (any-hover: hover) {
  .header_menu a:hover::before {
    width: 80%;
  }
}

.header_mail {
  margin-top: 80px;
  background: #fff;
  padding: 15px;
  color: var(--color_txt);
}
@media screen and (min-width: 960px) {
  .header_mail {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header_mail .p-contactMail_txt01 br {
    display: inline;
  }
}

.header_tel {
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .header_tel {
    display: none;
  }
}

.l-header.is-scroll {
  background: color-mix(in srgb, var(--color_bg_dark) 70%, transparent);
  backdrop-filter: blur(10px);
}
.l-header.is-scroll .naviBtn p span::before, .l-header.is-scroll .naviBtn p span::after {
  background: var(--color_gradation);
}
/*=============================================================
  navi.scss
=============================================================*/
/* 
// スマホでメニューが表示されたときに背景のコンテンツがスクロールしないように
html{
  overflow: auto;
  height: 100%;
}
body.is-menuopen{
  overflow: hidden;
  height: 100%;
}


// スマホで表示されたメニューのスクロール
.navi_menu{
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
*/
/*=============================================================
  naviBtn.scss
==============================================================*/
.naviBtn {
  display: block;
  width: var(--header_height)/2;
  height: var(--header_height)/2;
}
@media screen and (min-width: 960px) {
  .naviBtn {
    display: none;
  }
}
.naviBtn button {
  border: none;
  width: 100%;
  height: 100%;
  background: none;
  position: relative;
  transition: 0.4s all;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.naviBtn p {
  width: calc(var(--header_height) / 2);
  aspect-ratio: 1/0.3;
  position: relative;
}
.naviBtn p span::before, .naviBtn p span::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  right: 0;
  transition: 0.5s all;
  height: 1px;
  background: #fff;
  transition: var(--trans_speed) all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.naviBtn p span::before {
  top: 0;
}
.naviBtn p span::after {
  bottom: 0;
  width: 50%;
}
.naviBtn p span.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.naviBtn:hover p span::after {
  width: 100%;
}

.is-menuopen button p::after {
  opacity: 0;
}
.is-menuopen button span::before {
  transform: translateY(9px) rotate(-45deg);
}
.is-menuopen button span::after {
  transform: translateY(-9px) rotate(45deg);
  width: 100%;
}

/*=============================================================
  footer.scss
=============================================================*/
.l-footer_contact {
  background: url(../../img/contact_bg.jpg) no-repeat center center/cover;
}

.footer_tel {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .footer_tel {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .footer_tel {
    margin-top: 60px;
  }
}

.l-footer_inner {
  background: var(--color_bg_dark);
}

.footer_group {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10%;
}
@media screen and (min-width: 768px) {
  .footer_group {
    column-gap: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .footer_group {
    column-gap: 80px;
  }
}
.footer_group .-nishino {
  width: 35%;
  max-width: 150px;
}
@media screen and (min-width: 768px) {
  .footer_group .-nishino {
    width: auto;
  }
}
.footer_group .-hm {
  width: 60%;
  max-width: 270px;
}
@media screen and (min-width: 768px) {
  .footer_group .-hm {
    width: auto;
  }
}
.footer_group a {
  transition: var(--trans_speed) all;
}
@media (any-hover: hover) {
  .footer_group a:hover {
    opacity: 0.7;
  }
}

.footer_copyright {
  color: #fff;
  font-size: clamp(0.625rem, 0.495rem + 0.577vw, 1rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

/*=============================================================
  main.scss
=============================================================*/
.l-wrapper {
  container-type: inline-size;
}

.page-contents {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .l-column {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .l-column_main {
    width: 70%;
    max-width: 960px;
  }
}
.l-column_side {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .l-column_side {
    width: 25%;
    max-width: 300px;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-column_sticky {
    position: sticky;
    top: var(--header_height)20px;
  }
}
@media screen and (min-width: 1200px) {
  .l-column_sticky {
    top: var(--header_height_lg)20px;
  }
}

/*=============================================================
  pageHeading.scss
==============================================================*/
.l-pageHeading {
  height: 20vh;
  min-height: 200px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-pageHeading {
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeading {
    height: 600px;
  }
}

.l-pageHeading_inner {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  text-align: center;
  width: fit-content;
  z-index: 10;
}

.l-pageHeading_main {
  padding: 10px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid #fff;
  font-size: clamp(1.75rem, 1.166rem + 2.596vw, 3.4375rem);
}

.l-pageHeading_sub {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 0.865rem + 1.154vw, 1.875rem);
  text-transform: uppercase;
  background: var(--color_grad_txt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.75;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .l-pageHeading_sub {
    margin-top: 20px;
  }
}

.l-pageHeading_img {
  height: 100%;
  position: relative;
}
.l-pageHeading_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  inset: 0;
}
.l-pageHeading_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*=============================================================
  pagenation.scss
==============================================================*/
.pagination {
  text-align: center;
  margin-top: calc(var(--padding_medium) / 3);
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: calc(var(--padding_medium) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .pagination {
    margin-top: var(--padding_medium);
  }
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination li {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  color: #000;
  text-decoration: none;
  border: 1px solid #ccc;
  line-height: 1;
  margin-right: -1px;
}
.pagination span, .pagination a {
  transition: all 0.1s;
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color_txt);
  background: #fff;
}
@media screen and (min-width: 768px) {
  .pagination span, .pagination a {
    width: 50px;
  }
}
@media (any-hover: hover) {
  .pagination span:not(.dots, .current):hover, .pagination a:not(.dots, .current):hover {
    background: var(--color_bg);
  }
}
.pagination span.current {
  color: #fff;
  background: var(--color_main);
}
.pagination svg {
  width: 18px;
  fill: currentColor;
}

/* entryNavi
---------------------------------------------*/
.entryNavi {
  display: grid;
  grid-template-columns: 1fr 15% 25% 15% 1fr;
  grid-template-areas: ". p-next p-list p-prev .";
  column-gap: 5%;
}
.entryNavi p {
  position: relative;
}
.entryNavi a {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color_txt);
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.3;
  padding: 20px 10px;
  text-align: center;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .entryNavi a {
    padding: 20px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .entryNavi a {
    padding: 25px 10px;
  }
}
.entryNavi_prev {
  grid-area: p-prev;
}
.entryNavi_next {
  grid-area: p-next;
}
.entryNavi_prev, .entryNavi_next {
  color: var(--color_main);
}
.entryNavi_prev a, .entryNavi_next a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .entryNavi_prev a:hover, .entryNavi_next a:hover {
    background: color-mix(in srgb, var(--color_accent) 30%, transparent);
  }
}
.entryNavi_back {
  grid-area: p-list;
}
.entryNavi_back a {
  background: var(--color_accent);
  color: #fff;
}
@media (any-hover: hover) {
  .entryNavi_back a:hover {
    background: color-mix(in srgb, var(--color_accent) 80%, transparent);
  }
}

/*=============================================================
  top.css
=============================================================*/
.top-mainVisual {
  position: relative;
}

.top-mainVisual_inner {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 10;
  color: #fff;
}

.top-mainVisual_img {
  height: 60vh;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_img {
    height: 100vh;
  }
}
.top-mainVisual_img img {
  object-fit: cover;
  object-position: left center;
  width: 100%;
  height: 100%;
}
.top-mainVisual_img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  inset: 0;
}

.top-mainVisual_copy {
  font-size: clamp(2.125rem, 1.671rem + 2.019vw, 3.4375rem);
  line-height: 1.4;
}
.top-mainVisual_copy > span {
  display: block;
  width: fit-content;
  overflow: hidden;
}

.top-mainVisual_lead {
  margin-top: 20px;
  line-height: 1.3;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_lead {
    margin-top: 30px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_lead {
    margin-top: 35px;
  }
}

.top-mainVisual_logo {
  margin-top: 25px;
  width: clamp(6.25rem, 4.991rem + 5.595vw, 9.188rem);
}
@media screen and (min-width: 768px) {
  .top-mainVisual_logo {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_logo {
    margin-top: 35px;
  }
}

.top-introWrap {
  overflow: hidden;
}

.top-introMain {
  background: url(../../img/top/top-bg01.jpg) no-repeat center top;
  background-size: cover;
  color: #fff;
}

.top-introMain_txt {
  text-align: center;
  line-height: 2.7;
  word-break: keep-all;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}
.top-introMain_txt::before {
  content: "";
  background: url(../../img/top/top-bg02.png) no-repeat center center/contain;
  display: block;
  width: 80vw;
  max-width: 723px;
  aspect-ratio: 723/405;
  position: absolute;
  left: 45%;
  top: 50%;
  translate: -50% -50%;
}

.top-introMain_img {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .top-introMain_img {
    margin-top: 70px;
    padding-bottom: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .top-introMain_img {
    margin-top: 100px;
    padding-bottom: 200px;
  }
}

.top-introBox {
  background: url(../../img/bg01.png) no-repeat left 30%, url(../../img/bg02.png) no-repeat right bottom;
  background-size: contain;
}

.top-intro01 {
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: auto 1fr 68%;
  grid-template-rows: 30px 1fr 30px;
  grid-template-areas: ". . ti-img" "ti-txt . ti-img" ". . ti-img";
}
@media screen and (min-width: 1200px) {
  .top-intro01 {
    grid-template-rows: 50px 1fr 50px;
    grid-template-columns: auto 1fr 68%;
  }
}
@media screen and (min-width: 1200px) {
  .top-intro01 {
    grid-template-rows: 70px 1fr 70px;
    grid-template-columns: auto 1fr 62%;
  }
}

.top-intro01_txt {
  grid-area: ti-txt;
}

.top-intro01_img {
  grid-area: ti-img;
}

.top-intro01_txt {
  writing-mode: vertical-rl;
  font-size: clamp(1.25rem, 0.601rem + 2.885vw, 3.125rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.3rem;
}
@media screen and (min-width: 768px) {
  .top-intro01_txt {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-intro01_txt {
    padding-left: 50px;
  }
}

.top-intro01_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: left top;
}

.top-intro02 {
  margin-top: 100px;
}

.top-intro02_inner {
  display: grid;
  grid-template-columns: 44% auto 49%;
  grid-template-rows: auto 30px auto 30px auto 1fr;
  grid-template-areas: "ti02-img01 . ti02-txt01" "ti02-img01 . ." "ti02-img01 . ti02-img02" ". . ti02-img02" "ti02-txt02 ti02-txt02 ti02-txt02" ". ti02-img03 ti02-img03";
}
@media screen and (min-width: 768px) {
  .top-intro02_inner {
    grid-template-columns: 40% auto 42%;
    grid-template-rows: auto 120px auto 30px auto 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .top-intro02_inner {
    grid-template-rows: auto 200px auto 145px auto 1fr;
  }
}

.top-intro02_txt01 {
  grid-area: ti02-txt01;
}

.top-intro02_txt02 {
  grid-area: ti02-txt02;
}

.top-intro02_img01 {
  grid-area: ti02-img01;
}

.top-intro02_img02 {
  grid-area: ti02-img02;
}

.top-intro02_img03 {
  grid-area: ti02-img03;
}

.top-intro02_txt01,
.top-intro02_txt02 {
  line-height: 2.5;
  position: relative;
  z-index: 10;
}

.top-intro02_txt02 {
  padding-top: 30px;
  padding-bottom: 15px;
  padding-inline: min(12.5%, 200px);
}
@media screen and (min-width: 768px) {
  .top-intro02_txt02 {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .top-intro02_txt02 {
    padding-top: 90px;
    padding-bottom: 25px;
  }
}

.top-intro02_img01 span {
  display: block;
  position: relative;
}
.top-intro02_img01 span::before {
  content: "";
  width: calc(100% + 50vw - 50%);
  height: 60%;
  display: block;
  background: #d0c9d8;
  position: absolute;
  right: 10%;
  bottom: -10%;
}
@media screen and (min-width: 768px) {
  .top-intro02_img01 span::before {
    height: 70%;
    bottom: -20%;
  }
}
.top-intro02_img01 img {
  position: relative;
  z-index: 10;
}

.top-intro02_img02 {
  position: relative;
}
.top-intro02_img02 img {
  position: relative;
  z-index: 10;
}
.top-intro02_img02::before {
  content: "";
  width: calc(min(10%, 100px) + 50vw - 50%);
  height: 130%;
  display: block;
  background: #d0c9d8;
  position: absolute;
  left: 90%;
  bottom: 10%;
}
@media screen and (min-width: 1200px) {
  .top-intro02_img02::before {
    width: calc(100px + 50vw - 50%);
    left: calc(100% - 100px);
  }
}

.top-intro02_img03 {
  padding-right: 10%;
}

.top-aboutWrap {
  background: url(../../img/top/top-bg03.png) no-repeat center center/cover;
  overflow: hidden;
  color: #fff;
}

.top-about {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  row-gap: 20px;
  grid-template-areas: "ta-inner" "ta-img";
}
@media screen and (min-width: 768px) {
  .top-about {
    margin-left: calc(50% - 50vw);
    grid-template-columns: 52% 1fr auto;
    grid-template-rows: 40px 1fr 40px;
    row-gap: 0;
    column-gap: 0;
    grid-template-areas: "ta-img . ." "ta-img . ta-inner" "ta-img . .";
  }
}
@media screen and (min-width: 1200px) {
  .top-about {
    grid-template-rows: 100px 1fr 100px;
    row-gap: 0;
  }
}

.top-about_inner {
  grid-area: ta-inner;
}

.top-about_img {
  grid-area: ta-img;
}

.top-about_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5%;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .top-products {
    column-gap: 3%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "tp-item01 tp-item02 tp-item03" "tp-item01 tp-item02 tp-item04";
  }
}

@media screen and (min-width: 768px) {
  .-item01 {
    grid-area: tp-item01;
  }
}

@media screen and (min-width: 768px) {
  .-item02 {
    grid-area: tp-item02;
  }
}

@media screen and (min-width: 768px) {
  .-item03 {
    grid-area: tp-item03;
  }
}

@media screen and (min-width: 768px) {
  .-item04 {
    grid-area: tp-item04;
  }
}

.top-products_item {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 5%;
  grid-template-areas: "tp-img tp-title" "tp-txt tp-title";
}

.top-products_heading {
  grid-area: tp-title;
}

.top-products_img {
  grid-area: tp-img;
}

.top-products_txt {
  grid-area: tp-txt;
}

.top-products_heading {
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.315rem + 2.212vw, 2.25rem);
  letter-spacing: 0.1rem;
}

.top-products_txt {
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin-top: 15px;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .top-products_txt {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .top-products_txt {
    margin-top: 25px;
  }
}

@media screen and (min-width: 768px) {
  .top-newsWrap {
    display: grid;
    grid-template-columns: 30% 68%;
    justify-content: space-between;
  }
}
@media screen and (min-width: 960px) {
  .top-newsWrap {
    grid-template-columns: 223px 74%;
  }
}
@media screen and (min-width: 1200px) {
  .top-newsWrap {
    grid-template-columns: 223px 77%;
  }
}

.top-news_heading {
  width: fit-content;
  margin-bottom: 40px;
}

/*=============================================================
  news.scss
==============================================================*/
.news-list {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
}
@media screen and (min-width: 560px) {
  .news-list {
    grid-template-columns: auto auto 1fr;
  }
}
@media screen and (min-width: 768px) {
  .news-list {
    grid-template-columns: auto 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .news-list {
    grid-template-columns: auto auto 1fr;
  }
}

.news-listItem {
  border-bottom: 1px solid var(--color_border);
  display: inherit;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
@media screen and (min-width: 560px) {
  .news-listItem {
    grid-column: span 3;
  }
}
@media screen and (min-width: 768px) {
  .news-listItem {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1200px) {
  .news-listItem {
    grid-column: span 3;
  }
}
.news-listItem:first-of-type {
  border-top: 1px solid var(--color_border);
}
.news-listItem a {
  display: inherit;
  grid-template-columns: subgrid;
  grid-template-rows: auto auto;
  grid-column: inherit;
  grid-template-areas: "n-cate n-date" "n-title n-title";
  column-gap: 15px;
  row-gap: 10px;
  line-height: 1.6;
  padding: 20px 10px;
  position: relative;
  overflow: hidden;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 560px) {
  .news-listItem a {
    padding: 25px 10px;
    grid-template-rows: auto;
    grid-template-areas: "n-cate n-date n-title";
    align-items: start;
    column-gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .news-listItem a {
    grid-template-rows: auto auto;
    grid-template-areas: "n-cate n-date" "n-title n-title";
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .news-listItem a {
    align-items: start;
    grid-template-rows: auto;
    grid-template-areas: "n-cate n-date n-title";
    column-gap: 30px;
  }
}
.news-listItem a::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color_gradation);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: var(--trans_speed) all;
  opacity: 0;
}
@media (any-hover: hover) {
  .news-listItem a:hover::before {
    opacity: 1;
  }
}
.news-listItem a > * {
  position: relative;
  z-index: 10;
}
.news-listItem_date {
  grid-area: n-date;
}
.news-listItem_category {
  grid-area: n-cate;
}
.news-listItem_title {
  grid-area: n-title;
}
.news-listItem_date {
  position: relative;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  font-weight: 600;
}
.news-listItem_category {
  position: relative;
  font-size: clamp(0.6875rem, 0.601rem + 0.385vw, 0.9375rem);
  color: #fff;
  background: #000;
  padding: 3px 10px;
  min-width: 100px;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .news-listItem_category {
    min-width: 120px;
    padding: 5px 10px;
  }
}
.news-listItem_title {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
}
@media screen and (min-width: 960px) {
  .news-listItem:hover .news-listItem_title {
    color: var(--color_main);
  }
}

.news-entryData {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color_accent);
  column-gap: 10px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news-entryData {
    row-gap: 15px;
    column-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData {
    row-gap: 20px;
    column-gap: 20px;
  }
}
.news-entryData_date {
  position: relative;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  font-weight: 600;
}
.news-entryData_category {
  position: relative;
  font-size: clamp(0.6875rem, 0.601rem + 0.385vw, 0.9375rem);
  color: #fff;
  background: #000;
  padding: 3px 10px;
  min-width: 100px;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .news-entryData_category {
    min-width: 120px;
    padding: 5px 10px;
  }
}
.news-entryData_title {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
}
.news-entryData_title {
  width: 100%;
  font-size: clamp(1.375rem, 1.159rem + 0.962vw, 2rem);
  line-height: 1.3;
}
/*=============================================================
  page.scss
==============================================================*/
@media screen and (min-width: 768px) {
  .page-list {
    margin-left: calc(50% - 50vw);
  }
}

.page-listItem {
  width: 100%;
  display: grid;
  row-gap: 20px;
  grid-template-columns: 1fr;
  grid-template-areas: "pl-img" "pl-heading" "pl-txt" "pl-link";
}
@media screen and (min-width: 768px) {
  .page-listItem {
    min-height: 200px;
    grid-template-columns: 52% 1fr 42%;
    grid-template-rows: 40px auto 1fr auto 40px;
    grid-template-areas: "pl-img . ." "pl-img . pl-heading" "pl-img . pl-txt" "pl-img . pl-link" "pl-img . .";
    row-gap: 0;
    column-gap: 0;
  }
}
@media screen and (min-width: 1200px) {
  .page-listItem {
    grid-template-columns: 52% 1fr 40%;
  }
}
.page-listItem + .page-listItem {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .page-listItem + .page-listItem {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .page-listItem + .page-listItem {
    margin-top: 100px;
  }
}
.page-listItem_heading {
  grid-area: pl-heading;
}
.page-listItem_img {
  grid-area: pl-img;
}
.page-listItem_text {
  grid-area: pl-txt;
}
.page-listItem_link {
  grid-area: pl-link;
}

.page-listItem_img figure {
  display: block;
  width: 100%;
  aspect-ratio: 640/427;
  overflow: hidden;
}
.page-listItem_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-listItem_heading.wp-c-heading02 {
  margin-bottom: 0;
}

/*
.page-listItem{
  width: 100%;
	display: grid;
	grid-template-rows: auto auto;
	row-gap: 40px;
	@include mq-up(md){
		grid-template-rows:auto;
		grid-template-columns: 50% 1fr;
		column-gap: 5%;
		justify-content: space-between;
		align-items: end;
	}
	@include mq-up(xl){
	}

	& + &{
		margin-top: 40px;
		@include mq-up(md){
			margin-top: 50px;
		}
		@include mq-up(xl){
			margin-top: 60px;
		}

	} 

	.wp-c-heading02{
		margin-bottom: 20px;
		@include mq-up(md){
			margin-bottom: 30px;
		}
		@include mq-up(xl){
			margin-bottom: 40px;
		}
	}
}

.page-listitem_inner{
	@include mq-up(md){
		align-items: center;
	}
}
.page-listItem_img{
		overflow: hidden;
		img{
			object-fit: cover;
			width: 100%;
			height: 100%;
		}

  a{
    display: block;
  }

}

.page-listItem_text{	
	@include m-font-clamp($m-fontSize_sm - 2,$m-fontSize_lg);
	line-height: 1.6;
	@include mq-up(md){
	line-height: 1.6;
	}
}
.page-listItem_link{
		margin-top: 20px;
		@include mq-up(md){
			margin-top: 30px;
		}
		@include mq-up(xl){
			margin-top: 40px;
		}
}

*/
/*=============================================================
  notfound.scss
============================================================= */
.notfoundWrap {
  position: relative;
  height: 100vh;
}

.notfoundWrap_inner {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  margin: auto;
  z-index: 100;
}

.notfoundWrap_img {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.notfoundWrap_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.notfoundWrap_img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  inset: 0;
}

.notfoundHeading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 10vw;
}
@media screen and (min-width: 560px) {
  .notfoundHeading {
    font-size: 4.375rem;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 960px) {
  .notfoundHeading {
    font-size: 6.25rem;
    margin-bottom: 60px;
  }
}
.notfoundHeading_main {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  background: var(--color_grad_txt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.notfoundHeading_sub {
  margin-top: 10px;
  font-weight: 500;
  font-size: 30%;
  color: #fff;
}

.notfound {
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  font-weight: 500;
}
@media screen and (min-width: 560px) {
  .notfound {
    padding: 40px;
  }
}
@media screen and (min-width: 960px) {
  .notfound {
    padding: 60px;
  }
}

/*=============================================================
  privacy.scss
==============================================================*/
.privacyContact {
  border: 1px solid #000;
  padding: 15px;
  display: inline-block;
  margin: 20px;
}

/*=============================================================
  entry.scss
==============================================================*/
/* entryBody
-----------------------------*/
.entryBody {
  overflow: hidden;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  font-weight: 500;
  line-height: 1.8;
  /*
  &.txtbox p{
    margin-bottom: 0px;
  }
  &.txtbox p + p{
    margin-top:0px;
  }

  p strong{
  }

  p + div{
    margin-top: 30px;
    @include mq-up(xl) {
      margin-top: 40px;
    }
  }
  div{
    margin-bottom: 30px;
    @include mq-up(xl) {
      margin-bottom: 40px;
    }
  }
  */
}
@media screen and (min-width: 768px) {
  .entryBody {
    line-height: 2;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody {
    line-height: 2.2;
  }
}
.entryBody > *:first-child {
  margin-top: 0 !important;
}
.entryBody h2:not([class]) {
  font-size: clamp(1.5rem, 1.046rem + 2.019vw, 2.8125rem);
  font-weight: 500;
  position: relative;
  word-break: keep-all;
  display: flex;
  column-gap: min(3%, 15px);
  line-height: 1.3;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class]) {
    column-gap: min(5%, 30px);
  }
}
.entryBody h2:not([class])::before, .entryBody h2:not([class])::after {
  content: "";
  width: clamp(3.125rem, 2.589rem + 2.381vw, 4.375rem);
  height: 2px;
  display: block;
  background: currentColor;
}
.entryBody h2:not([class]) {
  margin-top: 100px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class]) {
    margin-top: 120px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class]) {
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
.entryBody h3:not([class]) {
  border-left: 3px solid var(--title_border);
  padding: 5px 15px;
  font-size: clamp(1.375rem, 1.072rem + 1.346vw, 2.25rem);
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .entryBody h3:not([class]) {
    padding: 10px 20px;
    border-left-width: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h3:not([class]) {
    padding: 15px 25px;
  }
}
.entryBody h3:not([class]) {
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h3:not([class]) {
    margin-top: 100px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h3:not([class]) {
    margin-top: 120px;
    margin-bottom: 30px;
  }
}
.entryBody h4:not([class]) {
  font-size: clamp(1.25rem, 1.034rem + 0.962vw, 1.875rem);
  line-height: 1.3;
  padding: 15px 0;
  border-top: 1px solid var(--title_border);
  border-bottom: 1px solid var(--title_border);
}
@media screen and (min-width: 768px) {
  .entryBody h4:not([class]) {
    padding: 20px 0;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h4:not([class]) {
    padding: 25px 0;
  }
}
.entryBody h4:not([class]) {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h4:not([class]) {
    margin-top: 80px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h4:not([class]) {
    margin-top: 100px;
    margin-bottom: 30px;
  }
}
.entryBody h5:not([class]) {
  font-size: clamp(1.125rem, 0.952rem + 0.769vw, 1.625rem);
  line-height: 1.3;
  background: var(--title_bg);
  color: #fff;
  padding: 15px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .entryBody h5:not([class]) {
    padding: 18px 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h5:not([class]) {
    padding: 20px 30px;
  }
}
.entryBody h5:not([class])::before {
  content: "";
  background: var(--color_accent);
  display: block;
  width: 10px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.entryBody h5:not([class]) {
  margin-top: 50px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody h5:not([class]) {
    margin-top: 65px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h5:not([class]) {
    margin-top: 80px;
    margin-bottom: 20px;
  }
}
.entryBody h6:not([class]) {
  font-size: clamp(1.125rem, 1.038rem + 0.385vw, 1.375rem);
  line-height: 1.3;
  color: var(--color_brown);
}
.entryBody h6:not([class]) {
  margin-top: 40px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody h6:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h6:not([class]) {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
.entryBody p:not([class]) + p:not([class]) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
}
.entryBody a:not([class]):not(.no-entryBody) {
  color: #1530A0;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .entryBody a:not([class]):not(.no-entryBody):hover {
    color: #2b51e6;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .entryBody a:not([class]):not(.no-entryBody)[href^=tel] {
    pointer-events: none;
    color: var(--color_txt);
    text-decoration: none;
  }
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"], .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"], .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
  padding-right: 15px;
  position: relative;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"], .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"], .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
    padding-right: 18px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"], .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"], .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
    padding-right: 20px;
  }
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"]::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.1s;
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c1";
  font-weight: 900;
  color: #f20f00;
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".doc"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c2";
  font-weight: 900;
  color: #144aab;
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".xls"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c3";
  font-weight: 900;
  color: #077d3f;
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".txt"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f15c";
  font-weight: 900;
  font-weight: 500;
  color: #666;
}
.entryBody table {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  width: 100%;
  margin: 30px 0;
  table-layout: fixed;
  background: #fff;
}
@media screen and (min-width: 1200px) {
  .entryBody table {
    margin: 40px 0;
  }
}
.entryBody table th,
.entryBody table td {
  border: 1px solid var(--color_border);
  padding: 10px;
  font-size: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
  line-height: 2;
  vertical-align: top;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .entryBody table th,
  .entryBody table td {
    font-size: calc(var(--fontSize_md) / 16)rem;
    padding: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody table th,
  .entryBody table td {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
    line-height: 180%;
    padding: 15px 20px;
  }
}
.entryBody table th {
  background: var(--color_bg);
}
.entryBody table thead th {
  background: var(--color_main);
  color: #fff;
  text-align: center;
  font-size: 100%;
  padding: 12px 10px;
}
@media screen and (min-width: 768px) {
  .entryBody table thead th {
    padding: 18px 15px;
    font-size: 105%;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody table thead th {
    padding: 20px;
  }
}
.entryBody ul:not(.no-entryBody):not([class]),
.entryBody ol:not(.no-entryBody):not([class]) {
  width: 100%;
  margin: 20px 0;
  padding-left: 25px;
}
@media screen and (min-width: 1200px) {
  .entryBody ul:not(.no-entryBody):not([class]),
  .entryBody ol:not(.no-entryBody):not([class]) {
    padding-left: 20px;
    width: 100%;
  }
}
.entryBody ul:not(.no-entryBody):not([class]) li,
.entryBody ol:not(.no-entryBody):not([class]) li {
  position: relative;
  font-size: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
  line-height: 2;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    font-size: calc(var(--fontSize_md) / 16)rem;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
  }
}

/*=============================================================
  wpLayout.scss
==============================================================*/
.wp-l-body > .wp-l-section:first-of-type {
  margin-top: 0;
}

.wp-l-section {
  container-type: inline-size;
  margin-block: 40px;
  /*
  & + &{
    margin-top:40px;
    @include mq-up(md){
      margin-top:50px;
    }
    @include mq-up(xl){
      margin-top:80px;
    }
  }
    */
}
@media screen and (min-width: 768px) {
  .wp-l-section {
    margin-block: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-l-section {
    margin-block: 80px;
  }
}
.wp-l-section > .wp-l-container:first-of-type {
  margin-top: 0;
}

.wp-l-container {
  container-type: inline-size;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .wp-l-container {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-l-container {
    margin-top: 80px;
  }
}
[class*=wp-l-] > .wp-l-container:first-child {
  margin-top: 0;
}

.wp_contents .wp-l-section:last-child {
  margin-bottom: 0;
}

.wp-l-bg--brown {
  background: url(../../img/bg03.jpg) no-repeat center top/cover;
  color: #fff;
  --title_bg: #fff;
  --title_border: #fff;
}

.wp-l-bg--white {
  background: #fff;
  --title_bg: var(--color_main);
  --title_border: var(--color_brown);
}

.wp-l-bg--lightgray {
  background: var(--color_bg);
  --title_bg: var(--color_main);
  --title_border: var(--color_brown);
}

.wp-l-whiteBox {
  background: #fff;
  padding: 20px;
  color: var(--txt);
}
@media screen and (min-width: 560px) {
  .wp-l-whiteBox {
    padding: 40px;
  }
}
@media screen and (min-width: 768px) {
  .wp-l-whiteBox {
    padding: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-l-whiteBox {
    padding: 90px min(7.14%, 100px);
  }
}

/*
.wp-c-heading{
  @include m-font-clamp(20,26);
  margin-bottom: 80px;
  @include mq-down(xl){
    margin-bottom: 60px;
  }
  @include mq-down(md){
    margin-bottom: 40px;
  }

  &--small{
    @include m-font-clamp(16,22);
  }

}

.wp-c-heading_title{
  font-weight: 600;
  line-height: 1.6;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  padding-top: 80px;
  @include mq-down(xl){
    padding-top: 60px;
  }
  @include mq-down(md){
    padding-top: 50px;
  line-height: 1.3;
  }

  &::before{
    content: '';
    width: 20px;
    aspect-ratio: 20/42;
    position: absolute;
    left: 50%;
    top:0;
    display: block;
    background: url(../../img/c-title.png) no-repeat center center / contain;
    @include mq-down(xl){
      width: 16px;
    }
    @include mq-down(md){
      width: 14px;
    }
  }
}
.wp-c-heading_subTitle{
  font-size: 0.57em;
  width:fit-content;
  margin-inline: auto;
  margin-top: 1.5rem;
  line-height: 1.3;
  @include mq-down(xl){
  }
  @include mq-down(md){
  }
}
*/
.wp-c-heading_txt {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 2.2;
  width: fit-content;
  margin-inline: auto;
  max-width: 80%;
  margin-top: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading_txt {
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading_txt {
    max-width: 100%;
  }
}

.wp-c-heading02 {
  font-size: clamp(1.625rem, 1.274rem + 1.558vw, 3.125rem);
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading02 {
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading02 {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.wp-c-heading02::after {
  content: "";
  display: block;
  width: 150px;
  height: 5px;
  background: linear-gradient(to right, #b5b5b6 20%, #aba594 20%, #aba594 40%, #6f6076 40%, #6f6076 60%, #5f5147 60%, #5f5147 80%, #000000 80%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .wp-c-heading02::after {
    width: 200px;
    height: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-c-heading02::after {
    width: 300px;
    height: 10px;
  }
}
.wp-c-heading02--small {
  font-size: clamp(1.375rem, 1.17rem + 0.909vw, 2.25rem);
  padding-bottom: 25px;
  margin-bottom: 50px;
  line-height: 1.3;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading02--small {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading02--small {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
}
.wp-c-heading02--small::after {
  width: 90px;
  height: 3px;
}
@media screen and (min-width: 768px) {
  .wp-c-heading02--small::after {
    width: 120px;
    height: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-c-heading02--small::after {
    width: 150px;
    height: 5px;
  }
}
.wp-c-heading02--small .wp-c-heading02_subTitle {
  margin-top: 0px;
}

.wp-c-heading02_title {
  line-height: 1.6;
  position: relative;
  color: currentColor;
}
@media screen and (max-width: 767px) {
  .wp-c-heading02_title {
    line-height: 1.3;
  }
}

.wp-c-heading02_subTitle {
  font-size: 0.5em;
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: var(--color_brown);
}
@media screen and (min-width: 768px) {
  .wp-introductionWrap {
    margin-right: calc(50% - 50vw);
  }
}

.wp-introduction {
  display: grid;
  grid-template-columns: auto 1fr 68%;
  grid-template-rows: 30px 1fr 30px;
  grid-template-areas: ". . a-img" "a-heading . a-img" ". . a-img";
}
@media screen and (min-width: 1200px) {
  .wp-introduction {
    grid-template-rows: 50px 1fr 50px;
    grid-template-columns: auto 1fr 68%;
  }
}
@media screen and (min-width: 1200px) {
  .wp-introduction {
    grid-template-rows: 70px 1fr 70px;
    grid-template-columns: auto 1fr 62%;
  }
}
.wp-introduction_img {
  grid-area: a-img;
}
.wp-introduction_heading {
  grid-area: a-heading;
}

.wp-introduction_heading {
  writing-mode: vertical-rl;
  font-size: clamp(1.25rem, 0.601rem + 2.885vw, 3.125rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.3rem;
}
@media screen and (min-width: 768px) {
  .wp-introduction_heading {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-introduction_heading {
    padding-left: 50px;
  }
}
.wp-introduction_heading p {
  font-size: clamp(0.625rem, 0.495rem + 0.577vw, 1rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--color_accent);
}

.wp-introduction_img figure {
  display: block;
  width: 100%;
  height: 100%;
}
.wp-introduction_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wp-introduction_heading.wp-c-heading {
  margin-bottom: 0;
}

.wp-c-grid {
  display: flex;
  justify-content: space-between;
  row-gap: 3em;
  column-gap: 2cqw;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .wp-c-grid {
    column-gap: 4cqw;
  }
}
.wp-c-grid figure {
  display: block;
  overflow: hidden;
}
.wp-c-grid.-sp-column .wp-c-gridItem {
  width: 100%;
}
.wp-c-grid.-sp-half .wp-c-gridItem {
  width: calc((100% - 4cqw) / 2);
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-half .wp-c-gridItem {
    width: calc((100% - 4cqw) / 2);
  }
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-trisect .wp-c-gridItem {
    justify-content: center;
    width: calc((100% - 8cqw) / 3);
  }
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-quarter .wp-c-gridItem {
    justify-content: center;
    width: calc((100% - 12cqw) / 4);
  }
}
.wp-c-grid.-reverse {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio4_6 {
    column-gap: 5cqw;
  }
}
.wp-c-grid.-ratio4_6 .wp-c-gridItem:first-of-type {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio4_6 .wp-c-gridItem:first-of-type {
    width: 40cqi;
  }
}
.wp-c-grid.-ratio4_6 .wp-c-gridItem:nth-of-type(2) {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio3_7 {
    column-gap: 5cqw;
  }
}
.wp-c-grid.-ratio3_7 .wp-c-gridItem:first-of-type {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio3_7 .wp-c-gridItem:first-of-type {
    width: 30cqi;
  }
}
.wp-c-grid.-ratio3_7 .wp-c-gridItem:nth-of-type(2) {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio2_8 {
    column-gap: 5cqw;
  }
}
.wp-c-grid.-ratio2_8 .wp-c-gridItem:first-of-type {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio2_8 .wp-c-gridItem:first-of-type {
    width: 20cqi;
  }
}
.wp-c-grid.-ratio2_8 .wp-c-gridItem:nth-of-type(2) {
  flex: 1;
}

.wp-c-gridItem_inner {
  margin-top: 1em;
}
.wp-c-gridItem_inner h2, .wp-c-gridItem_inner h3, .wp-c-gridItem_inner h4, .wp-c-gridItem_inner h5, .wp-c-gridItem_inner h6 {
  margin-top: 0 !important;
  margin-bottom: 1em;
}
.wp-c-gridItem_inner p {
  /*margin-block: calc((1em - 1lh) / 2);*/
}
.wp-c-gridItem_inner .txtbox p {
  /*line-height: 1.6;*/
}
.wp-c-gridItem_inner .entryBody {
  line-height: 1.6;
}

.wp-c-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.wp-c-gallery a {
  display: block;
  position: relative;
}

.wp-c-gallery_img {
  overflow: hidden;
  aspect-ratio: 1;
}
.wp-c-gallery_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wp-c-gallery_caption {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  font-size: clamp(0.75rem, 0.62rem + 0.577vw, 1.125rem);
  font-weight: 500;
  padding: 0.5em;
  color: #fff;
  line-height: 1.2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}
@media screen and (min-width: 768px) {
  .wp-c-gallery_caption {
    padding: 20px;
  }
}

.wp-c-downloadList {
  width: 100%;
  max-width: var(--contents_base_ss);
  margin-inline: auto;
}
.wp-c-downloadList_item {
  padding: 1em 0;
  font-size: clamp(0.875rem, 0.745rem + 0.577vw, 1.25rem);
  line-height: 1.3;
  display: flex;
  align-items: center;
  column-gap: 2%;
  border-bottom: 1px dotted var(--color_border);
}
@media screen and (min-width: 1200px) {
  .wp-c-downloadList_item {
    padding: 1.5em 0;
  }
}
.wp-c-downloadList_item::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 18px;
  height: auto;
  aspect-ratio: 417/529;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .wp-c-downloadList_item::before {
    width: 20px;
  }
}
.wp-c-downloadList_item:has([href$=".zip"])::before, .wp-c-downloadList_item:has([href$=".lzh"])::before {
  background-image: url(../../img/icon/ico-file.png);
}
.wp-c-downloadList_item:has([href$=".pdf"])::before {
  background-image: url(../../img/icon/ico-pdf.png);
}
.wp-c-downloadList_item:has([href$=".doc"])::before, .wp-c-downloadList_item:has([href$=".docx"])::before {
  background-image: url(../../img/icon/ico-word.png);
}
.wp-c-downloadList_item:has([href$=".xls"])::before, .wp-c-downloadList_item:has([href$=".xlsx"])::before {
  background-image: url(../../img/icon/ico-excel.png);
}
.wp-c-downloadList_item:has([href$=".txt"])::before {
  background-image: url(../../img/icon/ico-text.png);
}
.wp-c-downloadList_item:has([href$=".ppt"])::before, .wp-c-downloadList_item:has([href$=".pptx"])::before {
  background-image: url(../../img/icon/ico-ppt.png);
}
.wp-c-downloadList_item:has([href$=".png"])::before, .wp-c-downloadList_item:has([href$=".jpg"])::before, .wp-c-downloadList_item:has([href$=".jpeg"])::before, .wp-c-downloadList_item:has([href$=".gif"])::before {
  background-image: url(../../img/icon/ico-img.png);
}
.wp-c-downloadList a {
  background: var(--color_main);
  color: #fff;
  display: inline flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3em 1em;
  line-height: 1;
  column-gap: 5px;
  font-size: clamp(0.75rem, 0.62rem + 0.577vw, 1.125rem);
  margin-left: auto;
  transition: all 0.1s;
}
@media screen and (min-width: 1200px) {
  .wp-c-downloadList a {
    padding: 1em 2em;
  }
}
.wp-c-downloadList a svg {
  fill: currentcolor;
  width: 18px;
}
@media screen and (min-width: 960px) {
  .wp-c-downloadList a:hover {
    background: var(--color_accent);
  }
}

.wp-c-btnList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 5cqi;
  row-gap: 20px;
}
.wp-c-btnList .wp-c-btn {
  width: 100%;
}
.wp-c-btnList .wp-c-btn a {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .wp-c-btnList.-column2 {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .wp-c-btnList.-column2 .wp-c-btn {
    width: calc((90% - 5cqi) / 2);
  }
}
.wp-c-btnList.-column2 .wp-c-btn a {
  margin-inline: auto;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .wp-c-btnList.-column3 {
    flex-direction: row;
    column-gap: 3cqi;
  }
}
@media screen and (min-width: 768px) {
  .wp-c-btnList.-column3 .wp-c-btn {
    width: calc((100% - 6cqi) / 3);
  }
}
.wp-c-btnList.-column3 .wp-c-btn a {
  margin-inline: auto;
  max-width: none;
}

.wp-c-table {
  width: 100%;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  .wp-c-table {
    border-top: 1px solid var(--color_border);
  }
}
.wp-c-table td, .wp-c-table th {
  display: block;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .wp-c-table td, .wp-c-table th {
    vertical-align: top;
    display: table-cell;
    padding: 2em 1em;
    border-bottom: 1px solid var(--color_border);
  }
}
.wp-c-table th {
  line-height: 1.3;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .wp-c-table th {
    border-left: 2px solid var(--color_border);
    padding-left: 1em;
  }
}
@media screen and (min-width: 768px) {
  .wp-c-table th {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-table td {
    padding: 1em 1em 2em 1em;
  }
}
.wp-c-table a {
  color: #1530A0;
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .wp-c-table a:hover {
    color: #2b51e6;
    text-decoration: none;
  }
}

/*=============================================================
  wpSnippet.scss
==============================================================*/
/***********
box
************/
.e-box {
  padding: 20px;
  border: 2px solid #000;
  border-radius: 10px;
  background: #fff;
}
.e-box > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .e-box {
    padding: 30px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .e-box {
    padding: 40px clamp(40px, 8%, 100px);
  }
}
.e-box + * {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .e-box + * {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .e-box + * {
    margin-top: 40px;
  }
}
.e-box_title {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .e-box_title {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1200px) {
  .e-box_title {
    font-size: 1.25rem;
  }
}
.e-box--red {
  background: #f9edee;
  border-color: #f1aeb5;
  color: var(--color_txt);
}
.e-box--default {
  background: color-mix(in srgb, var(--color_main) 90%, transparent);
  border-color: color-mix(in srgb, var(--color_main) 60%, transparent);
  color: var(--color_txt);
}
.e-box--gray {
  background: #e9ecef;
  border-color: #adb5bd;
  color: var(--color_txt);
}

/***********
grid
************/
.e-grid h2:first-child, .e-grid h3:first-child, .e-grid h4:first-child, .e-grid h5:first-child, .e-grid h6:first-child {
  margin-top: 0;
}
.e-grid p:first-child {
  margin-top: 0;
  padding-top: 0;
}
.e-grid .e-gridItem_title {
  background: none;
  color: var(--color_main);
  margin-top: 25px;
  font-size: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 1199px) {
  .e-grid .e-gridItem_title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .e-grid .e-gridItem_title {
    font-size: 1.125rem;
    margin-top: 20px;
  }
}
.e-grid .e-gridItem_img {
  text-align: center;
}
.e-grid p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .e-grid p {
    margin-top: 15px;
  }
}
.e-grid p.c-gridItem_txt {
  line-height: 1.5;
}

/***********
greeting
************/
.e-greetingWrap {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .e-greetingWrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.e-greeting_photo {
  width: 25%;
  margin: 0 0 40px 40px;
  float: right;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .e-greeting_photo {
    margin: 0 0 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .e-greeting_photo {
    float: none;
    margin-inline: auto;
    max-inline-size: max-content;
    width: auto;
  }
}
.e-greeting_photo figcaption {
  margin-top: 20px;
  text-align: left;
}

.txtbox p.e-greeting_post {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .txtbox p.e-greeting_post {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .txtbox p.e-greeting_post {
    font-size: 0.75rem;
  }
}

.txtbox p.e-greeting_name {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .txtbox p.e-greeting_name {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .txtbox p.e-greeting_name {
    font-size: 0.9375rem;
  }
}

.txtbox p.e-greeting_txt {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .txtbox p.e-greeting_txt {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .txtbox p.e-greeting_txt {
    font-size: 0.75rem;
  }
}

/***********
btn
************/
.e-btn {
  width: 100%;
  margin: 40px auto;
}
@media screen and (max-width: 1199px) {
  .e-btn {
    margin: 30px auto;
  }
}
@media screen and (max-width: 767px) {
  .e-btn {
    margin: 20px auto;
  }
}
.e-btn a {
  display: inline-block;
  border-radius: 5px;
  background: var(--color_main);
  text-align: center;
  color: #fff;
  font-size: 1.375rem;
  transition: all 0.1s;
  position: relative;
  padding: 25px 50px;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .e-btn a {
    font-size: 1.25rem;
    padding: 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .e-btn a {
    font-size: 1.125rem;
    padding: 20px 20px;
    width: 80%;
    max-width: 360px;
  }
}
.e-btn a:after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  right: 10px;
  line-height: 1.8;
}
@media screen and (min-width: 1200px) {
  .e-btn a[href^=tel] {
    pointer-events: none;
    border: 1px solid var(--color_main);
    background: #fff;
    color: var(--color_txt);
  }
}
@media screen and (min-width: 960px) {
  .e-btn a[href^=tel]:hover {
    background: #fff;
  }
}
.e-btn a[href^=tel]:after {
  display: none;
}
.e-btn--center {
  text-align: center;
}

.e-btnWrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .e-btnWrap {
    display: block;
  }
}
.e-btnWrap .e-btn {
  margin: 0 10px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .e-btnWrap .e-btn {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
}

.e-btn02 {
  display: inline-block;
  margin: 0 10px;
}
.e-btn02_inner {
  display: inline-block;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-weight: bold;
  margin: 0;
  background: var(--color_main);
  padding: 5px 20px 5px 20px;
  font-size: 93%;
}
@media screen and (max-width: 767px) {
  .e-btn02_inner {
    padding: 3px 10px;
  }
}
@media screen and (min-width: 960px) {
  .e-btn02_inner:hover {
    opacity: 0.8;
  }
}

/***********
table
************/
@media screen and (max-width: 767px) {
  table.e-table--sp {
    border-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  table.e-table--sp th,
  table.e-table--sp td {
    display: block;
    width: 100% !important;
  }
}

.e-table_cell25 {
  width: 25%;
}
.e-table_cell33 {
  width: 33%;
}
.e-table_cell50 {
  width: 50%;
}
.e-table_cell50 {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .entryBody table.e-table--sp th {
    border-bottom: none;
    border-top: none;
  }
}

/***********
linkList
**********.**/
.e-linkList {
  width: 100%;
}
.e-linkList li {
  list-style: none;
  padding-left: 15px;
  position: relative;
  font-size: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .e-linkList li {
    font-size: calc(var(--fontSize_md) / 16)rem;
  }
}
@media screen and (min-width: 1200px) {
  .e-linkList li {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
  }
}
.e-linkList li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  left: 0;
}
.e-linkList a[target=_blank], .e-linkList a[href$=".pdf"], .e-linkList a[href$=".doc"], .e-linkList a[href$=".docx"], .e-linkList a[href$=".xls"], .e-linkList a[href$=".xlsx"], .e-linkList a[href$=".txt"] {
  padding-right: 15px;
  position: relative;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .e-linkList a[target=_blank], .e-linkList a[href$=".pdf"], .e-linkList a[href$=".doc"], .e-linkList a[href$=".docx"], .e-linkList a[href$=".xls"], .e-linkList a[href$=".xlsx"], .e-linkList a[href$=".txt"] {
    padding-right: 18px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .e-linkList a[target=_blank], .e-linkList a[href$=".pdf"], .e-linkList a[href$=".doc"], .e-linkList a[href$=".docx"], .e-linkList a[href$=".xls"], .e-linkList a[href$=".xlsx"], .e-linkList a[href$=".txt"] {
    padding-right: 20px;
  }
}
.e-linkList a[target=_blank]::after, .e-linkList a[href$=".pdf"]::after, .e-linkList a[href$=".doc"]::after, .e-linkList a[href$=".docx"]::after, .e-linkList a[href$=".xls"]::after, .e-linkList a[href$=".xlsx"]::after, .e-linkList a[href$=".txt"]::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.1s;
}
.e-linkList a[target=_blank]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f35d";
  font-weight: 900;
  color: var(--color_main);
}
.e-linkList a[href$=".pdf"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c1";
  font-weight: 900;
  color: #f20f00;
}
.e-linkList a[href$=".doc"]::after, .e-linkList a[href$=".docx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c2";
  font-weight: 900;
  color: #144aab;
}
.e-linkList a[href$=".xls"]::after, .e-linkList a[href$=".xlsx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c3";
  font-weight: 900;
  color: #077d3f;
}
.e-linkList a[href$=".txt"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f15c";
  font-weight: 900;
  font-weight: 500;
  color: #666;
}
.e-linkList a:hover {
  text-decoration: none !important;
}

/***********
googleMap
************/
.e-googleMap {
  width: 100%;
  margin: 30px 0;
}
@media screen and (max-width: 1199px) {
  .e-googleMap {
    margin: 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .e-googleMap {
    margin: 20px 0;
  }
}
.e-googleMap iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 1199px) {
  .e-googleMap iframe {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .e-googleMap iframe {
    height: 300px;
  }
}

/***********
youtube
************/
.e-youtube {
  position: relative;
  width: 100%;
}
.e-youtube::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.e-youtube div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.e-youtube iframe {
  width: 100%;
  height: 100%;
}

/***********
imgList
************/
.e-imgList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
.e-imgList li {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .e-imgList li {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .e-imgList li {
    margin-bottom: 20px;
  }
}
.e-imgList figcaption {
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (max-width: 1199px) {
  .e-imgList figcaption {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .e-imgList figcaption {
    font-size: 0.875rem;
  }
}
.e-imgList--row3::after {
  content: "";
  display: block;
  width: 31.5%;
}
.e-imgList--row3 li {
  width: 31.5%;
}
.e-imgList--row4::before {
  content: "";
  display: block;
  width: 23.5%;
  order: 1;
}
.e-imgList--row4::after {
  content: "";
  display: block;
  width: 23.5%;
}
.e-imgList--row4 li {
  width: 23.5%;
}

.aligncenter {
  display: block;
  text-align: center;
  margin: 0px auto;
}

.alignright {
  display: block;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

/***********
download
************/
.e-downloadList {
  max-inline-size: max-content;
  margin: 20px 0;
}
@media screen and (min-width: 1200px) {
  .e-downloadList {
    margin: 40px 0;
  }
}
@media screen and (max-width: 1199px) {
  .e-downloadList {
    max-inline-size: none;
  }
}
.e-downloadList_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  border-bottom: 1px solid var(--color_border);
  padding: 15px 0;
  position: relative;
}
.e-downloadList a {
  padding: 15px 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .e-downloadList a {
    width: 40px;
    padding: 0;
  }
}
@media screen and (max-width: 1199px) {
  .e-downloadList a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
  }
}
.e-downloadList p + p {
  margin-top: 0;
}
.e-downloadList p {
  line-height: 1.3;
}
.e-downloadList_file {
  flex: 1;
}
.e-downloadList_btn {
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-weight: bold;
  margin: 0;
  background: var(--color_main);
  padding: 5px 20px;
}
@media screen and (max-width: 767px) {
  .e-downloadList_btn {
    background: none;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .e-downloadList_btn:hover {
    opacity: 0.8;
  }
}
.e-downloadList_btn span {
  font-size: inherit;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .e-downloadList_btn span {
    display: none;
  }
}
.e-downloadList_btn i {
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .e-downloadList_btn i {
    font-size: 1.625rem;
    color: var(--color_main);
    margin-right: 0;
  }
}

/***********
picture
************/
.e-picture_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .e-picture_pc {
    display: block;
  }
}
.e-picture_sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .e-picture_sp {
    display: none;
  }
}

/***********
list
************/
.e-list {
  display: grid;
  width: fit-content;
  margin: 0 auto;
  grid-template-columns: 1fr;
  list-style: none;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .e-list {
    gap: 20px;
  }
}
.e-list li {
  font-size: inherit;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .e-list li {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .e-list li {
    line-height: 1.5;
  }
}
.e-list li::before {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  background: var(--color_main);
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .e-list li::before {
    width: 10px;
    top: 6px;
  }
}

.e-list--row2 {
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .e-list--row2 {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}

.e-list--row3 {
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .e-list--row3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.e-list--check li {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .e-list--check li {
    padding-left: 25px;
  }
}
.e-list--check li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: 900;
  width: auto;
  aspect-ratio: 1;
  top: 0;
  border-radius: 0;
  background: none;
  color: var(--color_main);
  font-weight: 500;
  font-size: 118%;
}
@media screen and (max-width: 767px) {
  .e-list--check li::before {
    width: auto;
    top: 0;
  }
}

.material-icons {
  display: inline-flex;
  vertical-align: middle;
  font-size: inherit;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .c-pcCenter {
    text-align: center;
  }
}

.clear {
  clear: both;
  width: 0px;
  height: 0px;
  display: block;
  overflow: hidden;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.cen {
  text-align: center !important;
}

.rgt {
  text-align: right !important;
}

.lft {
  text-align: left !important;
}

.opa a:hover {
  opacity: 0.8;
}

.bold {
  font-weight: bold;
}

.redtxt {
  color: var(--color_warning);
}

.pt0 {
  padding-top: 0px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 15px !important;
}

.pt30 {
  padding-top: 20px !important;
}

.pt40 {
  padding-top: 25px !important;
}

.pt50 {
  padding-top: 30px !important;
}

.pt60 {
  padding-top: 40px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 15px !important;
}

.pb30 {
  padding-bottom: 20px !important;
}

.pb40 {
  padding-bottom: 25px !important;
}

.pb50 {
  padding-bottom: 30px !important;
}

.pb60 {
  padding-bottom: 40px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 15px !important;
}

.mt30 {
  margin-top: 20px !important;
}

.mt40 {
  margin-top: 25px !important;
}

.mt50 {
  margin-top: 30px !important;
}

.mt60 {
  margin-top: 40px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 15px !important;
}

.mb30 {
  margin-bottom: 20px !important;
}

.mb40 {
  margin-bottom: 25px !important;
}

.mb50 {
  margin-bottom: 30px !important;
}

.mb60 {
  margin-bottom: 40px !important;
}

@media screen and (min-width: 960px) {
  .pt0 {
    padding-top: 0px !important;
  }
  .pt05 {
    padding-top: 5px !important;
  }
  .pt10 {
    padding-top: 10px !important;
  }
  .pt15 {
    padding-top: 15px !important;
  }
  .pt20 {
    padding-top: 20px !important;
  }
  .pt30 {
    padding-top: 30px !important;
  }
  .pt40 {
    padding-top: 40px !important;
  }
  .pt50 {
    padding-top: 50px !important;
  }
  .pt60 {
    padding-top: 60px !important;
  }
  .pb0 {
    padding-bottom: 0px !important;
  }
  .pb05 {
    padding-bottom: 5px !important;
  }
  .pb10 {
    padding-bottom: 10px !important;
  }
  .pb15 {
    padding-bottom: 15px !important;
  }
  .pb20 {
    padding-bottom: 20px !important;
  }
  .pb30 {
    padding-bottom: 30px !important;
  }
  .pb40 {
    padding-bottom: 40px !important;
  }
  .pb50 {
    padding-bottom: 50px !important;
  }
  .pb60 {
    padding-bottom: 60px !important;
  }
  .mt0 {
    margin-top: 5px !important;
  }
  .mt05 {
    margin-top: 5px !important;
  }
  .mt10 {
    margin-top: 10px !important;
  }
  .mt15 {
    margin-top: 15px !important;
  }
  .mt20 {
    margin-top: 20px !important;
  }
  .mt30 {
    margin-top: 30px !important;
  }
  .mt40 {
    margin-top: 40px !important;
  }
  .mt50 {
    margin-top: 50px !important;
  }
  .mt60 {
    margin-top: 60px !important;
  }
  .mb0 {
    margin-bottom: 5px !important;
  }
  .mb05 {
    margin-bottom: 5px !important;
  }
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
}/*# sourceMappingURL=style.css.map */