@charset "UTF-8";
/* Scss Document */
* {
  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: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic", Meiryo, sans-serif;
  color: #000;
  position: relative;
}
body::before {
  content: "";
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: all 0.3s;
}
body.is-menuopen {
  overflow: hidden;
  height: 100%;
}
body.is-menuopen::before {
  opacity: 1;
  z-index: 990;
  visibility: visible;
}

a {
  outline: none;
  color: #000;
  text-decoration: none;
}

/*=============================================================
  parts/base.scss
==============================================================*/
/* base style
---------------------------------------------*/
.base--ss, .base--small, .base, .base--large, .base--wide, .base--max {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  margin: 0px auto;
}

.base--full {
  padding-inline: 5%;
}
@media screen and (min-width: 560px) {
  .base--full {
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--full {
    padding-inline: 5%;
  }
}
.base--full [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--max {
  max-width: 1800px;
}
@media screen and (min-width: 560px) {
  .base--max {
    max-width: calc(1800px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--max {
    max-width: calc(1800px + 10%);
    padding-inline: 5%;
  }
}
.base--max [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--wide {
  max-width: 1600px;
}
@media screen and (min-width: 560px) {
  .base--wide {
    max-width: calc(1600px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--wide {
    max-width: calc(1600px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base--wide {
    max-width: 1400px;
  }
}
@media screen and (min-width: 768px) {
  .base--max .base--wide {
    max-width: 1400px;
  }
}
.base--wide [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--large {
  max-width: 1400px;
}
@media screen and (min-width: 560px) {
  .base--large {
    max-width: calc(1400px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--large {
    max-width: calc(1400px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base--large, .base--wide .base--large {
    max-width: 1400px;
  }
}
@media screen and (min-width: 768px) {
  .base--max .base--large, .base--wide .base--large {
    max-width: 1400px;
  }
}
.base--large [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base {
  max-width: 1200px;
}
@media screen and (min-width: 560px) {
  .base {
    max-width: calc(1200px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base {
    max-width: calc(1200px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base, .base--large .base, .base--wide .base {
    max-width: 1200px;
  }
}
@media screen and (min-width: 768px) {
  .base--max .base, .base--large .base, .base--wide .base {
    max-width: 1200px;
  }
}
.base [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--small {
  max-width: 1000px;
}
@media screen and (min-width: 560px) {
  .base--small {
    max-width: calc(1000px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--small {
    max-width: calc(1000px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base--small, .base--wide .base--small, .base--large .base--small, .base .base--small {
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .base--max .base--small, .base--wide .base--small, .base--large .base--small, .base .base--small {
    max-width: 1000px;
  }
}
.base--small [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--ss {
  max-width: 800px;
}
@media screen and (min-width: 560px) {
  .base--ss {
    max-width: calc(800px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--ss {
    max-width: calc(800px + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base--ss, .base--wide .base--ss, .base--large .base--ss, .base .base--ss, .base--small .base--ss {
    max-width: 800px;
  }
}
@media screen and (min-width: 768px) {
  .base--max .base--ss, .base--wide .base--ss, .base--large .base--ss, .base .base--ss, .base--small .base--ss {
    max-width: 800px;
  }
}

/*=============================================================
  space.scss
==============================================================*/
.space--large {
  padding-top: 66.6666666667px;
  padding-bottom: 66.6666666667px;
}
@media screen and (min-width: 768px) {
  .space--large {
    padding-top: 133.3333333333px;
    padding-bottom: 133.3333333333px;
  }
}
@media screen and (min-width: 1200px) {
  .space--large {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}

.space--medium {
  padding-top: 53.3333333333px;
  padding-bottom: 53.3333333333px;
}
@media screen and (min-width: 768px) {
  .space--medium {
    padding-top: 106.6666666667px;
    padding-bottom: 106.6666666667px;
  }
}
@media screen and (min-width: 1200px) {
  .space--medium {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

.space--small {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .space--small {
    padding-top: 66.6666666667px;
    padding-bottom: 66.6666666667px;
  }
}
@media screen and (min-width: 1200px) {
  .space--small {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.space--ss {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .space--ss {
    padding-top: 33.3333333333px;
    padding-bottom: 33.3333333333px;
  }
}
@media screen and (min-width: 1200px) {
  .space--ss {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.space--contents {
  padding-top: 53.3333333333px;
  padding-bottom: 160px;
}
@media screen and (min-width: 768px) {
  .space--contents {
    padding-top: 106.6666666667px;
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .space--contents {
    padding-top: 160px;
    padding-bottom: 300px;
  }
}

/*=============================================================
  sectionbox.scss
==============================================================*/
.sectionbox {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .sectionbox {
    margin-top: 133.3333333333px;
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox {
    margin-top: 200px;
  }
}
.sectionbox--medium {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .sectionbox--medium {
    margin-top: 106.6666666667px;
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox--medium {
    margin-top: 160px;
  }
}
.sectionbox--small {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .sectionbox--small {
    margin-top: 66.6666666667px;
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox--small {
    margin-top: 100px;
  }
}
.sectionbox--ss {
  margin-top: 33.3333333333px;
}
@media screen and (min-width: 768px) {
  .sectionbox--ss {
    margin-top: 33.3333333333px;
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox--ss {
    margin-top: 50px;
  }
}

/*=============================================================
  background.scss
==============================================================*/
.contents_bg {
  background: #f5f5f5;
}

/*=============================================================
  gridLayout.scss
==============================================================*/
.c-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  row-gap: 60px;
}
@media screen and (max-width: 959px) {
  .c-grid {
    row-gap: 50px;
  }
}
@media screen and (max-width: 559px) {
  .c-grid {
    row-gap: 40px;
  }
}
.c-grid--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 559px) {
  .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: 559px) {
  .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%;
}

/*=============================================================
  breadcrumb.scss
==============================================================*/
.c-pan {
  display: none;
}
@media screen and (min-width: 960px) {
  .c-pan {
    display: block;
    position: relative;
    z-index: 20;
  }
}
.c-pan ul {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  font-size: 0.875rem;
  color: #000;
  line-height: 1.2;
}
.c-pan ul li + li {
  padding-left: 20px;
  position: relative;
}
.c-pan ul li + li::before {
  content: "＞";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  text-align: center;
}
.c-pan ul li:last-of-type {
  flex: 1;
}
.c-pan ul a {
  color: #000;
  display: inline-block;
}
.c-pan ul a:hover {
  text-decoration: underline;
}

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

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

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

.txt--big {
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .txt--big {
    line-height: 1.9;
  }
}
@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: 25px;
  }
}

.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-heading01 {
  font-size: clamp(1.625rem, 1.409rem + 0.962vw, 2.25rem);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.5;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  padding-top: 35px;
  margin-bottom: 30px;
}
@media screen and (min-width: 560px) {
  .c-heading01 {
    padding-top: 45px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 960px) {
  .c-heading01 {
    padding-top: 55px;
    margin-bottom: 50px;
  }
}
.c-heading01::before {
  content: "";
  width: 35px;
  aspect-ratio: 55/50;
  display: block;
  background: url(../../img/title-mark.png) no-repeat top center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50%;
}
@media screen and (min-width: 768px) {
  .c-heading01::before {
    width: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading01::before {
    width: 55px;
  }
}

/*=============================================================
  button.scss
==============================================================*/
.c-btn01 {
  display: block;
  width: fit-content;
  background: #dd6800;
  color: #fff;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  letter-spacing: 5%;
  padding: 1.2em 4em;
  position: relative;
  transition: all 0.3s;
  line-height: 1.3;
}
@media screen and (min-width: 960px) {
  .c-btn01 {
    padding: 1.5em 4em;
  }
}
.c-btn01::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .c-btn01:hover {
    background: #ff8111;
  }
}
.c-btn01:hover::before {
  opacity: 0;
}
.c-btn01--center {
  margin-inline: 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: 12px 16px;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 1rem;
}
@media screen and (min-width: 960px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    padding: 14px 18px;
  }
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  border: 1px solid #fff;
  box-shadow: 0px 0px 0 2px #dd6800;
}
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: 12px 16px;
  background: #fff;
  font-size: 1rem;
}
@media screen and (min-width: 960px) {
  select {
    padding: 14px 18px;
  }
}

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 #ccc;
  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: 560px) {
  .formTable th,
  .formTable td {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 960px) {
  .formTable th,
  .formTable td {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.formTable th {
  font-size: 0.9375rem;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 560px) {
  .formTable th {
    padding-top: 35px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .formTable th {
    font-size: 1.125rem;
    padding-top: 40px;
  }
}
.formTable th span {
  background: #CF1212;
  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: 560px) {
  .formTable th span {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 960px) {
  .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: 560px) {
  .formTable td {
    padding-top: 15px;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 960px) {
  .formTable td {
    font-size: 1rem;
    padding-bottom: 40px;
  }
}

.confirmTable {
  width: 100%;
  border-bottom: 1px solid #ccc;
  margin: 40px 0 60px 0;
}
@media screen and (min-width: 560px) {
  .confirmTable {
    table-layout: fixed;
  }
}
.confirmTable th,
.confirmTable td {
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 559px) {
  .confirmTable th,
  .confirmTable td {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 560px) {
  .confirmTable th,
  .confirmTable td {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 960px) {
  .confirmTable th,
  .confirmTable td {
    padding: 40px 30px;
  }
}
.confirmTable th {
  font-size: 0.9375rem;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 559px) {
  .confirmTable th {
    padding-top: 30px;
  }
}
@media screen and (min-width: 560px) {
  .confirmTable th {
    font-size: 1rem;
    width: 33%;
  }
}
@media screen and (min-width: 960px) {
  .confirmTable th {
    font-size: 1.125rem;
  }
}
.confirmTable th span {
  background: #CF1212;
  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: 560px) {
  .confirmTable th span {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 960px) {
  .confirmTable th span {
    font-size: 0.8125rem;
    padding: 5px 8px;
    margin-right: 10px;
  }
}
.confirmTable td {
  font-size: 0.9375rem;
}
@media screen and (max-width: 559px) {
  .confirmTable td {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 560px) {
  .confirmTable td {
    border-top: 1px solid #ccc;
  }
}
@media screen and (min-width: 960px) {
  .confirmTable td {
    font-size: 1rem;
  }
}

.formList_row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 5px;
}
@media screen and (min-width: 560px) {
  .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: #CF1212;
}

.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: 960px) {
  .formPrivacy_txt {
    font-size: 0.875rem;
  }
}
.formPrivacy_check {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 560px) {
  .formPrivacy_check {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 960px) {
  .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%;
  margin: 30px auto;
}
.submit_btn button[type=submit] {
  display: block;
  margin: 0 auto;
  width: fit-content;
  background: #dd6800;
  color: #fff;
  text-align: center;
  border: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  letter-spacing: 5%;
  padding: 1.5em 4em;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
.submit_btn button[type=submit]::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .submit_btn button[type=submit]:hover {
    background: #ff8111;
  }
}
.submit_btn button[type=submit]:hover::before {
  opacity: 0;
}

.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: #000;
  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: 560px) {
  .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: #000;
  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: inherit;
}
.c-ulList li + li {
  margin-top: 5px;
}

.c-olList {
  padding-left: 25px;
}
.c-olList li {
  list-style: decimal;
  font-size: inherit;
}
.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
==============================================================*/
.l-pagetop {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 100;
  cursor: pointer;
  translate: 0 10px;
  transition: all 0.3s;
  aspect-ratio: 76/153;
  width: 48px;
}
@media screen and (min-width: 768px) {
  .l-pagetop {
    width: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .l-pagetop {
    width: 76px;
  }
}
@media screen and (min-width: 960px) {
  .l-pagetop:hover {
    translate: 0 1px;
  }
}

/*=============================================================
  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: 70px;
  margin-top: -70px;
}
@media screen and (min-width: 960px) {
  .c-anchorlink {
    padding-top: 110px;
    margin-top: -110px;
  }
}

.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
==============================================================*/
[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);
}

/*=============================================================
  header.scss
=============================================================*/
.l-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 999;
  padding-left: 5%;
}
@media screen and (min-width: 960px) {
  .l-header {
    height: 110px;
    padding: 22px 5%;
  }
}

.header-logo {
  width: 50%;
  max-width: 260px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 30%;
    max-width: 374px;
  }
}
@media screen and (min-width: 960px) {
  .header-logo {
    width: 25%;
    padding: 0;
  }
}
.header-logo a {
  display: block;
}

@media screen and (max-width: 959px) {
  .header-navi {
    width: 80%;
    max-width: 400px;
    height: 100svb;
    background: #dd6800;
    color: #fff;
    position: fixed;
    right: 0;
    top: 0;
    translate: 105% 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-out;
  }
}
@media screen and (min-width: 960px) {
  .header-navi {
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    width: auto;
    position: fixed;
    right: 5%;
    top: 22px;
    height: 66px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}

@media screen and (max-width: 959px) {
  .is-menuopen .header-navi {
    translate: 0 0;
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 959px) {
  .header-navi_inner {
    height: calc(100% - 40px);
    padding: 40px 5%;
    border: 1px solid #fff;
    margin: 20px;
  }
}
@media screen and (min-width: 960px) {
  .header-navi_inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    height: 100%;
    column-gap: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .header-navi_inner {
    column-gap: 10px;
  }
}
@media screen and (min-width: 1400px) {
  .header-navi_inner {
    column-gap: 20px;
  }
}

.header-navi_menu {
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .header-navi_menu {
    margin-bottom: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    width: auto;
  }
}
@media screen and (min-width: 960px) {
  .header-navi_menu li:not(:last-of-type) {
    border-right: 1px solid #000;
  }
}
.header-navi_menu a {
  text-align: center;
  display: block;
  color: #fff;
  padding: 20px 0;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .header-navi_menu a {
    font-size: clamp(0.8125rem, 0.598rem + 0.357vw, 1rem);
    color: #000;
    padding: 0px 8px;
    width: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .header-navi_menu a {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 960px) {
  .header-navi_menu a:hover {
    color: #dd6800;
  }
}

.header-navi_tel a {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}
@media screen and (max-width: 959px) {
  .header-navi_tel a {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0.1rem;
    height: 60px;
  }
}
@media screen and (min-width: 960px) {
  .header-navi_tel a {
    font-size: clamp(0.875rem, 0.161rem + 1.19vw, 1.5rem);
    column-gap: 5px;
    pointer-events: none;
    height: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .header-navi_tel a {
    column-gap: 10px;
  }
}
.header-navi_tel span {
  display: inline-block;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .header-navi_tel span {
    width: 36px;
  }
}
@media screen and (min-width: 960px) {
  .header-navi_tel span {
    width: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .header-navi_tel span {
    width: 36px;
  }
}
@media screen and (min-width: 1400px) {
  .header-navi_tel span {
    width: 42px;
  }
}
.header-navi_contact {
  margin-top: 15px;
}
@media screen and (min-width: 960px) {
  .header-navi_contact {
    margin-top: 0;
  }
}
.header-navi_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .header-navi_contact a {
    font-size: 1.125rem;
    background: #fff;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 5px;
    height: 60px;
  }
}
@media screen and (min-width: 960px) {
  .header-navi_contact a {
    font-size: clamp(0.875rem, 0.732rem + 0.238vw, 1rem);
    column-gap: 5px;
    background: #dd6800;
    color: #fff;
    height: 100%;
    padding: 10px 18px;
    transition: background 0.3s;
  }
}
@media screen and (min-width: 1400px) {
  .header-navi_contact a {
    padding: 10px 20px;
    column-gap: 10px;
  }
}
@media screen and (min-width: 960px) {
  .header-navi_contact a:hover {
    background: #ff8111;
  }
}
.header-navi_contact span {
  display: block;
  width: 24px;
}
@media screen and (min-width: 960px) {
  .header-navi_contact p {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header-navi_contact p {
    display: block;
  }
}
.header-navi_contact svg {
  fill: #dd6800;
}
@media screen and (min-width: 960px) {
  .header-navi_contact svg {
    fill: #fff;
  }
}

.logoimg {
  max-width: none;
  height: auto;
  max-height: 100%;
}

/*
.l-header.is-scroll{
	position: fixed;
  z-index: 999;
	animation: anime-scrollMenu 0.5s forwards;

  @include mq-up(lg){		
  }

}

@keyframes anime-scrollMenu{
  from {
		opacity: 0;
		transform: translateY(-100px);
  }
  to {
		opacity: 1;
		transform: translateY(0);
  }
}
*/
/*=============================================================
  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: 70px;
  height: 70px;
  margin-left: auto;
  z-index: 999;
  padding: 15px;
  position: fixed;
  right: 0;
  top: 0;
}
@media screen and (min-width: 960px) {
  .naviBtn {
    display: none;
  }
}
.naviBtn button {
  border: none;
  width: 100%;
  height: 100%;
  background: #dd6800;
  position: relative;
  transition: 0.4s all;
  outline: none;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.naviBtn p {
  width: 50%;
  aspect-ratio: 1/0.6;
  position: relative;
}
.naviBtn p::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transition: 0.5s all;
}
.naviBtn p span::before, .naviBtn p span::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  transition: 0.5s all;
  height: 1px;
  background: #fff;
}
.naviBtn p span::before {
  top: 0;
}
.naviBtn p span::after {
  bottom: -1px;
}
.naviBtn p span.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.is-menuopen button {
  border: 1px solid #fff;
}
.is-menuopen button p::after {
  opacity: 0;
}
.is-menuopen button span::before {
  transform: translateY(6px) rotate(-30deg);
}
.is-menuopen button span::after {
  transform: translateY(-6px) rotate(30deg);
}

/*=============================================================
  footer.scss
=============================================================*/
.l-footer {
  background: #dd6800;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.l-footer_inner {
  display: grid;
  row-gap: 40px;
  grid-template-areas: "f-data" "f-area" "f-copyright";
}
@media screen and (min-width: 768px) {
  .l-footer_inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "f-data f-area" "f-copyright f-copyright";
    column-gap: 8%;
    row-gap: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer_inner {
    row-gap: 60px;
  }
}

.l-footer_data {
  grid-area: f-data;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer_data {
    text-align: left;
  }
}

.l-footer_area {
  grid-area: f-area;
}

.l-footer_copyright {
  grid-area: f-copyright;
}

.footer-logo {
  width: 50%;
  margin: 0 auto;
  max-width: 323px;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    width: 100%;
    margin: 0;
  }
}

.footer-address {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .footer-address {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-address {
    margin-top: 40px;
  }
}
.footer-address a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer-address a {
    pointer-events: none;
  }
}

.footer-area {
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px 8%;
  position: relative;
  color: #000;
}
@media screen and (min-width: 768px) {
  .footer-area {
    padding: 30px 9%;
  }
}
@media screen and (min-width: 1200px) {
  .footer-area {
    padding: 40px 10%;
  }
}
.footer-area::after {
  content: "";
  background: url(../../img/footer-img.png) no-repeat center center/contain;
  width: 25%;
  aspect-ratio: 190/144;
  max-width: 190px;
  position: absolute;
  left: 0;
  top: 0;
  translate: -10% -35%;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .footer-area::after {
    width: 35%;
    translate: -10% -30%;
  }
}

.footer-area_heading {
  font-weight: bold;
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  line-height: 1.2;
  position: relative;
  text-align: center;
}
.footer-area_heading span {
  display: inline-block;
  padding: 0 15px;
  background: #fff;
  position: relative;
  z-index: 10;
}
.footer-area_heading::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}

.footer-area_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 15px;
  row-gap: 15px;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .footer-area_list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.footer-area_txt {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  text-align: center;
  font-weight: bold;
}

.l-footer_copyright {
  text-align: center;
  font-size: clamp(0.625rem, 0.538rem + 0.385vw, 0.875rem);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

/*=============================================================
  main.scss
=============================================================*/
@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: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .l-column_sticky {
    top: 130px;
  }
}

/*=============================================================
  pageHeading.scss
==============================================================*/
.l-pageHeadingWrap {
  width: 100%;
  position: relative;
}

.l-pageHeading {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 5%;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50%;
  letter-spacing: 1;
  text-align: center;
  width: 85%;
}
@media screen and (min-width: 768px) {
  .l-pageHeading {
    padding: 25px 8%;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeading {
    padding: 35px 8%;
  }
}

.l-pageHeading_main {
  font-size: clamp(1.625rem, 1.019rem + 2.692vw, 3.375rem);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

.l-pageHeading_sub {
  font-size: clamp(0.625rem, 0.452rem + 0.769vw, 1.125rem);
  color: #8c6949;
  letter-spacing: 5%;
  margin-top: 10px;
}

.l-pageHeading_img {
  height: 25vh;
}
@media screen and (min-width: 768px) {
  .l-pageHeading_img {
    height: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeading_img {
    height: 470px;
  }
}
.l-pageHeading_img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/*=============================================================
  pagenation.scss
==============================================================*/
.pagination {
  padding-top: 53.3333333333px;
}
@media screen and (min-width: 768px) {
  .pagination {
    padding-top: 106.6666666667px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination {
    padding-top: 160px;
  }
}
.pagination ul {
  display: flex;
  justify-content: center;
  column-gap: 1px;
}
@media screen and (min-width: 768px) {
  .pagination ul {
    column-gap: 2%;
  }
}
.pagination li {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  aspect-ratio: 1;
  width: 34px;
}
.pagination span, .pagination a {
  aspect-ratio: 1;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .pagination a:hover {
    color: #7f5b3a;
  }
}
.pagination span.current {
  color: #fff;
  background: #7f5b3a;
}
.pagination span.dots:hover {
  color: #000;
}

/* entryNavi
---------------------------------------------*/
.entryNavi {
  display: grid;
  grid-template-columns: 1fr 25% 25% 25% 1fr;
  grid-template-areas: ". p-prev p-list p-next .";
  column-gap: 5%;
}
@media screen and (min-width: 768px) {
  .entryNavi {
    grid-template-columns: 1fr 20% 20% 20% 1fr;
  }
}
.entryNavi p {
  position: relative;
}
.entryNavi a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.3;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .entryNavi a {
    padding: 20px 10px;
  }
}
.entryNavi_prev {
  grid-area: p-prev;
}
.entryNavi_next {
  grid-area: p-next;
}
.entryNavi_prev a, .entryNavi_next a {
  background: #fff;
  border: 1px solid #7f5b3a;
  color: #7f5b3a;
}
@media screen and (min-width: 960px) {
  .entryNavi_prev a:hover, .entryNavi_next a:hover {
    background: #f5f5f5;
  }
}
.entryNavi_back {
  grid-area: p-list;
}
@media screen and (min-width: 960px) {
  .entryNavi_back a:hover {
    color: #7f5b3a;
  }
}

/*=============================================================
  top.css
=============================================================*/
.top-mainVisualWrap {
  padding-top: 70px;
  background: url(../../img/bg.png) repeat center center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-mainVisualWrap {
    padding-top: 0;
  }
}

.top-mainVisual {
  position: relative;
}

.top-mainVisual_copy {
  width: 90%;
  z-index: 100;
  margin: 20px 0 -8% 5%;
  position: relative;
  z-index: 100;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_copy {
    width: 50%;
    max-width: 693px;
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    max-width: 693px;
  }
}
.top-mainVisual_copy span {
  display: block;
}
.top-mainVisual_copy span + span {
  margin-top: 2px;
}

@media screen and (min-width: 768px) {
  .top-mainVisual_ph {
    width: 73%;
    max-width: 1400px;
    margin-left: auto;
  }
}

.top-mainVisual_img {
  height: 50vh;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_img {
    height: 80vh;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_img {
    height: 100vh;
  }
}
.top-mainVisual_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-mainVisual_txt {
  padding: 15px 2% 15px 10%;
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_txt {
    padding: 15px 3% 15px 5%;
  }
}

.top-mainVisual_illust {
  position: absolute;
  bottom: 0;
  left: 0;
  aspect-ratio: 492/501;
  width: 50%;
  translate: 0 10%;
  max-width: 492px;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_illust {
    width: 36%;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_illust {
    width: 30%;
    translate: 0 0;
  }
}

.top-newsWrap {
  background: url(../../img/bg03.jpg) no-repeat center center/cover;
}

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

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

.news-listItem {
  display: inherit;
  grid-template-columns: subgrid;
  grid-column: span 3;
}
@media screen and (min-width: 768px) {
  .news-listItem {
    grid-column: span 3;
  }
}
.news-listItem + .news-listItem {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .news-listItem + .news-listItem {
    margin-top: 15px;
  }
}
.news-listItem a {
  border: 1px solid #7f5b3a;
  background: #fff;
  display: inherit;
  grid-template-columns: subgrid;
  grid-template-rows: auto auto;
  grid-column: inherit;
  grid-template-areas: "n-date n-cate ." "n-title n-title n-title";
  row-gap: 10px;
  line-height: 1.6;
  padding: 15px;
  position: relative;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news-listItem a {
    padding: 20px 70px 20px 30px;
    grid-template-rows: auto;
    grid-template-areas: "n-date n-cate n-title";
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .news-listItem a {
    padding: 25px 80px 25px 45px;
  }
}
.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-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  letter-spacing: 5%;
  color: #393939;
}
.news-listItem_category {
  margin-left: 2vw;
  position: relative;
  font-size: clamp(0.8125rem, 0.769rem + 0.192vw, 0.9375rem);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .news-listItem_category {
    margin-left: 2vw;
    margin-right: 3vw;
  }
}
@media screen and (min-width: 1200px) {
  .news-listItem_category {
    margin-left: 40px;
    margin-right: 60px;
  }
}
.news-listItem_category span {
  display: block;
  width: 100%;
  border-radius: 9999px;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  align-content: center;
  background: #dd6800;
  min-width: 100px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news-listItem_category span {
    min-width: 120px;
  }
}
.news-listItem_title {
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  font-weight: 500;
  transition: all 0.3s;
}
.news-listItem_arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .news-listItem_arrow {
    display: block;
    width: 36px;
    position: absolute;
    right: 20px;
    top: 50%;
    translate: 0 -50%;
    transition: all 0.3s;
  }
}
.news-listItem_arrow span {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #cfd3d5;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  a:hover .news-listItem_title {
    color: #dd6800;
  }
}
@media screen and (min-width: 960px) {
  a:hover .news-listItem_arrow {
    right: 18px;
  }
  a:hover .news-listItem_arrow span {
    background: #dd6800;
  }
}

.news-entryData {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .news-entryData {
    row-gap: 15px;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData {
    row-gap: 20px;
    padding-bottom: 30px;
  }
}
.news-entryData_date {
  position: relative;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  letter-spacing: 5%;
  color: #393939;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
.news-entryData_category {
  margin-left: 2vw;
  position: relative;
  font-size: clamp(0.8125rem, 0.769rem + 0.192vw, 0.9375rem);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
.news-entryData_category span {
  display: block;
  width: 100%;
  border-radius: 9999px;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  align-content: center;
  background: #dd6800;
  min-width: 100px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news-entryData_category span {
    min-width: 120px;
  }
}
.news-entryData_title {
  width: 100%;
  font-size: clamp(1.5rem, 1.154rem + 1.538vw, 2.5rem);
  line-height: 1.3;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
.news-entryData_img {
  text-align: center;
}

/*=============================================================
  page.scss
==============================================================*/
.page-list {
  container-type: inherit;
}

.page-listItem {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-listItem {
    display: flex;
  }
}
.page-listItem + .page-listItem {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .page-listItem + .page-listItem {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .page-listItem + .page-listItem {
    margin-top: 80px;
  }
}
.page-listItem .wp-c-heading02 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-listItem .wp-c-heading02 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .page-listItem .wp-c-heading02 {
    margin-bottom: 40px;
  }
}

.page-listItem_contents {
  width: 90%;
  padding: 20px 20px;
  border: 1px solid #7f5b3a;
  background: #fff;
  margin-left: auto;
  margin-top: -40px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .page-listItem_contents {
    padding: 40px 40px;
    width: calc(100% - 60cqw + 40px);
    margin-top: 40px;
    margin-left: -40px;
  }
}
@media screen and (min-width: 1200px) {
  .page-listItem_contents {
    margin-top: 80px;
  }
}

.page-listItem_img {
  overflow: hidden;
  aspect-ratio: 3/2;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .page-listItem_img {
    width: 60cqw;
  }
}
.page-listItem_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-listItem_img a {
  display: block;
}

.page-listItem_text {
  font-size: clamp(0.75rem, 0.62rem + 0.577vw, 1.125rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-listItem_text {
    line-height: 1.6;
  }
}

.page-listItem_link {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-listItem_link {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .page-listItem_link {
    margin-top: 40px;
  }
}

/*=============================================================
  notfound.scss
============================================================= */
.notfoundWrap {
  background: url(../../img/bg03.jpg) no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
}

.notfoundWrap_inner {
  position: relative;
  width: 100%;
}

.notfound_illust {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  aspect-ratio: 492/501;
  width: 40%;
  max-width: 492px;
}
@media screen and (min-width: 768px) {
  .notfound_illust {
    display: block;
    width: 30%;
    translate: 0 70%;
  }
}
@media screen and (min-width: 1200px) {
  .notfound_illust {
    width: 30%;
    translate: 0 50%;
  }
}

.notfoundHeading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 10vw;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
@media screen and (min-width: 560px) {
  .notfoundHeading {
    font-size: 3.75rem;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 960px) {
  .notfoundHeading {
    font-size: 5rem;
    margin-bottom: 60px;
  }
}
.notfoundHeading_main {
  color: #dd6800;
}
.notfoundHeading_sub {
  margin-top: 10px;
  font-size: 36%;
}

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

.notfound_btn {
  margin-top: 40px;
}

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

/*=============================================================
  entry.scss
==============================================================*/
/* entryBody
-----------------------------*/
.entryBody {
  overflow: hidden;
  /*
  &.txtbox p{
    margin-bottom: 0px;
  }
  &.txtbox p + p{
    margin-top:0px;
  }

  p strong{
  }

  p + div{
    margin-top: 30px;
    @include mq-up(lg) {
      margin-top: 40px;
    }
  }
  div{
    margin-bottom: 30px;
    @include mq-up(lg) {
      margin-bottom: 40px;
    }
  }
  */
}
.entryBody > *:first-child {
  margin-top: 0 !important;
}
.entryBody h2:not([class]) {
  font-size: clamp(1.5rem, 1.24rem + 1.154vw, 2.25rem);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.5;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  padding-top: 35px;
  margin-top: 100px;
  margin-bottom: 20px;
}
@media screen and (min-width: 560px) {
  .entryBody h2:not([class]) {
    padding-top: 45px;
    margin-top: 120px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 960px) {
  .entryBody h2:not([class]) {
    padding-top: 55px;
    margin-top: 150px;
    margin-bottom: 40px;
  }
}
.entryBody h2:not([class])::before {
  content: "";
  width: 35px;
  aspect-ratio: 55/50;
  display: block;
  background: url(../../img/title-mark.png) no-repeat top center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50%;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class])::before {
    width: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class])::before {
    width: 55px;
  }
}
.entryBody h3:not([class]) {
  border-top: 1px solid #7f5b3a;
  border-bottom: 1px solid #7f5b3a;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  padding: 10px 0;
  font-size: clamp(1.375rem, 1.072rem + 1.346vw, 2.25rem);
  margin-top: 80px;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 560px) {
  .entryBody h3:not([class]) {
    margin-top: 100px;
    margin-bottom: 30px;
    padding: 15px 0;
  }
}
@media screen and (min-width: 960px) {
  .entryBody h3:not([class]) {
    margin-top: 120px;
    margin-bottom: 40px;
  }
}
.entryBody h4:not([class]) {
  font-size: clamp(1.25rem, 0.947rem + 1.346vw, 2.125rem);
  margin-top: 60px;
  margin-bottom: 20px;
  line-height: 1.5;
  border-left: 3px solid #dd6800;
  padding-left: 15px;
}
@media screen and (min-width: 560px) {
  .entryBody h4:not([class]) {
    margin-top: 80px;
    margin-bottom: 25px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 960px) {
  .entryBody h4:not([class]) {
    margin-top: 100px;
    margin-bottom: 30px;
    padding-left: 25px;
    line-height: 1.3;
  }
}
.entryBody h5:not([class]) {
  font-size: clamp(1.125rem, 0.822rem + 1.346vw, 2rem);
  margin-top: 50px;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media screen and (min-width: 560px) {
  .entryBody h5:not([class]) {
    margin-top: 65px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  .entryBody h5:not([class]) {
    margin-top: 80px;
    margin-bottom: 20px;
  }
}
.entryBody h6:not([class]) {
  font-size: clamp(1.125rem, 0.909rem + 0.962vw, 1.75rem);
  margin-top: 40px;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #dd6800;
}
@media screen and (min-width: 560px) {
  .entryBody h6:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  .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: 560px) {
  .entryBody p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
}
.entryBody a:not([class]):not(.no-entryBody) {
  color: #1530A0;
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .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: #000;
    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: 560px) {
  .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: 960px) {
  .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.3s;
}
.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 #ccc;
  border-bottom: 1px solid #ccc;
  width: 100%;
  margin: 30px 0;
  table-layout: fixed;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .entryBody table {
    margin: 40px 0;
  }
}
.entryBody table th,
.entryBody table td {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 0.875rem;
  line-height: 1.8;
  line-height: 2;
  vertical-align: top;
  text-align: left;
}
@media screen and (min-width: 560px) {
  .entryBody table th,
  .entryBody table td {
    font-size: 1rem;
    padding: 15px;
  }
}
@media screen and (min-width: 960px) {
  .entryBody table th,
  .entryBody table td {
    font-size: 1.125rem;
    line-height: 1.8;
    line-height: 180%;
    padding: 15px 20px;
  }
}
.entryBody table th {
  background: #f5f5f5;
}
.entryBody table thead th {
  background: #dd6800;
  color: #fff;
  text-align: center;
  font-size: 100%;
  padding: 12px 10px;
}
@media screen and (min-width: 560px) {
  .entryBody table thead th {
    padding: 18px 15px;
    font-size: 105%;
  }
}
@media screen and (min-width: 960px) {
  .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: 960px) {
  .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: 0.875rem;
  line-height: 1.8;
  line-height: 2;
  padding-top: 5px;
}
@media screen and (min-width: 560px) {
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

/*=============================================================
  wpLayout.scss
==============================================================*/
.wp-l-container + .wp-l-container {
  margin-top: 160px;
}
@media screen and (max-width: 959px) {
  .wp-l-container + .wp-l-container {
    margin-top: 106.6666666667px;
  }
}
@media screen and (max-width: 559px) {
  .wp-l-container + .wp-l-container {
    margin-top: 53.3333333333px;
  }
}
.wp-l-container > *:first-child {
  margin-top: 0 !important;
}

.wp-l-section {
  container-type: inline-size;
  margin-block: 80px;
  /*
  & + &{
    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: 106.6666666667px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-l-section {
    margin-block: 160px;
  }
}

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

.wp-l-bg--beige {
  background: url(../../img/bg.png) repeat center center;
}

.wp-l-bg--gray {
  background: url(../../img/bg02.png) repeat center center;
}

.wp-l-bg--lightgray {
  background: #f6f6f6;
}

.wp-l-bg--white {
  background: #fff;
}

.wp-l-whiteBox {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
@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-headingWrap {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .wp-c-headingWrap {
    margin-bottom: 106.6666666667px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-c-headingWrap {
    margin-bottom: 160px;
  }
}

.wp_section .wp-c-headingWrap {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .wp_section .wp-c-headingWrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .wp_section .wp-c-headingWrap {
    margin-bottom: 30px;
  }
}

.wp-c-heading {
  font-size: clamp(1.625rem, 1.149rem + 2.115vw, 3rem);
  background: url(../../img/title-bg01.png) no-repeat center center;
  background-size: 100% 100%;
  position: relative;
  aspect-ratio: 578/244;
  max-width: 578px;
  align-content: center;
  margin-inline: auto;
  translate: 0 -10%;
}
@media screen and (min-width: 768px) {
  .wp-c-heading {
    background-size: contain;
  }
}
.wp-c-heading .-white {
  background: url(../../img/title-bg02.png) no-repeat center center;
}

.wp-c-heading_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  padding-top: 55px;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading_title {
    padding-top: 45px;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading_title {
    padding-top: 35px;
    line-height: 1.3;
  }
}
.wp-c-heading_title::before {
  content: "";
  width: 35px;
  aspect-ratio: 55/50;
  display: block;
  background: url(../../img/title-mark.png) no-repeat top center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50%;
}
@media screen and (min-width: 768px) {
  .wp-c-heading_title::before {
    width: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-c-heading_title::before {
    width: 55px;
  }
}

.wp-c-heading_subTitle {
  font-size: 37.5%;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  width: fit-content;
  margin-inline: auto;
  line-height: 1;
  color: #8c6949;
  margin-top: 5px;
  letter-spacing: 5%;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .wp-c-heading_subTitle {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-c-heading_subTitle {
    padding-bottom: 30px;
  }
}

.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: 2rem;
}
@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%;
    margin-top: 0;
  }
}

.wp-c-heading02 {
  font-size: clamp(1.5rem, 1.37rem + 0.577vw, 1.875rem);
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading02 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading02 {
    margin-bottom: 40px;
  }
}
.wp-c-heading02--small {
  font-size: clamp(1.25rem, 0.904rem + 1.538vw, 2.25rem);
}

.wp-c-heading02_title {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .wp-c-heading02_title {
    line-height: 1.3;
  }
}

.wp-c-heading02_subTitle {
  font-size: 0.57em;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #7f5b3a;
  margin-top: 0.5rem;
}
.wp-introduction {
  display: grid;
  row-gap: 20px;
  grid-template-rows: auto auto auto;
  grid-template-areas: "a-heading" "a-img" "a-txt";
}
@media screen and (min-width: 768px) {
  .wp-introduction {
    grid-template-rows: 1fr auto;
    align-items: center;
    grid-template-columns: auto 60%;
    grid-template-areas: "a-heading a-img" "a-txt a-img";
    column-gap: 5%;
    row-gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-introduction {
    row-gap: 60px;
    column-gap: 8%;
  }
}
.wp-introduction_heading {
  grid-area: a-heading;
}
.wp-introduction_img {
  grid-area: a-img;
}
.wp-introduction_txt {
  grid-area: a-txt;
}

.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-headingWrap {
  margin-bottom: 0;
}

.wp-visualSection {
  position: relative;
  display: grid;
  column-gap: 5%;
  grid-template-columns: 45% 1fr 40%;
  grid-template-rows: auto auto;
  grid-template-areas: "img01 . img03" "img02 img02 img03";
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .wp-visualSection {
    grid-template-columns: 40% 1fr 30%;
    grid-template-rows: auto auto;
    row-gap: 0;
    grid-template-areas: "img01 . img03" ". img02 img03";
  }
}
.wp-visualSection.-reverse {
  direction: rtl;
}
.wp-visualSection_img01 {
  grid-area: img01;
}
.wp-visualSection_img01 div {
  aspect-ratio: 465/314;
  max-width: 465px;
}
.wp-visualSection_img02 {
  grid-area: img02;
}
.wp-visualSection_img02 div {
  width: 60%;
  aspect-ratio: 238/358;
  max-width: 238px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .wp-visualSection_img02 div {
    width: 100%;
    translate: 0 -5%;
    margin-left: 0;
  }
}
.wp-visualSection_img03 {
  grid-area: img03;
}
.wp-visualSection_img03 div {
  margin-top: 40px;
  aspect-ratio: 1;
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  .wp-visualSection_img03 div {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-visualSection_img03 div {
    margin-top: 100px;
  }
}
.wp-visualSection img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wp-c-grid {
  display: flex;
  justify-content: space-between;
  row-gap: 1.5em;
  column-gap: 2cqw;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .wp-c-grid {
    column-gap: 4cqw;
  }
}
@media screen and (min-width: 1200px) {
  .wp-c-grid {
    column-gap: 4cqw;
  }
}
.wp-c-grid.-half .wp-c-gridItem {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-half .wp-c-gridItem {
    width: calc((100% - 4cqw) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .wp-c-grid.-half .wp-c-gridItem {
    width: calc((100% - 4cqw) / 2);
  }
}
.wp-c-grid.-trisect .wp-c-gridItem {
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-trisect .wp-c-gridItem {
    width: calc((100% - 4cqw) / 3);
  }
}
.wp-c-grid.-quarter .wp-c-gridItem {
  justify-content: center;
  width: calc((100% - 2cqw) / 2);
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-quarter .wp-c-gridItem {
    width: calc((100% - 6cqw) / 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-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: 800px;
  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 #ccc;
}
@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: #dd6800;
  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.3s;
}
@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: #7f5b3a;
  }
}

.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 #ccc;
  }
}
.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 #ccc;
  }
}
.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 #ccc;
    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: 560px) {
  .e-box {
    padding: 30px 40px;
  }
}
@media screen and (min-width: 960px) {
  .e-box {
    padding: 40px clamp(40px, 8%, 100px);
  }
}
.e-box + * {
  margin-top: 20px;
}
@media screen and (min-width: 560px) {
  .e-box + * {
    margin-top: 30px;
  }
}
@media screen and (min-width: 960px) {
  .e-box + * {
    margin-top: 40px;
  }
}
.e-box_title {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (min-width: 560px) {
  .e-box_title {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 960px) {
  .e-box_title {
    font-size: 1.25rem;
  }
}
.e-box--red {
  background: #f9edee;
  border-color: #f1aeb5;
}
.e-box--default {
  background: rgba(221, 104, 0, 0.1);
  border-color: rgba(221, 104, 0, 0.4);
}
.e-box--gray {
  background: #e9ecef;
  border-color: #adb5bd;
}
.e-box--white {
  background: #fff;
}

/***********
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: #dd6800;
  margin-top: 25px;
  font-size: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .e-grid .e-gridItem_title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 559px) {
  .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: 559px) {
  .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: 559px) {
  .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: 959px) {
  .e-greeting_photo {
    margin: 0 0 20px 20px;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .txtbox p.e-greeting_post {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .txtbox p.e-greeting_name {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .txtbox p.e-greeting_txt {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 559px) {
  .txtbox p.e-greeting_txt {
    font-size: 0.75rem;
  }
}

/***********
btn
************/
.e-btn {
  width: 100%;
  margin: 40px auto;
}
@media screen and (max-width: 959px) {
  .e-btn {
    margin: 30px auto;
  }
}
@media screen and (max-width: 559px) {
  .e-btn {
    margin: 20px auto;
  }
}
.e-btn a {
  display: block;
  width: fit-content;
  background: #dd6800;
  color: #fff;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  letter-spacing: 5%;
  line-height: 1.3;
  padding: 1.2em 4em;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .e-btn a {
    padding: 1.5em 4em;
  }
}
.e-btn a::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .e-btn a:hover {
    background: #ff8111;
  }
}
.e-btn a:hover::before {
  opacity: 0;
}
@media screen and (min-width: 960px) {
  .e-btn a[href^=tel] {
    pointer-events: none;
  }
}
.e-btn--center {
  text-align: center;
}

.e-btnWrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 559px) {
  .e-btnWrap {
    display: block;
  }
}
.e-btnWrap .e-btn {
  margin: 0 10px;
  width: auto;
}
@media screen and (max-width: 559px) {
  .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: #dd6800;
  padding: 5px 20px 5px 20px;
  font-size: 93%;
}
@media screen and (max-width: 559px) {
  .e-btn02_inner {
    padding: 3px 10px;
  }
}
@media screen and (min-width: 960px) {
  .e-btn02_inner:hover {
    background: rgb(255, 132.6, 23.8);
  }
}

/***********
table
************/
@media screen and (max-width: 559px) {
  table.e-table--sp {
    border-bottom: 0 !important;
  }
}
@media screen and (max-width: 559px) {
  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: 559px) {
  .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: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 560px) {
  .e-linkList li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .e-linkList li {
    font-size: 1.125rem;
    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: 560px) {
  .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: 960px) {
  .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.3s;
}
.e-linkList a[target=_blank]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f35d";
  font-weight: 900;
  color: #dd6800;
}
.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: 959px) {
  .e-googleMap {
    margin: 25px 0;
  }
}
@media screen and (max-width: 559px) {
  .e-googleMap {
    margin: 20px 0;
  }
}
.e-googleMap iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 959px) {
  .e-googleMap iframe {
    height: 350px;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .e-imgList li {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .e-imgList figcaption {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 559px) {
  .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 #ccc;
  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: 559px) {
  .e-downloadList a {
    width: 40px;
    padding: 0;
  }
}
@media screen and (max-width: 959px) {
  .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: #dd6800;
  padding: 5px 20px;
}
@media screen and (max-width: 559px) {
  .e-downloadList_btn {
    background: none;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .e-downloadList_btn:hover {
    background: rgb(154.7, 72.8, 0);
  }
}
.e-downloadList_btn span {
  font-size: inherit;
  font-size: 0.875rem;
}
@media screen and (max-width: 559px) {
  .e-downloadList_btn span {
    display: none;
  }
}
.e-downloadList_btn i {
  margin-right: 5px;
}
@media screen and (max-width: 559px) {
  .e-downloadList_btn i {
    font-size: 1.625rem;
    color: #dd6800;
    margin-right: 0;
  }
}

/***********
picture
************/
.e-picture_pc {
  display: none;
}
@media screen and (min-width: 560px) {
  .e-picture_pc {
    display: block;
  }
}
.e-picture_sp {
  display: block;
}
@media screen and (min-width: 560px) {
  .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: #dd6800;
  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: #dd6800;
  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: #CF1212;
}

.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 */