@charset "UTF-8";
/* Scss Document */
:root {
  /* font-family -------------------------------------------------*/
  --font_base: "Noto Sans JP", sans-serif;
  --font_mincho:"Shippori Mincho","Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  /* color -------------------------------------------------*/
  --color_txt: #3c615f;
  --color_bg: #f0f0f0;
  --color_bg02: #faf3e2;
  --color_warning: #CF1212;
  --color_main: #1a381a;
  --color_border: #ccc;
  --color_border02: #d8cc9f;
  --color_accent: #d4b23b;
  --color_border_grad:linear-gradient(35deg,#96801a 0%, #ede180 50%, #cab581 100%);
  --color_red:#6a0400;
  --color_yellow: #eee4b6;
  --color_light_yellow: #f0e3a1;
  --color_beige:#fff3bf;
  --color_green:#0c7f49;
  --color_twitter: #1DA1F2;
  --color_facebook: #1877f2;
  --color_line: #00b900;
  --color_youtube: #DA1725;
  --color_x: #0f1419;
  --color_insta: #e1306c;
  /* transition speed ------------------------------------------------- */
  --trans_speed: 0.2s;
  /* contents size ------------------------------------------------- */
  --contents_max: 1800px;
  --contents_wide: 1600px;
  --contents_lg: 1400px;
  --contents_base: 1200px;
  --contents_sm: 1000px;
  --contents_ss: 800px;
  /* padding -------------------------------------------------*/
  --padding_large:180px;
  --padding_medium: 130px;
  --padding_small: 90px;
  --padding_ss: 50px;
  /* wrapper padding */
  --wrap-padding:5vw;
}
@media screen and (min-width: 768px) {
  :root {
    --wrap-padding:min(5vw,60px);
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --wrap-padding:60px;
  }
}
:root {
  /* header height -------------------------------------------------*/
  --header_height: 70px;
}
@media screen and (min-width: 768px) {
  :root {
    --header_height: 90px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --header_height: 110px;
  }
}
:root {
  /* kadomaru -------------------------------------------------*/
  --kadomaru: 15px;
}
@media screen and (min-width: 768px) {
  :root {
    --kadomaru: 20px;
  }
}
:root {
  --kadomaru-large: 30px;
}
@media screen and (min-width: 768px) {
  :root {
    --kadomaru-large: 50px;
  }
}
:root {
  --entry_kadomaru: 15px;
}
@media screen and (min-width: 768px) {
  :root {
    --entry_kadomaru: 20px;
  }
}
:root {
  /* text size -------------------------------------------------*/
  --fontSize_sm: 14;
  --fontSize_md: 15;
  --fontSize_lg: 16;
}

* {
  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%;
}

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[class], ol[class] {
  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%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header_height)30px;
}
body {
  line-height: 1;
  font-family: var(--font_base);
  color: var(--color_txt);
  font-weight: 500;
  position: relative;
  background: #fff;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-autospace: normal;
}
body.is-menuopen {
  overflow: hidden;
  height: 100%;
}
body:has(#home) {
  background: var(--color_red);
}

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

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

.base--max {
  --contents_size: var(--contents_max);
}

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

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

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

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

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

/*=============================================================
  space.scss
==============================================================*/
.space--large {
  --padding-block:var(--padding_large);
}

.space--medium {
  --padding-block:var(--padding_medium);
}

.space--small {
  --padding-block:var(--padding_small);
}

.space--ss {
  --padding-block:var(--padding_ss);
}

.space--large,
.space--medium,
.space--small,
.space--ss {
  padding-block: calc(var(--padding-block) / 2);
}
@media screen and (min-width: 768px) {
  .space--large,
  .space--medium,
  .space--small,
  .space--ss {
    padding-block: calc(var(--padding-block) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--large,
  .space--medium,
  .space--small,
  .space--ss {
    padding-block: var(--padding-block);
  }
}

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

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

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

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

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

/*=============================================================
  background.scss
==============================================================*/
.c-bg_white {
  background: #fff;
}

.c-bg_red {
  background: var(--color_red);
}

.c-bg_green {
  background: var(--color_main);
}

.c-bg_yellow {
  background: var(--color_light_yellow);
}

.c-bg_red .s-section > .s-section_heading [class*=c-heading],
.c-bg_green .s-section > .s-section_heading [class*=c-heading] {
  --title_main_color: #fff;
  --title_sub_color: var(--color_accent);
}
.c-bg_red .s-section > .s-section_heading .c-headingGroup01,
.c-bg_green .s-section > .s-section_heading .c-headingGroup01 {
  background: url(../../img/title-border_white.png) repeat-x center bottom;
}
.c-bg_red .s-section > .s-section_heading .c-leadtxt,
.c-bg_green .s-section > .s-section_heading .c-leadtxt {
  color: #fff;
}

.c-bg_img {
  background: url(../../img/bg-white.png) repeat-y center center/100% auto;
}

/*=============================================================
  gridLayout.scss
==============================================================*/
.c-grid {
  --row-gap:60px;
  --column-gap: 3%;
  container-type: inline-size;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--column-gap);
  row-gap: calc(var(--row-gap) / 2);
}
@media screen and (min-width: 768px) {
  .c-grid {
    row-gap: calc(var(--row-gap) - 10px);
  }
}
@media screen and (min-width: 1200px) {
  .c-grid {
    row-gap: var(--row-gap);
  }
}
.c-grid:not(:has(.c-card_inner)) {
  --row-gap:40px;
}
.c-grid.-half {
  --column-gap: 4%;
}
.c-grid.-trisect {
  --column-gap: 3%;
}
@media screen and (min-width: 768px) {
  .c-grid.-trisect {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-grid.-quarter {
  --column-gap: 2.5%;
}
@media screen and (min-width: 768px) {
  .c-grid.-quarter {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .c-grid.-quarter {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-grid.-sp-column {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .c-grid.-sp-half {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-grid.-sp-trisect {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-grid:has([class*=-cell]) {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .c-grid:has([class*=-cell]).-sp-column {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .c-grid.-reverse {
    flex-direction: row-reverse;
  }
}

/*=============================================================
  gridLayout.scss
==============================================================*/
.c-flex {
  --row-gap:60px;
  --column-gap: 5%;
  display: flex;
  column-gap: var(--column-gap);
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  row-gap: calc(var(--row-gap) / 2);
}
@media screen and (max-width: 767px) {
  .c-flex {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .c-flex {
    row-gap: calc(var(--row-gap) - 10px);
  }
}
@media screen and (min-width: 1200px) {
  .c-flex {
    row-gap: var(--row-gap);
  }
}
.c-flex .-img {
  border-radius: var(--entry_kadomaru);
  overflow: hidden;
  text-align: center;
}
.c-flex .-img img {
  border-radius: var(--entry_kadomaru);
}
@media screen and (min-width: 768px) {
  .c-flex.-half .c-flexItem {
    width: calc((100% - var(--column-gap)) / 2);
  }
}
.c-flex.-trisect {
  --column-gap: 3%;
}
@media screen and (min-width: 768px) {
  .c-flex.-trisect .c-flexItem {
    justify-content: center;
    width: calc((100% - var(--column-gap) * 2) / 3);
  }
}
.c-flex.-quarter {
  --column-gap: 2.5%;
}
@media screen and (min-width: 768px) {
  .c-flex.-quarter .c-flexItem {
    justify-content: center;
    width: calc((100% - var(--column-gap) * 3) / 4);
  }
}
@media screen and (max-width: 767px) {
  .c-flex.-sp-column .c-flexItem {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-flex.-sp-half .c-flexItem {
    width: calc((100% - var(--column-gap)) / 2);
  }
}
@media screen and (max-width: 767px) {
  .c-flex[class*=-ratio] .c-flexItem {
    width: 100%;
  }
}
.c-flex[class*=-ratio] .c-flexItem:nth-of-type(2) {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .c-flex.-ratio2_8 .c-flexItem:first-of-type {
    width: 20cqi;
  }
}
@media screen and (min-width: 768px) {
  .c-flex.-ratio3_7 .c-flexItem:first-of-type {
    width: 30cqi;
  }
}
@media screen and (min-width: 768px) {
  .c-flex.-ratio4_6 .c-flexItem:first-of-type {
    width: 40cqi;
  }
}
@media screen and (min-width: 768px) {
  .c-flex.-ratio6_4 .c-flexItem:first-of-type {
    width: 50cqi;
  }
}
@media screen and (min-width: 768px) {
  .c-flex.-ratio8_2 .c-flexItem:first-of-type {
    width: 80cqi;
  }
}
@media screen and (min-width: 768px) {
  .c-flex.-reverse {
    flex-direction: row-reverse;
  }
}

.c-flexItem {
  container-type: inline-size;
}
.c-flexItem[class*=-cell] + .c-flexItem:not([class*=-cell]) {
  flex: 1;
}
.c-flexItem.-cell30 {
  width: 30%;
}
.c-flexItem.-cell35 {
  width: 35%;
}
.c-flexItem.-cell40 {
  width: 40%;
}
.c-flexItem.-cell45 {
  width: 45%;
}
.c-flexItem.-cell50 {
  width: 50%;
}
.c-flexItem.-cell55 {
  width: 55%;
}
.c-flexItem.-cell60 {
  width: 60%;
}
.c-flexItem.-cell65 {
  width: 65%;
}
.c-flexItem.-cell70 {
  width: 70%;
}
.c-flexItem.-cell80 {
  width: 80%;
}

/*=============================================================
  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: var(--color_txt);
  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: var(--color_txt);
  display: inline-block;
}
.c-pan ul a:hover {
  text-decoration: underline;
}

/*=============================================================
  box.scss
==============================================================*/
.c-box {
  --c-box-bg: transparent;
  --c-box-border: transparent;
  padding: 20px;
  border-radius: var(--kadomaru);
  background: var(--c-box-bg);
}
.c-box > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .c-box {
    padding: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .c-box {
    padding: 40px clamp(40px, 8%, 60px);
  }
}
.c-box + * {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-box + * {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .c-box + * {
    margin-top: 40px;
  }
}
.c-box_title {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .c-box_title {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-box_title {
    font-size: 1.25rem;
  }
}

.c-box.-white {
  --c-box-bg: #fff;
  --c-box-border: #000;
}

.c-box.-main {
  --c-box-bg: var(--color_main);
  --c-box-border: var(--color_main);
}

.c-box.-accent {
  --c-box-bg: var(--color_accent);
  --c-box-border: var(--color_accent);
}

.c-box.-red {
  --c-box-bg: #f9edee;
  --c-box-border: #f799a2;
}
.c-box.-red.-light {
  background: #f9edee;
}
.c-box.-red.-dark {
  background: var(--color_warning);
  border-color: var(--color_warning);
}

.c-box.-red02 {
  --c-box-bg: #f9edee;
  --c-box-border: var(--color_warning);
  background: color-mix(in srgb, var(--c-box-bg) 15%, transparent);
}

.c-box.-gray {
  background: #e9ecef;
  border-color: #adb5bd;
  --c-box-bg: var(--color_bg);
  --c-box-border: var(--color_border);
}
.c-box.-gray.-light {
  background: var(--color_bg);
}

.c-box.-borderonly {
  background: #fff;
}
.c-box.-borderonly, .c-box.-border {
  border: 2px solid var(--c-box-border);
}
.c-box.-light {
  background: color-mix(in srgb, var(--c-box-bg) 15%, transparent);
}
.c-box.-dark {
  color: #fff;
}

/*=============================================================
  buttonlist.scss
==============================================================*/
.c-btnList {
  --btnlist-column-gap:5%;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: var(--btnlist-column-gap);
  row-gap: 20px;
}
.c-btnList .c-btnList_item a {
  margin-inline: auto;
}
.c-btnList.-left {
  justify-content: start;
}
.c-btnList.-right {
  justify-content: flex-end;
}

.entryBody .c-btnList {
  margin-block: 40px;
}
@media screen and (max-width: 1199px) {
  .entryBody .c-btnList {
    margin-block: 30px;
  }
}
@media screen and (max-width: 767px) {
  .entryBody .c-btnList {
    margin-block: 20px;
  }
}

.c-btnList.-column1 a {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .c-btnList.-column2 {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .c-btnList.-column2 .c-btnList_item {
    width: calc((90% - var(--btnlist-column-gap)) / 2);
  }
}
.c-btnList.-column2 .c-btnList_item a {
  margin-inline: auto;
  max-width: none;
}

.c-btnList.-column3 {
  --btnlist-column-gap:3%;
}
@media screen and (min-width: 768px) {
  .c-btnList.-column3 {
    flex-direction: row;
    column-gap: var(--btnlist-column-gap);
  }
}
@media screen and (min-width: 768px) {
  .c-btnList.-column3 .c-btnList_item {
    width: calc((100% - var(--btnlist-column-gap) * 2) / 3);
  }
}
.c-btnList.-column3 .c-btnList_item a {
  margin-inline: auto;
  max-width: none;
}

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

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

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

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

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

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

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

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

.c-leadtxt {
  font-family: var(--font_mincho);
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  line-height: 1.8;
  font-weight: 700;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  max-width: 80%;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-leadtxt {
    max-width: 100%;
  }
}

/*=============================================================
  title.scss
==============================================================*/
.c-headingGroup01 {
  --title_main_color: var(--color_main);
  --title_sub_color: var(--color_accent);
  --title_mark: url(../../img/title-border.png);
}
.c-headingGroup01.-white {
  --title_main_color:#fff;
  --title_sub_color:var(--color_accent);
  --title_mark: url(../../img/title-border_white.png);
}
.c-headingGroup01 {
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 20px;
  background: var(--title_mark) repeat-x center bottom;
  background-size: 10px;
  font-family: var(--font_mincho);
}
@media screen and (min-width: 768px) {
  .c-headingGroup01 {
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup01 {
    padding-bottom: 30px;
    background-size: auto;
  }
}
.c-headingGroup01.-center > * {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.c-headingGroup01_main {
  color: var(--title_main_color);
  font-size: clamp(1.625rem, 1.279rem + 1.538vw, 2.625rem);
  line-height: 1.4;
  position: relative;
  text-align: center;
  width: fit-content;
  background-size: 15px;
  word-break: keep-all;
  margin-inline: auto;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup01_main {
    background-size: auto;
    row-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup01_main {
    row-gap: 20px;
  }
}
.c-headingGroup01_main::before {
  content: "";
  background: url(../../img/title-mark.png) no-repeat center center/contain;
  display: block;
  width: 80px;
  aspect-ratio: 111/111;
}
@media screen and (min-width: 768px) {
  .c-headingGroup01_main::before {
    width: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup01_main::before {
    width: 111px;
  }
}

.c-headingGroup01_sub {
  font-weight: 500;
  letter-spacing: 0.05rem;
  color: var(--title_sub_color);
  font-size: clamp(1rem, 0.784rem + 0.962vw, 1.625rem);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup01_sub {
    padding-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup01_sub {
    padding-top: 15px;
  }
}

.c-headingGroup01_main + .c-headingGroup01_sub {
  margin-top: 0;
}

.c-headingGroup01Wrap [class*=c-lead] {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup01Wrap [class*=c-lead] {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup01Wrap [class*=c-lead] {
    margin-top: 50px;
  }
}

.c-headingGroup02 {
  --title_main_color:var(--color_main);
  --title_sub_color:var(--color_red);
  font-family: var(--font_mincho);
}
.c-headingGroup02.-white {
  --title_main_color:#fff;
  --title_sub_color:var(--color_accent);
}

.c-headingGroup02_main {
  font-size: clamp(1.5rem, 1.24rem + 1.154vw, 2.25rem);
  line-height: 1.3;
  color: var(--title_main_color);
  position: relative;
  text-align: center;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02_main {
    row-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02_main {
    row-gap: 20px;
  }
}
.c-headingGroup02_main::before {
  content: "";
  background: url(../../img/title-mark02.png) no-repeat center center/contain;
  display: block;
  height: 60px;
  aspect-ratio: 116/114;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02_main::before {
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02_main::before {
    height: 116px;
  }
}

.c-headingGroup02_sub {
  font-size: clamp(0.875rem, 0.702rem + 0.769vw, 1.375rem);
  position: relative;
  font-weight: 500;
  letter-spacing: 0.05rem;
  color: var(--title_sub_color);
  margin-top: 5px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02_sub {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02_sub {
    margin-top: 15px;
  }
}

.c-headingGroup02.-left {
  text-align: left;
}

.c-headingGroup02.-small .c-headingGroup02_main {
  text-align: center;
}
.c-headingGroup02.-small .c-headingGroup02_main {
  font-size: clamp(1.25rem, 1.034rem + 0.962vw, 1.875rem);
}
.c-headingGroup02.-small .c-headingGroup02_main::before {
  height: 50px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02.-small .c-headingGroup02_main::before {
    height: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02.-small .c-headingGroup02_main::before {
    height: 70px;
  }
}
.c-headingGroup02.-small .c-headingGroup02_sub {
  font-size: clamp(0.625rem, 0.452rem + 0.769vw, 1.125rem);
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02.-small .c-headingGroup02_sub {
    margin-top: 10px;
  }
}
.c-headingGroup02Wrap [class*=c-lead] {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02Wrap [class*=c-lead] {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02Wrap [class*=c-lead] {
    margin-top: 30px;
  }
}

.c-heading_lv3,
.mce-content-body h3:not([class]),
.entryBody h3:not([class]) {
  font-size: clamp(1.5rem, 1.24rem + 1.154vw, 2.25rem);
  line-height: 1.3;
  border-left: 4px solid var(--color_main);
  padding-left: min(4cqi, 30px);
  padding-block: 5px;
  font-weight: 700;
  color: var(--color_main);
  font-family: var(--font_mincho);
}
@media screen and (min-width: 768px) {
  .c-heading_lv3,
  .mce-content-body h3:not([class]),
  .entryBody h3:not([class]) {
    border-width: 7px;
    padding-block: 5px;
  }
}
.c-heading_lv4,
.mce-content-body h4:not([class]),
.entryBody h4:not([class]) {
  font-family: var(--font_mincho);
  font-weight: 600;
  font-size: clamp(1.25rem, 0.99rem + 1.154vw, 2rem);
  line-height: 1.3;
  background: var(--color_main);
  color: #fff;
  border-radius: 5px;
  padding: 10px min(4cqi, 30px);
}
@media screen and (min-width: 768px) {
  .c-heading_lv4,
  .mce-content-body h4:not([class]),
  .entryBody h4:not([class]) {
    border-radius: 8px;
    padding: 15px min(4cqi, 30px);
  }
}

.c-heading_lv5,
.mce-content-body h5:not([class]),
.entryBody h5:not([class]) {
  font-size: clamp(1.3125rem, 1.075rem + 1.058vw, 2rem);
  line-height: 1.3;
  color: var(--color_main);
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--color_main);
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 10px;
  font-family: var(--font_mincho);
  font-weight: 600;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .c-heading_lv5,
  .mce-content-body h5:not([class]),
  .entryBody h5:not([class]) {
    padding-bottom: 15px;
    grid-template-columns: 30px 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading_lv5,
  .mce-content-body h5:not([class]),
  .entryBody h5:not([class]) {
    grid-template-columns: 33px 1fr;
    column-gap: 20px;
  }
}
.c-heading_lv5::before,
.mce-content-body h5:not([class])::before,
.entryBody h5:not([class])::before {
  content: "";
  background: url(../../img/title-mark03.png) no-repeat center center/contain;
  aspect-ratio: 43/43;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .c-heading_lv5::before,
  .mce-content-body h5:not([class])::before,
  .entryBody h5:not([class])::before {
    margin-top: 5px;
  }
}

.c-heading_lv6,
.mce-content-body h6:not([class]),
.entryBody h6:not([class]) {
  font-family: var(--font_mincho);
  font-size: clamp(1.125rem, 0.952rem + 0.769vw, 1.625rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--color_main);
}

/*=============================================================
  button.scss
==============================================================*/
.c-btn_inline {
  display: inline-block;
  margin: 0 10px;
}
.c-btn_inline_inner {
  display: inline-block;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-weight: bold;
  margin: 0;
  background: var(--color_main);
  padding: 5px 20px 5px 20px;
  font-size: 93%;
  transition: var(--trans_speed) all;
}
@media screen and (max-width: 767px) {
  .c-btn_inline_inner {
    padding: 3px 10px;
  }
}
@media (any-hover) {
  .c-btn_inline_inner:hover {
    opacity: 0.8;
  }
}

.c-btnWrap {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-btnWrap {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .c-btnWrap {
    padding-top: 100px;
  }
}

.c-btn01 {
  --btn01_txt:#fff;
  --btn01_bg:var(--color_main);
  --btn01_arrow:#fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  border-radius: 999px;
  background: var(--btn01_bg);
  padding: min(4cqi, 20px) 20px;
  width: 80%;
  max-width: 280px;
  color: var(--btn01_txt);
  font-family: var(--font_mincho);
  font-weight: 600;
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  line-height: 1;
  transition: var(--trans_speed) all;
}
.c-btn01::before {
  content: "";
}
.c-btn01::after {
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: 900;
  justify-self: end;
  font-size: 120%;
  color: var(--btn01_arrow);
  transition: var(--trans_speed) all;
}
@media (any-hover: hover) {
  .c-btn01:hover {
    --btn01_txt:var(--color_accent);
  }
  .c-btn01:hover::after {
    --btn01_arrow: var(--color_accent);
    translate: 5px;
  }
}
.c-btn01.-white {
  --btn01_txt:var(--color_main);
  --btn01_bg:#fff;
  --btn01_arrow:var(--color_main);
  box-shadow: 0px 5px 0px -3px #88ae88;
}
@media (any-hover: hover) {
  .c-btn01.-white:hover {
    box-shadow: 0px 7px 0px -3px #88ae88;
  }
}
.c-btn01.-white-red {
  --btn01_txt:var(--color_main);
  --btn01_bg:#fff;
  --btn01_arrow:var(--color_red);
  box-shadow: 0px 5px 0px -3px var(--color_red);
}
@media (any-hover: hover) {
  .c-btn01.-white-red:hover {
    box-shadow: 0px 7px 0px -3px var(--color_red);
  }
}
.c-btn01.-center {
  margin: 0 auto;
}
.c-btn01.-right {
  margin-left: auto;
}
.c-btn01.-large {
  padding: min(8cqi, 40px) 20px;
  width: 90%;
  max-width: 400px;
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
}
@media (any-hover: hover) {
  .c-btn01.-large.-white:hover {
    box-shadow: 0px 10px 0px -3px #88ae88;
  }
}

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

.form70 {
  width: 70px;
}

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

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

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

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

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

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

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

.formmax {
  width: 100%;
}

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

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

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

input[type=text],
input[type=tel],
input[type=email],
textarea {
  border: 1px solid #ccc;
  padding: 10px 15px;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 1rem;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  border: 1px solid #fff;
  box-shadow: 0px 0px 0 2px var(--color_main);
}
input[type=text]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=email]:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #999;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*=============================================================
  list.scss
==============================================================*/
.c-ulList {
  padding-left: 25px;
}
.c-ulList li {
  list-style: disc;
  font-size: 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;
  font-size: 85%;
  padding-left: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 960px) {
  .c-notesList li {
    padding-left: 20px;
  }
}
.c-notesList li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

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

.js-fadein {
  opacity: 0;
}

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

/*=============================================================
  youtube.scss
==============================================================*/
.c-youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.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-table {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--color_border);
}
.c-table td, .c-table th {
  line-height: 1.6;
  font-size: inherit;
  padding: 20px 10px;
  border-bottom: 1px solid var(--color_border);
}
@media screen and (min-width: 768px) {
  .c-table td, .c-table th {
    vertical-align: top;
    display: table-cell;
    padding: 30px 15px;
  }
}
.c-table th {
  text-align: left;
  width: 20%;
}
@media screen and (min-width: 768px) {
  .c-table th {
    width: 20%;
  }
}
.c-table a {
  color: #1530A0;
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .c-table a:hover {
    color: #2b51e6;
    text-decoration: none;
  }
}
.c-table.-sp-column {
  border: none;
}
.c-table.-sp-column td, .c-table.-sp-column th {
  border: none;
}
@media screen and (max-width: 767px) {
  .c-table.-sp-column td, .c-table.-sp-column th {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table.-sp-column th {
    padding: 10px 10px;
    border-left: 2px solid var(--color_border);
    padding-left: 1em;
  }
}
@media screen and (max-width: 767px) {
  .c-table.-sp-column td {
    padding: 1em 1em 2em 1em;
  }
}
.c-table.-cell20 th {
  width: 20%;
}
.c-table.-cell30 th {
  width: 30%;
}
.c-table.-cell40 th {
  width: 40%;
}
.c-table.-cell50 th {
  width: 50%;
}

.js-hint {
  overflow: auto;
  max-width: 100%;
}
.js-hint table {
  width: 680px !important;
}
@media screen and (min-width: 560px) {
  .js-hint table {
    width: 100%;
  }
}

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

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

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

table.e-table02 {
  border-top: 1px solid var(--color_txt);
  width: 100%;
  margin: 30px 0;
  table-layout: fixed;
}
@media screen and (min-width: 1200px) {
  table.e-table02 {
    margin: 40px 0;
  }
}
table.e-table02 th,
table.e-table02 td {
  font-weight: 500;
  border-bottom: 1px solid var(--color_txt);
  padding-block: 10px;
  line-height: inherit;
  font-size: inherit;
  vertical-align: top;
  text-align: left;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  table.e-table02 th,
  table.e-table02 td {
    padding-block: 15px;
  }
}
table.e-table02 th_cell25 {
  width: 25%;
}
table.e-table02 th_cell33 {
  width: 33%;
}
table.e-table02 th_cell50 {
  width: 50%;
}
table.e-table02 th_cell50 {
  width: 50%;
}

/*=============================================================
  downloadlist.scss
=============================================================*/
.c-downloadList {
  width: 100%;
  max-width: var(--contents_base_ss);
  margin-inline: auto;
  font-size: inherit;
}
.c-downloadList_item {
  padding: 1em 0;
  font-size: 113%;
  line-height: 1.3;
  display: flex;
  align-items: center;
  column-gap: 2%;
  border-bottom: 1px dotted var(--color_border);
}
@media screen and (min-width: 1200px) {
  .c-downloadList_item {
    padding: 1.5em 0;
  }
}
.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) {
  .c-downloadList_item::before {
    width: 20px;
  }
}
.c-downloadList_item:has([href$=".zip"])::before, .c-downloadList_item:has([href$=".lzh"])::before {
  background-image: url(../../img/icon/ico-file.png);
}
.c-downloadList_item:has([href$=".pdf"])::before {
  background-image: url(../../img/icon/ico-pdf.png);
}
.c-downloadList_item:has([href$=".doc"])::before, .c-downloadList_item:has([href$=".docx"])::before {
  background-image: url(../../img/icon/ico-word.png);
}
.c-downloadList_item:has([href$=".xls"])::before, .c-downloadList_item:has([href$=".xlsx"])::before {
  background-image: url(../../img/icon/ico-excel.png);
}
.c-downloadList_item:has([href$=".txt"])::before {
  background-image: url(../../img/icon/ico-text.png);
}
.c-downloadList_item:has([href$=".ppt"])::before, .c-downloadList_item:has([href$=".pptx"])::before {
  background-image: url(../../img/icon/ico-ppt.png);
}
.c-downloadList_item:has([href$=".png"])::before, .c-downloadList_item:has([href$=".jpg"])::before, .c-downloadList_item:has([href$=".jpeg"])::before, .c-downloadList_item:has([href$=".gif"])::before {
  background-image: url(../../img/icon/ico-img.png);
}
.c-downloadList a {
  background: var(--color_main);
  color: #fff;
  display: inline flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  line-height: 1;
  column-gap: 5px;
  border-radius: 5px;
  margin-left: auto;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 1200px) {
  .c-downloadList a {
    padding: 16px 30px;
  }
}
.c-downloadList a svg {
  fill: currentcolor;
  width: 18px;
}
@media (any-hover: hover) {
  .c-downloadList a:hover {
    background: var(--color_accent);
  }
}

/*=============================================================
  linklist.scss
==============================================================*/
.c-linkList {
  width: 100%;
}
.c-linkList li {
  list-style: none;
  padding-left: 15px;
  position: relative;
  font-size: inherit;
  line-height: inherit;
  border-bottom: 1px dashed var(--color_border);
}
.c-linkList li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  line-height: 1.4;
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--color_main);
}
@media screen and (min-width: 768px) {
  .c-linkList li::before {
    top: 20px;
  }
}
.c-linkList a {
  font-size: 113.1%;
  padding-block: 15px;
  display: inline-block;
  text-decoration: none;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .c-linkList a {
    padding-block: 20px;
  }
}
.c-linkList a:hover {
  color: var(--color_main);
}
.c-linkList a[target=_blank], .c-linkList a[href$=".pdf"], .c-linkList a[href$=".doc"], .c-linkList a[href$=".docx"], .c-linkList a[href$=".xls"], .c-linkList a[href$=".xlsx"], .c-linkList a[href$=".txt"] {
  display: inline-flex;
  column-gap: 10px;
  position: relative;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .c-linkList a[target=_blank], .c-linkList a[href$=".pdf"], .c-linkList a[href$=".doc"], .c-linkList a[href$=".docx"], .c-linkList a[href$=".xls"], .c-linkList a[href$=".xlsx"], .c-linkList a[href$=".txt"] {
    column-gap: 10px;
    margin-right: 15px;
  }
}
.c-linkList a[target=_blank]::after, .c-linkList a[href$=".pdf"]::after, .c-linkList a[href$=".doc"]::after, .c-linkList a[href$=".docx"]::after, .c-linkList a[href$=".xls"]::after, .c-linkList a[href$=".xlsx"]::after, .c-linkList a[href$=".txt"]::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: auto;
  aspect-ratio: 417/529;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .c-linkList a[target=_blank]::after, .c-linkList a[href$=".pdf"]::after, .c-linkList a[href$=".doc"]::after, .c-linkList a[href$=".docx"]::after, .c-linkList a[href$=".xls"]::after, .c-linkList a[href$=".xlsx"]::after, .c-linkList a[href$=".txt"]::after {
    width: 18px;
  }
}
.c-linkList a[target=_blank]::after {
  background-image: url(../../img/icon/ico-blank.png);
}
.c-linkList a[href$=".zip"]::after, .c-linkList a[href$=".lzh"]::after {
  background-image: url(../../img/icon/ico-file.png);
}
.c-linkList a[href$=".pdf"]::after {
  background-image: url(../../img/icon/ico-pdf.png);
}
.c-linkList a[href$=".doc"]::after, .c-linkList a[href$=".docx"]::after {
  background-image: url(../../img/icon/ico-word.png);
}
.c-linkList a[href$=".xls"]::after, .c-linkList a[href$=".xlsx"]::after {
  background-image: url(../../img/icon/ico-excel.png);
}
.c-linkList a[href$=".txt"]::after {
  background-image: url(../../img/icon/ico-text.png);
}
.c-linkList a[href$=".ppt"]::after, .c-linkList a[href$=".pptx"]::after {
  background-image: url(../../img/icon/ico-ppt.png);
}
.c-linkList a[href$=".png"]::after, .c-linkList a[href$=".jpg"]::after, .c-linkList a[href$=".jpeg"]::after, .c-linkList a[href$=".gif"]::after {
  background-image: url(../../img/icon/ico-img.png);
}

/*=============================================================
  bannerlink.scss
==============================================================*/
.c-bannerLink {
  display: flex;
  column-gap: 5%;
  row-gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .c-bannerLink {
    column-gap: min(2%, 20px);
    row-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-bannerLink {
    column-gap: 20px;
  }
}
.c-bannerLink li {
  width: clamp(100px, 28vw, 260px);
}
@media screen and (min-width: 1200px) {
  .c-bannerLink li {
    width: calc((100% - 60px) / 4);
  }
}
.c-bannerLink a {
  display: block;
  width: 100%;
  height: 100%;
  transition: var(--trans_speed) all;
}
@media (any-hover: hover) {
  .c-bannerLink a:hover {
    opacity: 1;
  }
}

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

/*=============================================================
  card.scss
==============================================================*/
.c-card.-border, .c-card.-border-round {
  border: 1px solid var(--color_main);
  padding: 2.5cqi;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-card.-border, .c-card.-border-round {
    padding: 1.5cqi;
  }
}
.c-card.-border-round {
  border-radius: var(--kadomaru);
}

.-img-square .c-card_img {
  aspect-ratio: 1;
}

.-img-silver .c-card_img {
  aspect-ratio: 7/5;
}

.-img-32 .c-card_img {
  aspect-ratio: 3/2;
}

.c-card_img {
  overflow: hidden;
  text-align: center;
  border-radius: var(--kadomaru);
}
.c-card_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-card_inner {
  margin-top: 2cqi;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-card_inner {
    margin-top: 1cqi;
    line-height: 1.8;
  }
}
.c-card_inner > *:first-child {
  margin-top: 0;
}
.c-card_inner .entryBody {
  line-height: inherit;
}
.c-card_inner p {
  line-height: inherit;
}
@media screen and (min-width: 768px) {
  .c-card_inner p {
    line-height: inherit;
  }
}

/*=============================================================
  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-hoverimg img {
  transition: var(--trans_speed) all;
  backface-visibility: hidden;
}
@media screen and (min-width: 960px) {
  .c-hoverimg:hover img {
    transform: scale(1.1);
  }
}

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

@keyframes animeRotation {
  0% {
    rotate: 0;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes animeScroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*=============================================================
  section
==============================================================*/
.c-section {
  position: relative;
  z-index: calc(var(--section_count) + 10);
}
.c-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -50%;
  z-index: 10;
  background: var(--section_bg);
  width: 100%;
  aspect-ratio: 1920/230;
  mask-image: url("../../img/section-mask.svg");
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-size: cover;
  /* Chrome, Safari用 */
  -webkit-mask-image: url("../../img/section-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  -webkit-mask-size: cover;
}
.c-section > * {
  position: relative;
  z-index: 100;
  background: var(--section_bg);
}
.c-section + .c-section {
  z-index: 20;
}

/*=============================================================
  reserve.scss
==============================================================*/
.c-reserve {
  --border-width: 5px;
  position: relative;
  border-radius: var(--kadomaru);
}
.c-reserve::after {
  content: "";
  display: block;
  z-index: 1;
  background: var(--color_border_grad);
  width: calc(100% + var(--border-width) * 2);
  height: calc(100% + var(--border-width) * 2);
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 20px;
}

.c-reserve_inner {
  background: var(--color_beige);
  position: relative;
  z-index: 10;
  padding: min(5vw, 60px);
  border-radius: calc(var(--kadomaru) - var(--border-width));
  font-family: var(--font_mincho);
}
.c-reserve_inner::before, .c-reserve_inner::after {
  content: "";
  background: url(../../img/reserve-img.png) no-repeat center center/contain;
  aspect-ratio: 307/298;
  width: 30%;
  max-width: 307px;
  display: block;
  position: absolute;
  top: 0;
}
.c-reserve_inner::before {
  left: 0;
  translate: -18% -22%;
}
.c-reserve_inner::after {
  right: 0;
  translate: 18% -22%;
  transform: scale(-1, 1);
}

.c-reserve_heading {
  font-size: clamp(1.375rem, 1.072rem + 1.346vw, 2.25rem);
  font-weight: 700;
  color: var(--color_main);
  text-align: center;
  letter-spacing: 0.05rem;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: min(5vw, 45px);
}
@media screen and (min-width: 768px) {
  .c-reserve_heading::before {
    content: "";
    background: url(../../img/footer-img02.png) no-repeat center center/contain;
    aspect-ratio: 124/85;
    width: 80px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    translate: -110% -60%;
  }
}
@media screen and (min-width: 1200px) {
  .c-reserve_heading::before {
    width: 124px;
  }
}

.c-reserve_list {
  container-type: inline-size;
  display: flex;
  justify-content: center;
  column-gap: 2%;
}
.c-reserve_list li {
  flex: 1;
  max-width: 350px;
}
.c-reserve_list a {
  background: var(--reserve_btn_color);
  color: #fff;
  text-align: center;
  padding: min(5cqi, 30px) 2cqi;
  font-size: clamp(0.875rem, 0.659rem + 0.962vw, 1.5rem);
  font-weight: 600;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.c-reserve_list a::before {
  content: "";
  display: block;
  background: color-mix(in srgb, var(--reserve_btn_color) 70%, #000);
  width: 10%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: var(--trans_speed) width;
  z-index: 1;
}
.c-reserve_list a > span {
  position: relative;
  z-index: 10;
}
.c-reserve_list a > span span {
  display: none;
}
@media screen and (min-width: 560px) {
  .c-reserve_list a > span span {
    display: inline;
  }
}
@media (any-hover: hover) {
  .c-reserve_list a:hover::before {
    width: 105%;
    opacity: 1;
  }
}

.c-reserve_btn01 {
  --reserve_btn_color: var(--color_red);
}

.c-reserve_btn02 {
  --reserve_btn_color: var(--color_accent);
}

.c-reserve_btn03 {
  --reserve_btn_color: var(--color_main);
}

.l-reserveFix {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1cqw;
  z-index: 500;
  background: var(--color_txt);
  translate: 0 105%;
  transition: 0.5s translate;
}
@media screen and (min-width: 768px) {
  .l-reserveFix {
    display: none;
  }
}
.l-reserveFix.is-active {
  translate: 0;
}
.l-reserveFix .c-reserve {
  padding: 2cqw;
}
.l-reserveFix .c-reserve_heading {
  display: none;
}
.l-reserveFix a {
  font-size: clamp(0.75rem, 0.49rem + 1.154vw, 1.5rem);
  padding: min(3cqi, 20px) 2cqi;
}
.l-reserveFix a > span span {
  display: inline;
}

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

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

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

/*=============================================================
  header.scss
=============================================================*/
.l-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header_height);
  z-index: 900;
  background: var(--color_red);
  color: var(--color_yellow);
}
.l-header::before {
  content: "";
  width: 100%;
  aspect-ratio: 460/15;
  background: var(--color_red);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  translate: 0 50%;
  z-index: -1;
  display: none;
  mask-image: url("../../img/section-mask02.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100% 100%;
  /* Chrome, Safari用 */
  -webkit-mask-image: url("../../img/section-mask02.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100% 100%;
}
@media screen and (min-width: 1200px) {
  .l-header::after {
    content: "";
    background: url(../../img/header-ornament02.png) no-repeat right top/contain;
    aspect-ratio: 569/304;
    width: min(25vw, 569px);
    max-width: 569px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.l-header_inner {
  padding-inline: min(var(--wrap-padding), 30px) 0;
  display: grid;
  grid-template-columns: min(40%, 190px) 1fr var(--header_height);
  grid-template-areas: "h-logo . h-btn";
  align-items: center;
  position: relative;
  z-index: 100;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .l-header_inner {
    grid-template-columns: min(30%, 278px) 1fr min(30%, 218px);
    grid-template-areas: "h-logo h-navi . ";
    align-items: stretch;
  }
}

.header-logo {
  grid-area: h-logo;
}

.header-btn {
  grid-area: h-btn;
}

.header-navi {
  grid-area: h-navi;
}

.header-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.header-logo a {
  display: inline-block;
  max-width: 278px;
  position: relative;
  z-index: 100;
}
.header-logo svg {
  fill: #fff;
}

.header-navi {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header-navi {
    display: block;
  }
}
.header-navi ul {
  width: fit-content;
  margin-inline: auto;
  height: 100%;
  display: flex;
  column-gap: min(2cqi, 40px);
  justify-content: center;
  align-items: center;
  list-style: none;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .header-navi ul::after {
    content: "";
    background: url(../../img/header-ornament01.png) no-repeat center center/contain;
    display: block;
    aspect-ratio: 351/125;
    width: min(18vw, 351px);
    position: absolute;
    left: 0;
    top: 0;
    translate: -100%;
  }
}
.header-navi a {
  font-size: clamp(0.875rem, 0.5rem + 0.625vw, 1.125rem);
  font-family: var(--font_mincho);
  font-weight: 600;
  display: block;
  padding: 5px 10px;
  position: relative;
  overflow: hidden;
  color: currentColor;
  transition: var(--trans_speed) all;
}
.header-navi a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color_txt);
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transition: var(--trans_speed) all;
  z-index: -1;
}
@media (any-hover: hover) {
  .header-navi a:hover::before {
    top: 0;
  }
}

/**/
.l-header.is-scroll {
  --wrap-padding:3vw;
  position: fixed;
  z-index: 9999;
  animation: anime-scrollMenu 0.5s forwards;
  grid-template-columns: min(30%, 190px) 1fr auto 0;
}
@media screen and (min-width: 1200px) {
  .l-header.is-scroll {
    --header_height:90px;
  }
}
.l-header.is-scroll::before {
  display: block;
}
.l-header.is-scroll .l-header_inner {
  grid-template-columns: min(40%, 190px) 1fr var(--header_height);
}
@media screen and (min-width: 1200px) {
  .l-header.is-scroll .l-header_inner {
    padding-inline: var(--wrap-padding);
    grid-template-columns: min(30%, 218px) 1fr min(30%, 218px);
    grid-template-areas: "h-logo h-navi . ";
  }
}
#home .l-header.is-scroll .header-logo a {
  display: block;
}
@media screen and (max-width: 1199px) {
  .l-header.is-scroll .naviBtn {
    display: block;
  }
}
.l-header.is-scroll .header-navi ul {
  display: flex;
  column-gap: 10px;
}
.l-header.is-scroll .header-navi ul::after {
  display: none;
}
.l-header.is-scroll .header-navi a {
  font-size: 1rem;
}

@keyframes anime-scrollMenu {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=============================================================
  drawer.scss
=============================================================*/
.l-drawer {
  display: none;
  width: 100%;
  height: 100dvb;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 990;
  font-family: var(--font_mincho);
}

.l-drawer_inner {
  height: 100%;
  background: url(../../img/menu-bg.png) no-repeat bottom center/cover;
}

.l-drawer_container {
  height: 100%;
  padding: calc(var(--header_height) + 2vh) 8vw;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto min(20vh, 40px) auto min(10vh, 60px) auto 1fr;
  grid-template-areas: "." "d-navi01" "." "d-navi02" "." "d-reserve" ".";
}
@media screen and (min-width: 768px) {
  .l-drawer_container {
    padding: calc(var(--header_height) + 2vh) 10vw;
  }
}

.drawer-navi {
  grid-area: d-navi01;
}

.drawer-navi02 {
  grid-area: d-navi02;
}

.drawer-reserve {
  grid-area: d-reserve;
}

.drawer-navi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: min(5vw, 40px);
  column-gap: 5%;
}
@media screen and (min-width: 768px) {
  .drawer-navi {
    grid-template-columns: repeat(3, 1fr);
  }
}
.drawer-navi li {
  text-align: center;
}
.drawer-navi a {
  color: #fff;
  font-size: clamp(1.25rem, 1.163rem + 0.385vw, 1.5rem);
  line-height: 1.3;
  font-weight: 700;
  padding: 15px 0;
  display: inline-block;
  border-bottom: 1px solid var(--color_bg02);
  width: 100%;
}

.drawer-navi02 {
  display: flex;
  column-gap: min(8%, 60px);
  row-gap: 10px;
  align-items: center;
  justify-content: center;
}
.drawer-navi02 a {
  color: #fff;
  font-size: clamp(0.8125rem, 0.748rem + 0.288vw, 1rem);
  font-weight: 700;
}

/*=============================================================
  naviBtn.scss
==============================================================*/
.naviBtn {
  display: block;
  padding: 15px 0 15px 15px;
  aspect-ratio: 1;
  height: var(--header_height);
  margin-left: auto;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .naviBtn {
    padding: 20px 0 20px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .naviBtn {
    display: none;
  }
}
.naviBtn button {
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 10px 0px 0 10px;
  background: var(--color_accent);
  position: relative;
  transition: 0.4s all;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.naviBtn p {
  width: 50%;
  aspect-ratio: 1/0.6;
  position: relative;
}
.naviBtn p::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transition: 0.5s all;
}
.naviBtn p span {
  display: block;
  width: 100%;
  height: 100%;
}
.naviBtn p span::before, .naviBtn p span::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  transition: 0.5s all;
  height: 2px;
  background: #fff;
}
.naviBtn p span::before {
  top: 0;
}
.naviBtn p span::after {
  bottom: 0;
}
.naviBtn p span.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.is-menuopen button p::after {
  opacity: 0;
}
.is-menuopen button span::before {
  transform: translateY(7px) rotate(-35deg);
}
@media screen and (min-width: 768px) {
  .is-menuopen button span::before {
    transform: translateY(9px) rotate(-25deg);
  }
}
.is-menuopen button span::after {
  transform: translateY(-7px) rotate(35deg);
}
@media screen and (min-width: 768px) {
  .is-menuopen button span::after {
    transform: translateY(-9px) rotate(25deg);
  }
}

/*=============================================================
  footer.scss
=============================================================*/
.l-footer {
  background: url(../../img/footer-bg.png) no-repeat center top/cover;
  position: relative;
  z-index: 500;
  color: #fff;
  font-family: var(--font_mincho);
}
.l-footer_inner {
  position: relative;
}
.l-footer_inner::before {
  content: "";
  background: url(../../img/footer-img.png) no-repeat center center/contain;
  height: 120px;
  aspect-ratio: 110/191;
  display: block;
  position: absolute;
  right: var(--wrap-padding);
  top: 0;
  translate: 0 -30%;
}
@media screen and (min-width: 768px) {
  .l-footer_inner::before {
    height: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer_inner::before {
    height: 191px;
  }
}
.l-footer_inner.space--small {
  padding-bottom: 0;
}

.footer-logo {
  width: min(50%, 340px);
  margin-inline: auto;
}
.footer-logo svg {
  fill: #fff;
}
.footer-logo a {
  transition: var(--trans_speed) opacity;
}
@media (any-hover: hover) {
  .footer-logo a:hover {
    opacity: 0.8;
  }
}

.footer-navi {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .footer-navi {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-navi {
    margin-top: 40px;
  }
}
.footer-navi ul {
  display: flex;
  column-gap: 15px;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-navi ul + ul {
  margin-top: 15px;
}
.footer-navi li {
  list-style-type: none;
}
.footer-navi a {
  color: currentColor;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  font-weight: 700;
}
.footer-navi a::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: var(--trans_speed) opacity;
}
@media (any-hover: hover) {
  .footer-navi a:hover::before {
    opacity: 1;
  }
}

.footer-address {
  text-align: center;
  line-height: 2;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  font-weight: 500;
  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-copyright {
  font-size: clamp(0.625rem, 0.495rem + 0.577vw, 1rem);
  font-weight: bold;
  color: var(--color_bg02);
  text-align: center;
}

/*=============================================================
  main.scss
=============================================================*/
.l-contents [id*=section]:last-of-type {
  position: relative;
}
.l-wrapper {
  container-type: inline-size;
  padding-top: var(--header_height);
  position: relative;
}

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

/*=============================================================
  pageHeading.scss
==============================================================*/
.l-pageHeading {
  background: var(--color_red);
  position: relative;
  padding-inline: var(--wrap-padding);
  margin: 0px auto;
  padding-bottom: 40px;
  font-family: var(--font_mincho);
}
@media screen and (min-width: 768px) {
  .l-pageHeading {
    padding-inline: calc(var(--wrap-padding) * 2);
    padding-bottom: 60px;
  }
}

.l-pageHeading_inner {
  position: absolute;
  inset: 0;
  margin-inline: calc(var(--wrap-padding) * 2);
  color: #fff;
  text-shadow: 0px 0px 12px rgb(0, 0, 0);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: min(3cqi, 20px);
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-pageHeading_inner {
    padding-bottom: 60px;
  }
}
.l-pageHeading_inner::before, .l-pageHeading_inner::after {
  content: "";
  display: block;
  background: url(../../img/title-illust.png) no-repeat center center/contain;
  width: 40%;
  max-width: 180px;
  aspect-ratio: 330/153;
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-pageHeading_inner::before, .l-pageHeading_inner::after {
    max-width: 320px;
  }
}
.l-pageHeading_inner::before {
  left: 0;
  top: 10%;
  translate: -20%;
}
.l-pageHeading_inner::after {
  right: 0;
  bottom: 0;
  translate: 20% 20%;
}

.l-pageHeading_main {
  font-size: clamp(1.75rem, 1.382rem + 1.635vw, 2.8125rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1cqi;
}

.l-pageHeading_sub {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.659rem + 0.962vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.2cqi;
}

.l-pageHeading_img {
  height: 180px;
  border-radius: min(5cqi, 50px);
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-pageHeading_img {
    height: 320px;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeading_img {
    height: 426px;
  }
}
.l-pageHeading_img::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: absolute;
  inset: 0;
}
.l-pageHeading_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

/* entryNavi
---------------------------------------------*/
.entryNavi {
  display: grid;
  grid-template-columns: 25% 1fr 25%;
  grid-template-areas: "p-next p-list p-prev";
  column-gap: 5%;
}
@media screen and (min-width: 768px) {
  .entryNavi {
    grid-template-columns: 1fr 20% 20% 20% 1fr;
    grid-template-areas: ". p-next p-list p-prev .";
  }
}
.entryNavi p {
  position: relative;
}
.entryNavi a {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color_txt);
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  line-height: 1.3;
  padding: 15px 10px;
  text-align: center;
  border-radius: 9999px;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .entryNavi a {
    padding: 20px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .entryNavi a {
    padding: 25px 10px;
  }
}
.entryNavi_prev {
  grid-area: p-prev;
}
.entryNavi_next {
  grid-area: p-next;
}
.entryNavi_prev a, .entryNavi_next a {
  background: var(--color_main);
  color: #fff;
}
@media screen and (min-width: 960px) {
  .entryNavi_prev a:hover, .entryNavi_next a:hover {
    opacity: 0.8;
  }
}
.entryNavi_back {
  grid-area: p-list;
}
.entryNavi_back a {
  background: #fff;
  color: var(--color_main);
  box-shadow: 0px 5px 0px -3px var(--color_main);
  border: 1px solid var(--color_main);
}
@media screen and (min-width: 960px) {
  .entryNavi_back a:hover {
    opacity: 0.8;
  }
}

/*=============================================================
  section / layout.scss
=============================================================*/
.s-section > .s-section_container:first-of-type {
  margin-top: 0;
}
.s-section > .s-section_container:last-of-type {
  margin-bottom: 0;
}

.s-section_container {
  container-type: inline-size;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  margin-block: 40px;
}
@media screen and (min-width: 768px) {
  .s-section_container {
    margin-block: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .s-section_container {
    margin-block: 80px;
  }
}
.s-section_container .s-section_block:first-of-type {
  margin-top: 0;
}
.s-section_container .s-section_block:last-of-type {
  margin-bottom: 0;
}

.s-section_block {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .s-section_block {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .s-section_block {
    margin-bottom: 80px;
  }
}
.s-section_block > *:first-child {
  margin-top: 0 !important;
}
.s-section_block > *:last-child {
  margin-bottom: 0 !important;
}

.s-section_whiteBox {
  background: url(../../img/inner/frame-obj01.png) no-repeat left top, url(../../img/inner/frame-obj02.png) no-repeat right top, url(../../img/inner/frame-obj03.png) no-repeat right bottom, url(../../img/inner/frame-obj04.png) no-repeat left bottom, var(--color_bg02);
  background-size: min(30%, 125px) auto, min(30%, 125px) auto, min(30%, 125px) auto, min(30%, 125px) auto, cover;
  position: relative;
  border: 2px solid #e7c186;
  padding: 20px;
}
@media screen and (min-width: 560px) {
  .s-section_whiteBox {
    padding: 40px;
  }
}
@media screen and (min-width: 768px) {
  .s-section_whiteBox {
    padding: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .s-section_whiteBox {
    padding: 70px min(7.14%, 100px);
  }
}
.s-section_whiteBox::before {
  content: "";
  display: block;
  background: url(../../img/inner/frame-obj_top.png) no-repeat center center/contain;
  aspect-ratio: 241/49;
  width: 50%;
  max-width: 241px;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -100%;
}
.s-section_whiteBox > * {
  position: relative;
  z-index: 10;
}

/*=============================================================
  section / gallery.scss
=============================================================*/
.s-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.s-gallery a {
  display: block;
  position: relative;
}

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

.s-gallery_caption {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  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) {
  .s-gallery_caption {
    padding: 20px;
  }
}

/*=============================================================
  section / introduction.scss
=============================================================*/
.s-introduction {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  row-gap: 20px;
  grid-template-areas: "i-inner" "i-img";
}
@media screen and (min-width: 768px) {
  .s-introduction {
    row-gap: 0;
    column-gap: 5%;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .s-introduction {
    column-gap: 8%;
  }
}
@media screen and (min-width: 768px) {
  .s-introduction.-normal {
    margin-left: calc(50% - 50vw);
    grid-template-columns: calc(50vw - 5%) 1fr;
    grid-template-areas: "i-img i-inner";
  }
}
@media screen and (min-width: 768px) {
  .s-introduction.-reverse {
    margin-right: calc(50% - 50vw);
    grid-template-columns: 1fr 50vw;
    grid-template-areas: "i-inner i-img";
  }
}

.s-introduction_inner {
  grid-area: i-inner;
}

.s-introduction_img {
  grid-area: i-img;
}

.s-introduction_img {
  margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .s-introduction_img {
    margin-inline: 0;
    overflow: hidden;
  }
}
.s-introduction_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .-normal .s-introduction_img {
    border-top-right-radius: var(--kadomaru-large);
    border-bottom-right-radius: var(--kadomaru-large);
  }
}

@media screen and (min-width: 768px) {
  .-reverse .s-introduction_img {
    border-top-left-radius: var(--kadomaru-large);
    border-bottom-left-radius: var(--kadomaru-large);
  }
}

/*=============================================================
  section / flow.scss
=============================================================*/
.s-flow {
  --flow-bg: #fff;
  counter-reset: flow_num;
}

.s-flow_section {
  display: flex;
  gap: 0 5%;
  width: 100%;
  background-color: var(--flow-bg);
  border: 2px solid var(--color_main);
  border-radius: var(--entry_kadomaru);
  padding: min(7vw, 2.5em) min(4vw, 3em);
  position: relative;
}
.s-flow_section:not(:last-child) {
  margin-bottom: 2rem;
}

.s-flow.-arrow .s-flow_section:not(:last-child) {
  margin-bottom: 4em;
}
.s-flow.-arrow .s-flow_section:not(:last-child)::after {
  content: "";
  display: block;
  width: 12rem;
  height: 2rem;
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50% 1em;
  background-color: var(--color_border);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  opacity: 0.3;
}

.s-flow_img {
  width: 40%;
  border-radius: var(--entry_kadomaru);
  overflow: hidden;
}

.s-flow_inner {
  flex: 1;
  position: relative;
}

.s-flow_heading {
  padding-bottom: 1em;
}

.s-flow_num {
  display: inline-block;
  font-size: clamp(0.875rem, 0.702rem + 0.769vw, 1.375rem);
  font-weight: 600;
  position: relative;
  line-height: 1;
  margin-bottom: 15px;
  background: var(--color_red);
  color: #fff;
  padding: 6px 20px 6px 0;
}

.s-flow_num::before {
  content: "";
  display: block;
  width: calc(min(4vw, 3em) + 20px);
  height: 100%;
  background: var(--color_red);
  position: absolute;
  left: 0;
  top: 0;
  translate: -100%;
  margin-right: 8px;
}

.s-flow_num::after {
  display: inline;
  counter-increment: flow_num;
  content: counter(flow_num, decimal-leading-zero);
  padding-left: 0.1em;
  font-size: 150%;
}

.s-flow:not(.-numbering) .s-flow_num {
  display: none;
}

.s-flow_title {
  font-size: clamp(1.375rem, 1.245rem + 0.577vw, 1.75rem);
}

.s-flow_subTitle {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  font-weight: 500;
  padding-top: 5px;
  color: var(--color_accent);
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .s-flow_section {
    display: block;
  }
  .s-flow_heading {
    padding-bottom: 1em;
  }
  .s-flow_img {
    width: auto;
    padding-top: 1.5em;
  }
}
/*=============================================================
  section / feature.scss
=============================================================*/
.s-feature {
  --split-bg: #fff;
  counter-reset: split_num;
  margin-top: 20px;
}
.s-feature.-alternately .s-feature_section:nth-child(even) {
  flex-direction: row-reverse;
}

.s-feature_section {
  background-color: var(--split-bg);
  border: 2px solid var(--color_yellow);
  position: relative;
  display: block;
  padding: min(6vw, 2.5em) min(5vw, 3em);
}
@media screen and (min-width: 768px) {
  .s-feature_section {
    display: flex;
    gap: 0 6%;
    padding: min(6vw, 2.5em) min(5vw, 3em);
  }
}
.s-feature_section + .s-feature_section {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .s-feature_section + .s-feature_section {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .s-feature_section + .s-feature_section {
    margin-top: 60px;
  }
}

.s-feature_img {
  width: auto;
  border-radius: var(--entry_kadomaru);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .s-feature_img {
    width: 46%;
  }
}

.s-feature_inner {
  flex: 1;
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .s-feature_inner {
    padding-block: 15px;
  }
}

.-numbering .s-feature_section::before {
  display: inline-block;
  counter-increment: split_num;
  content: counter(split_num, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 1vw;
  z-index: 9;
  font-size: clamp(4.375rem, 3.51rem + 3.846vw, 6.875rem);
  font-weight: 700;
  font-weight: 500;
  color: var(--color_main);
  pointer-events: none;
  line-height: 1;
  translate: 10% -35%;
}
@media screen and (min-width: 768px) {
  .-numbering .s-feature_section::before {
    left: auto;
    translate: 0 -35%;
  }
}

.s-feature.-alternately.-numbering .s-feature_section:nth-child(even)::before {
  left: 1vw;
  right: auto;
}
@media screen and (min-width: 768px) {
  .s-feature.-alternately.-numbering .s-feature_section:nth-child(even)::before {
    left: auto;
    right: auto;
  }
}

/*=============================================================
  section / s-contents-list.scss
==============================================================*/
.s-contents-listItem {
  width: 100%;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-areas: "cl-img" "cl-contents";
  row-gap: min(6cqw, 40px);
  column-gap: 5%;
}
@media screen and (min-width: 768px) {
  .s-contents-listItem {
    grid-template-rows: auto auto;
    grid-template-areas: "cl-img cl-contents";
    grid-template-rows: auto;
    grid-template-columns: 50% 1fr;
    column-gap: 5%;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .s-contents-listItem:nth-child(even) {
    grid-template-columns: 1fr 50%;
    grid-template-areas: "cl-contents cl-img";
  }
}
.s-contents-listItem + .s-contents-listItem {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .s-contents-listItem + .s-contents-listItem {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .s-contents-listItem + .s-contents-listItem {
    margin-top: 100px;
  }
}
.s-contents-listItem .wp-c-heading02 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .s-contents-listItem .wp-c-heading02 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .s-contents-listItem .wp-c-heading02 {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .s-contents-listitem_inner {
    align-items: center;
  }
}

.s-contents-listItem_img {
  grid-area: cl-img;
  overflow: hidden;
  border-radius: var(--entry_kadomaru);
}
.s-contents-listItem_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.s-contents-listItem_img a {
  display: block;
  height: 100%;
}

.s-contents-listItem_contents {
  grid-area: cl-contents;
}

.s-contents-listItem_text {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .s-contents-listItem_text {
    line-height: 1.6;
  }
}

.c-headingGroup02 + .s-contents-listItem_text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02 + .s-contents-listItem_text {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02 + .s-contents-listItem_text {
    margin-top: 40px;
  }
}

.s-contents-listItem_link {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .s-contents-listItem_link {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .s-contents-listItem_link {
    margin-top: 40px;
  }
}
.s-contents-navi {
  height: 100%;
}
.s-contents-navi a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  color: var(--color_main);
}

.s-contents-navi_img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 360/230;
  border-radius: var(--kadomaru);
  border: 2px solid var(--color_main);
}
.s-contents-navi_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-contents-navi_title {
  flex: 1;
  text-align: center;
  margin-top: 8cqi;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 8cqi;
}
.s-contents-navi_title span {
  font-size: 7cqi;
  font-weight: 700;
  line-height: 1.3;
}
.s-contents-navi_title::after {
  content: "";
  background: url(../../img/title-border.png) repeat-x center bottom;
  background-size: 10px;
  height: 10px;
  width: 80%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50%;
}
@media screen and (min-width: 768px) {
  .s-contents-navi_title::after {
    background-size: 12px;
  }
}

/*=============================================================
  section / faq.scss
=============================================================*/
.s-faq {
  --faq-padding: 15px;
}
@media screen and (min-width: 768px) {
  .s-faq {
    --faq-padding: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .s-faq {
    --faq-padding: 30px;
  }
}

.s-faq_item {
  border-bottom: 1px solid var(--color_border);
}
.s-faq_item:first-of-type {
  border-top: 1px solid var(--color_border);
}

.s-faq_heading {
  cursor: pointer;
  font-size: clamp(1rem, 0.87rem + 0.577vw, 1.375rem);
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: var(--faq-padding);
  padding-block: var(--faq-padding);
}
.s-faq_heading::before {
  content: "Q";
  background: var(--color_main);
  color: #fff;
  font-weight: 700;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}
.s-faq_heading span {
  display: block;
  position: relative;
}
.s-faq_heading.js-faqaccordion {
  grid-template-columns: 30px 1fr 20px;
}
.s-faq_heading.js-faqaccordion::after {
  font-family: "Font Awesome 6 Free";
  content: "\f107";
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  aspect-ratio: 1;
  transform-origin: center center;
  transition: var(--trans_speed) all;
}
.s-faq_heading.js-faqaccordion.is-open::after {
  transform: scale(1, -1);
}

.s-faq_answer {
  position: relative;
  padding-block: var(--faq-padding) calc(var(--faq-padding) * 2);
}
@media screen and (min-width: 768px) {
  .s-faq_answer {
    padding-block: 0 var(--faq-padding);
  }
}

.s-faq_answer_inner {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: var(--faq-padding);
  position: relative;
}
.s-faq_answer_inner::before {
  font-size: clamp(1rem, 0.87rem + 0.577vw, 1.375rem);
  content: "A";
  color: var(--color_accent);
  font-weight: 700;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}

.js-faqaccordion + .s-faq_answer {
  display: none;
  padding-block: var(--faq-padding) calc(var(--faq-padding) * 2);
}

/*=============================================================
  top.css
=============================================================*/
.top-main {
  --mainvisual-height:60vh;
  --mv-padding-bottom:10vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-main {
    --mv-padding-bottom:15vw;
    --mainvisual-height:calc(90vh - var(--header_height));
  }
}
@media screen and (min-width: 1200px) {
  .top-main {
    --mainvisual-height:calc(100vh - var(--header_height) - 40px);
  }
}
.top-main {
  /*
  &::before{
    content: '';
    width: 100%;
    height:calc(100% - var(--mainvisual-height) + 10vw);
    background: url(../../img/top/top-mainimg_sp.png) no-repeat center top;
    background-size: 100% auto;
    //background: var(--color_main);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    @include mq-up(sm){
    }
    @include mq-up(md){
      //height:calc(112% - var(--mainvisual-height));
      height:calc(100% - var(--mainvisual-height) + 5vw);
      background: url(../../img/top/top-mainimg.png) no-repeat center top, linear-gradient(to bottom, transparent 30%, var(--color_main) 30%);
      background-size:contain;
    }
    @include mq-up(xl){
      background: url(../../img/top/top-mainimg.png) no-repeat center top;
      background-size: cover;
      height:calc(106% - var(--mainvisual-height));
      //background-size: contain;
    }
  }
  */
}

.top-mainVisual {
  padding-inline: var(--wrap-padding);
  background: url(../../img/top/top-promo_bg.png) no-repeat center center/cover;
  padding-bottom: var(--mv-padding-bottom);
  position: relative;
}
.top-mainVisual_inner {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50%;
  width: 100%;
  height: var(--mainvisual-height);
  margin-bottom: var(--mv-padding-bottom);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  color: #fff;
  text-align: center;
  font-family: var(--font_mincho);
  font-weight: 500;
  z-index: 10;
  text-shadow: 0px 0px 12px rgb(0, 0, 0);
}
@media screen and (min-width: 768px) {
  .top-mainVisual_inner {
    row-gap: 30px;
    padding-bottom: 10vw;
  }
}

.top-mainVisual_copy01 {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
  font-size: clamp(2.5rem, 1.635rem + 3.846vw, 5rem);
}
.top-mainVisual_copy01::before {
  content: "";
  display: block;
  background: url(../../img/inner/frame-obj_top.png) no-repeat center center/contain;
  aspect-ratio: 241/49;
  width: 100%;
  max-width: 241px;
}

.top-mainVisual_copy02 {
  font-size: clamp(1.375rem, 0.596rem + 3.462vw, 3.625rem);
  line-height: 1.2;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: min(3cqw, 18px);
}
.top-mainVisual_copy02 br {
  display: inline;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_copy02 br {
    display: none;
  }
}

.top-mainVisual_txt {
  font-size: clamp(1.125rem, 0.865rem + 1.154vw, 1.875rem);
  line-height: 1.2;
}

.top-mainVisual_img {
  border-radius: min(5cqi, 50px);
  overflow: hidden;
  height: var(--mainvisual-height);
  container-type: inline-size;
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_img {
    border-radius: 0;
  }
}
.top-mainVisual_img .slide-img {
  border-radius: min(5cqi, 50px);
  overflow: hidden;
  height: var(--mainvisual-height);
  position: relative;
}
.top-mainVisual_img .slide-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-mainVisual_img .slide-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.top-featuredNews {
  margin-top: 30px;
  container-type: inline-size;
  position: relative;
  z-index: 200;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .top-featuredNews {
    position: absolute;
    left: var(--wrap-padding);
    bottom: calc(20px + 15vw);
    width: 50%;
    max-width: 517px;
    margin: 0;
    z-index: 200;
  }
}
@media screen and (min-width: 1200px) {
  .top-featuredNews {
    bottom: calc(60px + 15vw);
  }
}
.top-featuredNews::after {
  content: "";
  display: block;
  z-index: 1;
  background: var(--color_border_grad);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 20px;
}
@media (any-hover: hover) {
  .top-featuredNews:hover {
    translate: 0 -3px;
  }
}
.top-featuredNews a {
  display: grid;
  grid-template-columns: 35% 1fr;
  align-items: center;
  column-gap: 5%;
  background: var(--color_beige);
  border-radius: 15px;
  padding: 3cqi 5% 3cqi 3cqi;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .top-featuredNews a {
    grid-template-columns: 38% 1fr;
  }
}
.top-featuredNews a::after {
  content: "";
  width: min(20%, 85px);
  aspect-ratio: 85/79;
  background: url(../../img/top/top-new.png) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0;
  translate: -15% -50%;
}
@media screen and (min-width: 768px) {
  .top-featuredNews a::after {
    translate: -25% -40%;
  }
}

.top-featuredNews_img {
  border-radius: 10px;
  overflow: hidden;
}
.top-featuredNews_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-featuredNews_date {
  font-weight: bold;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  color: var(--color_red);
}

.top-featuredNews_title {
  margin-top: 10px;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.2;
  color: var(--color_main);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-introduction {
  --bg_height:calc(600 / 750 * 50%);
  overflow: hidden;
  position: relative;
  z-index: 100;
  background: url(../../img/top/top-mainimg_sp.png) no-repeat center top, linear-gradient(to bottom, transparent 15%, var(--color_main) 15%);
  background-size: 100% auto;
  padding-top: var(--bg_height);
  margin-top: calc(-40vw + var(--mv-padding-bottom));
  padding-bottom: calc(var(--padding_large) / 2);
  font-family: var(--font_mincho);
}
@media screen and (min-width: 768px) {
  .top-introduction {
    --bg_height:calc(803 / 1920 * 50%);
    background: url(../../img/top/top-mainimg.png) no-repeat center top, linear-gradient(to bottom, transparent 15%, var(--color_main) 15%);
    background-size: 100% auto;
    margin-top: -25vw;
    padding-bottom: calc(var(--padding_large) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .top-introduction {
    background: url(../../img/top/top-mainimg.png) no-repeat center top, linear-gradient(to bottom, transparent var(--bg_height), var(--color_main) var(--bg_height));
    padding-top: calc(var(--padding_large) * 1.5);
    padding-bottom: var(--padding_large);
  }
}

.top-introduction_inner {
  position: relative;
  font-size: clamp(0.875rem, 0.745rem + 0.577vw, 1.25rem);
  font-weight: 600;
  line-height: 2;
  text-align: center;
  color: #fff;
  container-type: inline-size;
}
.top-introduction_inner p:not([class]) {
  word-break: keep-all;
  position: relative;
  z-index: 10;
}
.top-introduction_inner p + p {
  margin-top: min(10cqi, 40px);
}

.top-introduction_heading {
  font-size: clamp(1.625rem, 1.106rem + 2.308vw, 3.125rem);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--color_light_yellow);
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.top-introduction_heading::before {
  content: "";
  background: url(../../img/top/top-leadimg01.png) no-repeat center center/contain;
  aspect-ratio: 539/268;
  width: 50cqi;
  max-width: 250px;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -55% -100%;
}
@media screen and (min-width: 768px) {
  .top-introduction_heading::before {
    width: 40cqi;
    max-width: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .top-introduction_heading::before {
    width: 28cqi;
    max-width: 539px;
  }
}

.top-introduction_btn {
  position: relative;
  z-index: 200;
}

[class*=top-introduction_img] {
  position: absolute;
  z-index: 10;
}

.top-introduction_img01 {
  right: 5cqi;
  top: 18%;
  width: 15%;
  max-width: 277px;
  aspect-ratio: 277/194;
}
@media screen and (min-width: 1200px) {
  .top-introduction_img01 {
    top: 35%;
    z-index: 500;
    right: 20px;
  }
}

.top-introduction_img02 {
  left: 5cqi;
  top: 45%;
  width: 15%;
  max-width: 165px;
  aspect-ratio: 165/180;
}
@media screen and (min-width: 768px) {
  .top-introduction_img02 {
    left: 100px;
    z-index: 500;
    top: 55%;
    width: 30%;
  }
}

.top-introduction_img03 {
  right: 5cqi;
  top: 45%;
  width: 20%;
  max-width: 497px;
  aspect-ratio: 497/654;
}
@media screen and (min-width: 1200px) {
  .top-introduction_img03 {
    top: 15%;
    width: 30cqw;
    right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .top-introduction_img03 {
    width: 45cqw;
    translate: 35%;
  }
}

.top-introduction_img04 {
  bottom: 0;
  left: 5cqi;
  width: 25%;
  max-width: 497px;
  aspect-ratio: 497/654;
}
@media screen and (min-width: 1200px) {
  .top-introduction_img04 {
    width: 30cqw;
    left: 0;
    bottom: -40px;
  }
}
@media screen and (min-width: 1600px) {
  .top-introduction_img04 {
    width: 45cqw;
    translate: -35%;
  }
}

.top-introduction_phbox {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 10cqi 30cqi 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 5%;
  grid-template-areas: "ti-ph01 ti-ph01 ." "ti-ph01 ti-ph01 ti-ph03" ". ti-ph02 ti-ph03" ". ti-ph02 .";
}
@media screen and (min-width: 768px) {
  .top-introduction_phbox {
    grid-template-columns: 35cqi 1fr 35cqi;
    grid-template-rows: 40px auto 1fr;
    grid-template-areas: "ti-ph01 . ti-ph03" "ti-ph01 ti-ph02 ti-ph03" ". ti-ph02 ti-ph03";
  }
}
@media screen and (min-width: 1200px) {
  .top-introduction_phbox {
    display: block;
    position: static;
    padding: 0;
  }
}
.top-introduction_phbox div {
  --radius:15px;
  border-radius: var(--radius);
}
@media screen and (min-width: 768px) {
  .top-introduction_phbox div {
    --radius:30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-introduction_phbox div {
    position: absolute;
    z-index: 400;
  }
}
.top-introduction_phbox div span {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  z-index: 400;
}
@media screen and (min-width: 768px) {
  .top-introduction_phbox div span {
    border-width: 5px;
  }
}
.top-introduction_phbox div img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-introduction_ph01 {
  grid-area: ti-ph01;
}

.top-introduction_ph02 {
  grid-area: ti-ph02;
}

.top-introduction_ph03 {
  grid-area: ti-ph03;
}

div.top-introduction_ph01 {
  translate: 0 -15%;
}
@media screen and (min-width: 1200px) {
  div.top-introduction_ph01 {
    width: 20%;
    max-width: 530px;
    top: 22%;
    left: 0;
  }
}
@media screen and (min-width: 1600px) {
  div.top-introduction_ph01 {
    width: 23%;
  }
}
@media screen and (min-width: 1900px) {
  div.top-introduction_ph01 {
    width: 28%;
  }
}
div.top-introduction_ph01 span {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
@media screen and (min-width: 1200px) {
  div.top-introduction_ph01 span {
    aspect-ratio: 2/2.5;
  }
}
@media screen and (min-width: 1600px) {
  div.top-introduction_ph01 span {
    aspect-ratio: unset;
  }
}
div.top-introduction_ph01::after {
  content: "";
  background: url(../../img/top/top-ph01_obj.png) no-repeat center center/contain;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  translate: 0 50%;
  width: 110%;
  aspect-ratio: 614/517;
  z-index: 1;
}

@media screen and (min-width: 1200px) {
  div.top-introduction_ph02 {
    width: 17%;
    max-width: 355px;
    left: 5vw;
    top: 70%;
  }
}
@media screen and (min-width: 1600px) {
  div.top-introduction_ph02 {
    width: 19%;
    top: 65%;
    left: min(10vw, 180px);
  }
}

@media screen and (min-width: 1200px) {
  div.top-introduction_ph03 {
    width: 21%;
    max-width: 544px;
    right: 0;
    top: 50%;
  }
}
@media screen and (min-width: 1600px) {
  div.top-introduction_ph03 {
    width: 25%;
  }
}
@media screen and (min-width: 1900px) {
  div.top-introduction_ph03 {
    width: 29%;
    top: 45%;
  }
}
div.top-introduction_ph03 span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
@media screen and (min-width: 1200px) {
  div.top-introduction_ph03 span {
    aspect-ratio: 2/2.5;
  }
}
@media screen and (min-width: 1600px) {
  div.top-introduction_ph03 span {
    aspect-ratio: unset;
  }
}
div.top-introduction_ph03::after {
  content: "";
  background: url(../../img/top/top-ph03_obj.png) no-repeat center center/contain;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  translate: 0 50%;
  width: 115%;
  aspect-ratio: 614/517;
  z-index: 1;
}

.top-about {
  --section_bg:#fff;
}
.top-about.c-section > * {
  background: url(../../img/bg-white.png) repeat-y center top/100% auto;
}

.top-about_list {
  row-gap: 0;
}
@media screen and (min-width: 560px) {
  .top-about_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10%;
  }
}

@media screen and (min-width: 560px) {
  .top-aboutItem {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 15px;
    align-items: start;
  }
}
@media screen and (min-width: 1200px) {
  .top-aboutItem {
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-aboutItem:not(:first-of-type) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .top-aboutItem:nth-of-type(n+3) {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .top-aboutItem:nth-of-type(n+3) {
    margin-top: 90px;
  }
}

.top-aboutItem_img {
  border: 3px solid var(--color_yellow);
  border-radius: var(--kadomaru);
  overflow: hidden;
  aspect-ratio: 540/368;
}
.top-aboutItem_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-aboutItem_heading {
  text-align: center;
  color: var(--color_yellow);
  font-size: clamp(1.25rem, 1.034rem + 0.962vw, 1.875rem);
  line-height: 1.3;
  align-self: start;
}
@media screen and (max-width: 559px) {
  .top-aboutItem_heading {
    padding: 15px 0;
  }
}

.top-aboutItem_txt {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.8;
}

.top-news {
  background: var(--section_bg);
  --section_bg:var(--color_main);
}
.top-news .space--large {
  padding-bottom: calc(var(--padding-block) + var(--padding_ss));
}

.top-news_inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "tn-heading" "tn-list" "tn-btn";
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .top-news_inner {
    grid-template-columns: min(30%, 230px) 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 5%;
    grid-template-areas: "tn-heading tn-list" "tn-btn tn-list";
  }
}
@media screen and (min-width: 1200px) {
  .top-news_inner {
    column-gap: 7.5%;
  }
}

.top-news_heading {
  grid-area: tn-heading;
}

.top-news_list {
  grid-area: tn-list;
}

.top-news_btn {
  grid-area: tn-btn;
}

@media screen and (min-width: 560px) {
  .top-news_list {
    grid-template-columns: auto auto 1fr;
  }
}
@media screen and (min-width: 768px) {
  .top-news_list .news-list {
    grid-template-columns: auto 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .top-news_list .news-list {
    grid-template-columns: auto auto 1fr;
  }
}
@media screen and (min-width: 768px) {
  .top-news_list .news-listItem {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1200px) {
  .top-news_list .news-listItem {
    grid-column: span 3;
  }
}
@media screen and (min-width: 768px) {
  .top-news_list .news-listItem a {
    align-items: start;
    grid-template-rows: auto auto;
    grid-template-areas: "n-cate n-date" "n-title n-title";
  }
}
@media screen and (min-width: 1200px) {
  .top-news_list .news-listItem a {
    grid-template-rows: auto;
    grid-template-areas: "n-cate n-date n-title";
  }
}
.top-news_list .news-listItem_date {
  color: var(--color_accent);
}
.top-news_list .news-listItem_title {
  color: #fff;
  font-weight: 400;
}

/*=============================================================
  news.scss
==============================================================*/
.category-list {
  --category_color:var(--color_main);
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
@media screen and (min-width: 1200px) {
  .category-list {
    justify-content: center;
  }
}
.category-list a {
  display: block;
  min-width: 80px;
  padding: 10px 2.5cqi;
  background: #fff;
  text-align: center;
  border: 1px solid var(--color_txt);
  transition: var(--trans_speed) all;
  color: var(--color_txt);
  border-radius: 9999px;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
}
.category-list a:hover {
  background: color-mix(in srgb, var(--category_color) 5%, transparent);
  border-color: var(--category_color);
}
.category-list li.current-cat a {
  color: #fff;
  background: var(--category_color);
  border-color: var(--category_color);
}

.news-list {
  display: grid;
  grid-template-columns: auto 1fr;
  container-type: inline-size;
}
@media screen and (min-width: 560px) {
  .news-list {
    grid-template-columns: auto auto 1fr;
  }
}

.news-listItem {
  border-bottom: 2px dotted var(--color_border02);
  display: inherit;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
@media screen and (min-width: 560px) {
  .news-listItem {
    grid-column: span 3;
  }
}
.news-listItem a {
  display: inherit;
  grid-template-columns: subgrid;
  grid-template-rows: auto auto;
  grid-column: inherit;
  grid-template-areas: "n-cate n-date" "n-title n-title";
  column-gap: 3cqi;
  row-gap: 10px;
  line-height: 1.6;
  padding-block: 15px;
  position: relative;
}
@media screen and (min-width: 560px) {
  .news-listItem a {
    padding-block: 20px;
    grid-template-rows: auto;
    grid-template-areas: "n-cate n-date n-title";
    align-items: start;
  }
}
@media screen and (min-width: 1200px) {
  .news-listItem a {
    padding-block: 25px;
  }
}
.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-weight: bold;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  padding-top: 3px;
  color: var(--color_accent);
}
.news-listItem_category {
  --category_color:var(--color_main);
  position: relative;
}
.news-listItem_category span {
  display: block;
  border-radius: 3px;
  color: var(--color_yellow);
  padding: 3px 20px;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  font-weight: 700;
  background: var(--category_color);
  text-align: center;
  white-space: nowrap;
}
.news-listItem_title {
  transition: var(--trans_speed) all;
  color: var(--color_txt);
  font-weight: 500;
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  line-height: 1.3;
}
@media screen and (min-width: 1200px) {
  .news-listItem_title {
    padding-top: 3px;
  }
}
@media screen and (min-width: 960px) {
  .news-listItem:hover .news-listItem_title {
    color: var(--color_yellow);
  }
}

.news-entryData {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--color_border02);
  column-gap: 20px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news-entryData {
    row-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData {
    row-gap: 20px;
  }
}
.news-entryData_date {
  position: relative;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
}
.news-entryData_category {
  --category_color:var(--color_main);
  position: relative;
}
.news-entryData_category span {
  display: block;
  border-radius: 3px;
  color: #fff;
  padding: 5px 20px;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  font-weight: 700;
  background: var(--category_color);
  text-align: center;
  white-space: nowrap;
}
.news-entryData_title {
  width: 100%;
  font-family: var(--font_mincho);
  font-weight: 600;
  color: var(--color_main);
  font-size: clamp(1.375rem, 1.072rem + 1.346vw, 2.25rem);
  line-height: 1.3;
}
/*=============================================================
  notfound.scss
============================================================= */
.notfoundWrap {
  background: url(../../img/top/top-mainimg_sp.png) no-repeat center top, var(--color_bg02);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .notfoundWrap {
    background: url(../../img/top/top-mainimg.png) no-repeat, var(--color_bg02);
    background-size: 100% auto;
    background-position: center 15vh;
  }
}
@media screen and (min-width: 1200px) {
  .notfoundWrap {
    background-position: center 10vh;
  }
}

.notfoundHeading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 10vw;
}
@media screen and (min-width: 560px) {
  .notfoundHeading {
    font-size: clamp(3.125rem, 2.476rem + 2.885vw, 5rem);
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .notfoundHeading {
    margin-bottom: 60px;
  }
}
.notfoundHeading_main {
  color: var(--color_main);
}
.notfoundHeading_sub {
  margin-top: 10px;
  font-weight: bold;
  font-size: 36%;
}

.notfound {
  border-radius: var(--kadomaru);
  padding: min(10cqi, 60px) min(5cqi, 60px);
  background: #fff;
}
.notfound p {
  word-break: keep-all;
}

.notfound-btn {
  margin-top: min(2.5cqi, 60px);
}

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

/*=============================================================
  entry.scss
==============================================================*/
/* entryBody
-----------------------------*/
.entryBody {
  overflow: hidden;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 2;
}
.entryBody > *:first-child {
  margin-top: 0 !important;
}
.entryBody > *:last-child {
  margin-bottom: 0 !important;
}
.entryBody h2:not([class]) {
  color: var(--color_main);
  font-family: var(--font_mincho);
  padding-top: 80px;
  font-size: clamp(1.625rem, 1.279rem + 1.538vw, 2.625rem);
  line-height: 1.2;
  position: relative;
  text-align: center;
  width: fit-content;
  background: url(../../img/title-border.png) repeat-x center bottom;
  background-size: 15px;
  word-break: keep-all;
  padding-bottom: 20px;
  margin-inline: auto;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class]) {
    padding-top: 100px;
    background-size: auto;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class]) {
    padding-top: 130px;
    padding-bottom: 30px;
  }
}
.entryBody h2:not([class])::before {
  content: "";
  background: url(../../img/title-mark.png) no-repeat center center/contain;
  display: block;
  width: 90px;
  aspect-ratio: 159/106;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50%;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class])::before {
    width: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class])::before {
    width: 159px;
  }
}
.entryBody h2:not([class]) {
  margin-top: 100px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class]) {
    margin-top: 120px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class]) {
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
.entryBody h3:not([class]) {
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h3:not([class]) {
    margin-top: 100px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h3:not([class]) {
    margin-top: 120px;
    margin-bottom: 30px;
  }
}
.entryBody h4:not([class]) {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h4:not([class]) {
    margin-top: 80px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h4:not([class]) {
    margin-top: 100px;
    margin-bottom: 30px;
  }
}
.entryBody h5:not([class]) {
  margin-top: 50px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody h5:not([class]) {
    margin-top: 65px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h5:not([class]) {
    margin-top: 80px;
    margin-bottom: 20px;
  }
}
.entryBody h6:not([class]) {
  margin-top: 40px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody h6:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h6:not([class]) {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
.entryBody p:not([class]) + p:not([class]) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
}
.entryBody {
  /*
  &.txtbox p{
    margin-bottom: 0px;
  }
  &.txtbox p + p{
    margin-top:0px;
  }

  p strong{
  }

  p + div{
    margin-top: 30px;
    @include mq-up(xl) {
      margin-top: 40px;
    }
  }
  div{
    margin-bottom: 30px;
    @include mq-up(xl) {
      margin-bottom: 40px;
    }
  }
  */
}
.entryBody a:not([class]):not(.no-entryBody) {
  color: #1530A0;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .entryBody a:not([class]):not(.no-entryBody):hover {
    color: #2b51e6;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .entryBody a:not([class]):not(.no-entryBody)[href^=tel] {
    pointer-events: none;
    color: var(--color_txt);
    text-decoration: none;
  }
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"], .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"], .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
  padding-right: 15px;
  position: relative;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"], .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"], .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
    padding-right: 18px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"], .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"], .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
    padding-right: 20px;
  }
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"]::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--trans_speed) color;
}
.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:not([class]),
.entryBody table.e-table:not([class*=" "]) {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  width: 100%;
  margin: 30px 0;
  table-layout: fixed;
  background: #fff;
}
@media screen and (min-width: 1200px) {
  .entryBody table:not([class]),
  .entryBody table.e-table:not([class*=" "]) {
    margin: 40px 0;
  }
}
.entryBody table:not([class]) th,
.entryBody table:not([class]) td,
.entryBody table.e-table:not([class*=" "]) th,
.entryBody table.e-table:not([class*=" "]) td {
  font-weight: 500;
  border: 1px solid var(--color_border);
  padding: 10px;
  line-height: 1.3;
  font-size: inherit;
  vertical-align: top;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .entryBody table:not([class]) th,
  .entryBody table:not([class]) td,
  .entryBody table.e-table:not([class*=" "]) th,
  .entryBody table.e-table:not([class*=" "]) td {
    padding: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody table:not([class]) th,
  .entryBody table:not([class]) td,
  .entryBody table.e-table:not([class*=" "]) th,
  .entryBody table.e-table:not([class*=" "]) td {
    padding: 15px 20px;
  }
}
.entryBody table:not([class]) th,
.entryBody table.e-table:not([class*=" "]) th {
  background: var(--color_bg);
}
.entryBody table:not([class]) thead th,
.entryBody table.e-table:not([class*=" "]) thead th {
  background: var(--color_main);
  color: #fff;
  text-align: center;
  font-size: 100%;
  padding: 12px 10px;
}
@media screen and (min-width: 768px) {
  .entryBody table:not([class]) thead th,
  .entryBody table.e-table:not([class*=" "]) thead th {
    padding: 18px 15px;
    font-size: 105%;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody table:not([class]) thead th,
  .entryBody table.e-table:not([class*=" "]) thead th {
    padding: 20px;
  }
}
.entryBody ul:not(.no-entryBody):not([class]),
.entryBody ol:not(.no-entryBody):not([class]) {
  margin-block: 20px;
  padding-left: 1.5em;
}
.entryBody ul:not(.no-entryBody):not([class]) li,
.entryBody ol:not(.no-entryBody):not([class]) li {
  position: relative;
  margin-top: 10px;
  line-height: inherit;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    margin-top: 20px;
  }
}

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

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

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

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

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

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

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

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

.opa a:hover {
  opacity: 0.8;
}

.bold {
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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