@charset "UTF-8";
/* Scss Document */
:root {
  /* font-family -------------------------------------------------*/
  --font_base: "Noto Sans JP","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
  --font_eiji: "Lexend Exa", sans-serif;
  --font_mix: "Lexend Exa","Noto Sans JP",sans-serif;
  /* color -------------------------------------------------*/
  --color_txt: #222;
  --color_bg: #f0f0f0;
  --color_bg02: #dcf0f9;
  --color_warning: #CF1212;
  --color_main: #009af6;
  --color_border: #8a8184;
  --color_accent: #004ba0;
  --color_blue:#004ba0;
  --color_blue02:#007fdc;
  --color_mizu:#27aae5;
  --color_lightmizu:#b1e6ff;
  --color_twitter: #1DA1F2;
  --color_facebook: #1877f2;
  --color_line: #00b900;
  --color_youtube: #DA1725;
  --color_x: #0f1419;
  --color_insta: #e1306c;
  /* transition speed ------------------------------------------------- */
  --trans_speed: 0.3s;
  /* contents size ------------------------------------------------- */
  --contents_max: 1800px;
  --contents_wide: 1600px;
  --contents_lg: 1400px;
  --contents_base: 1200px;
  --contents_sm: 1000px;
  --contents_ss: 800px;
  /* padding -------------------------------------------------*/
  --padding_large: 180px;
  --padding_medium: 120px;
  --padding_small: 80px;
  --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 {
  /* text size -------------------------------------------------*/
  --base-font-size: 16;
  --rem: calc(1rem / var(--base-font-size));
  --fontSize_sm: 14;
  --fontSize_md: 16;
  --fontSize_lg: 18;
  /* 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 {
  /* full-bleed -------------------------------------------------*/
  --full-bleed: calc(50% - 50vw);
  /* kadomaru -------------------------------------------------*/
  --entry_kadomaru:10px;
  --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;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header_height) + 30px);
  overflow-x: clip;
}

body {
  line-height: 1;
  font-family: var(--font_base);
  color: var(--color_txt);
  position: relative;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-autospace: normal;
}
body.is-menuopen {
  overflow: hidden;
  height: 100%;
}

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

/*=============================================================
  parts/base.scss
==============================================================*/
/* base style
---------------------------------------------*/
[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-top: calc(var(--padding_large) / 2);
  padding-bottom: calc(var(--padding_large) / 2);
}
@media screen and (min-width: 768px) {
  .space--large {
    padding-top: calc(var(--padding_large) / 3 * 2);
    padding-bottom: calc(var(--padding_large) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--large {
    padding-top: var(--padding_large);
    padding-bottom: var(--padding_large);
  }
}

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

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

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

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

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

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

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

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

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

.c-bg_mizu {
  background: var(--color_bg02);
}

.c-bg_blue .s-section_heading [class*=c-heading] {
  --title_main_color: #fff;
  --title_sub_color: #fff;
  --title_main_line: url(../../img/line-white.png);
  --title_main_mark: url(../../img/ico-mark-white.png);
  --title_main_mark02: url(../../img/ico-mark02-white.png);
}
.c-bg_blue {
  background: var(--color_main);
}

.c-bg_grad .s-section_heading [class*=c-heading] {
  --title_main_color: #fff;
  --title_sub_color: #fff;
  --title_main_line: url(../../img/line-white.png);
  --title_main_mark: url(../../img/ico-mark-white.png);
  --title_main_mark02: url(../../img/ico-mark02-white.png);
}
.c-bg_grad {
  background: url(../../img/bg01.png) no-repeat top left/cover;
}

/*=============================================================
  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);
  }
}
.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: none;
}
.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%;
  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.788rem + 0.385vw, 1.125rem);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .txtbox p,
  .txt {
    line-height: 2;
  }
}
@media screen and (min-width: 1200px) {
  .txtbox p,
  .txt {
    line-height: 2.2;
  }
}

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

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

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

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

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

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

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

.c-leadtxt {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 2.2;
  font-weight: 500;
  width: fit-content;
  margin-inline: auto;
  max-width: 80%;
  margin-top: 3rem;
}
@media screen and (max-width: 1199px) {
  .c-leadtxt {
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .c-leadtxt {
    max-width: 100%;
  }
}

/*=============================================================
  title.scss
==============================================================*/
.c-headingGroup01 {
  --title_main_color: var(--color_blue);
  --title_sub_color: var(--color_main);
  --title_main_line: url(../../img/line.png);
  --title_main_mark: url(../../img/ico-mark.png);
}
.c-headingGroup01.-white {
  --title_main_color: #fff;
  --title_sub_color: #fff;
  --title_main_line: url(../../img/line-white.png);
  --title_main_mark: url(../../img/ico-mark-white.png);
}
.c-headingGroup01 {
  background: var(--title_main_line) repeat-x left bottom;
  background-size: auto 8px;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup01 {
    background-size: auto;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup01 {
    padding-bottom: 50px;
  }
}
.c-headingGroup01.-center > * {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.c-headingGroup01_main {
  color: var(--title_main_color);
  font-size: clamp(1.5rem, 1.154rem + 1.538vw, 2.5rem);
  line-height: 1.2;
  position: relative;
  text-align: center;
  width: fit-content;
  word-break: keep-all;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup01_main {
    row-gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup01_main {
    row-gap: 40px;
  }
}
.c-headingGroup01_main::before {
  content: "";
  background: var(--title_main_mark) no-repeat center center/contain;
  display: block;
  width: min(6.5cqw, 40px);
  aspect-ratio: 61/78;
}

.c-headingGroup01_sub {
  font-family: var(--font_eiji);
  font-weight: 700;
  letter-spacing: 0.05rem;
  color: var(--title_sub_color);
  font-size: clamp(1rem, 0.784rem + 0.962vw, 1.625rem);
  text-align: center;
}

.c-headingGroup01_main + .c-headingGroup01_sub {
  margin-top: min(3cqi, 20px);
}

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

.c-headingGroup02 {
  --heading_main_color:var(--color_blue);
  --heading_sub_color:var(--color_main);
  --title_main_mark02: url(../../img/ico-mark02.png);
}
.c-headingGroup02.-white {
  --heading_main_color:#fff;
  --heading_sub_color:#fff;
  --title_main_mark02: url(../../img/ico-mark02--white.png);
}
.c-headingGroup02.-center > * {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.c-headingGroup02_main {
  font-size: clamp(1.625rem, 1.322rem + 1.346vw, 2.5rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--heading_main_color);
}

.c-headingGroup02_sub {
  font-size: clamp(1rem, 0.784rem + 0.962vw, 1.625rem);
  padding-left: 25px;
  position: relative;
  font-family: var(--font_eiji);
  font-weight: 500;
  color: var(--heading_sub_color);
  margin-top: 10px;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02_sub {
    margin-top: 20px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02_sub {
    padding-left: 40px;
  }
}
.c-headingGroup02_sub::before {
  content: "";
  aspect-ratio: 1;
  width: 15px;
  max-width: 24px;
  display: block;
  background: var(--title_main_mark02) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02_sub::before {
    width: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02_sub::before {
    width: 24px;
  }
}

.c-headingGroup02.-small .c-headingGroup02_main {
  font-size: clamp(1.375rem, 1.115rem + 1.154vw, 2.125rem);
}
.c-headingGroup02.-small .c-headingGroup02_sub {
  font-size: clamp(0.75rem, 0.577rem + 0.769vw, 1.25rem);
  margin-top: 5px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02.-small .c-headingGroup02_sub {
    margin-top: 10px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02.-small .c-headingGroup02_sub {
    padding-left: 30px;
  }
}

.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;
  }
}

.entryBody h2:not([class]) {
  color: var(--title_main_color);
  font-size: clamp(1.5rem, 1.154rem + 1.538vw, 2.5rem);
  line-height: 1.2;
  position: relative;
  text-align: center;
  width: fit-content;
  background: url(../../img/line.png) repeat-x left bottom;
  background-size: auto 8px;
  word-break: keep-all;
  padding-bottom: 20px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class]) {
    row-gap: 30px;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class]) {
    row-gap: 40px;
    padding-bottom: 30px;
    background-size: auto;
  }
}
.entryBody h2:not([class])::before {
  content: "";
  background: url(../../img/ico-mark.png) no-repeat center center/contain;
  display: block;
  width: min(6.5cqw, 40px);
  aspect-ratio: 61/78;
}

.c-heading_lv3,
.mce-content-body h3:not([class]),
.entryBody h3:not([class]) {
  font-size: clamp(1.375rem, 1.115rem + 1.154vw, 2.125rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color_blue02);
  padding-bottom: 10px;
  border-top: 2px dotted var(--color_main);
  border-bottom: 2px dotted var(--color_main);
  padding-block: min(1cqw, 15px);
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 10px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .c-heading_lv3,
  .mce-content-body h3:not([class]),
  .entryBody h3:not([class]) {
    padding-bottom: 15px;
    grid-template-columns: 30px 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading_lv3,
  .mce-content-body h3:not([class]),
  .entryBody h3:not([class]) {
    grid-template-columns: 34px 1fr;
    column-gap: 20px;
  }
}
.c-heading_lv3::before,
.mce-content-body h3:not([class])::before,
.entryBody h3:not([class])::before {
  content: "";
  background: url(../../img/ico-mark02.png) no-repeat center center/contain;
  aspect-ratio: 1;
  margin-top: 0.5cqw;
}

.c-heading_lv4,
.mce-content-body h4:not([class]),
.entryBody h4:not([class]) {
  font-size: clamp(1.25rem, 1.034rem + 0.962vw, 1.875rem);
  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.118rem + 0.865vw, 1.875rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--color_blue);
  border-left: 4px solid var(--color_main);
  padding-left: min(3cqi, 25px);
  padding-block: 5px;
}
@media screen and (min-width: 768px) {
  .c-heading_lv5,
  .mce-content-body h5:not([class]),
  .entryBody h5:not([class]) {
    border-width: 7px;
    padding-block: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading_lv5,
  .mce-content-body h5:not([class]),
  .entryBody h5:not([class]) {
    padding-block: 15px;
  }
}

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

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

.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-btn01 {
  --btn01_color:var(--color_main);
  width: fit-content;
  display: block grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-width: 280px;
  max-width: 450px;
  border: 1px solid var(--btn01_color);
  border-radius: 9999px;
  padding: min(3vw, 20px);
  color: var(--btn01_color);
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  font-weight: 700;
  font-family: var(--font_mix);
  line-height: 1.1;
  transition: var(--trans_speed) background;
}
.c-btn01::before {
  content: "";
}
.c-btn01 span {
  text-align: right;
  padding-bottom: 2px;
}
.c-btn01 .c-icoSvg {
  fill: var(--btn01_color);
  width: clamp(1rem, 0.893rem + 0.476vw, 1.25rem);
}
@media (any-hover: hover) {
  .c-btn01:hover {
    background: color-mix(in srgb, var(--btn01_color) 15%, transparent);
  }
}
.c-btn01.-white {
  --btn01_color:#fff;
}
.c-btn01.-center {
  margin-inline: auto;
}

.c-locationBtn {
  display: block;
  background: #fff;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  color: var(--color_mizu);
  font-size: clamp(1.25rem, 0.904rem + 1.538vw, 2.25rem);
  font-weight: bold;
  display: grid;
  align-items: center;
  text-align: center;
  grid-template-columns: min(13%, 62px) auto min(5%, 26px);
  column-gap: 10px;
  border-radius: 9999px;
  position: relative;
  width: 90%;
  max-width: 490px;
  box-shadow: 0px 0px 10px 2.73px rgba(0, 66, 140, 0.18);
  padding: min(4cqw, 30px) min(8cqw, 30px);
  transition: var(--trans_speed) background;
}
@media screen and (min-width: 768px) {
  .c-locationBtn {
    box-shadow: 0px 0px 14px 2.73px rgba(0, 66, 140, 0.18);
  }
}
@media screen and (min-width: 1200px) {
  .c-locationBtn {
    box-shadow: 0px 0px 18px 2.73px rgba(0, 66, 140, 0.18);
  }
}
.c-locationBtn::before {
  content: "";
  background: url(../../img/ico-shower.png) no-repeat center/contain;
  aspect-ratio: 62/65;
  max-width: 62px;
  display: block;
}
.c-locationBtn svg.c-icoSvg {
  fill: currentColor;
}
.c-locationBtn:hover {
  background: var(--color_bg02);
}
.c-locationBtn.-center {
  margin-inline: auto;
}

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

.form70 {
  width: 70px;
}

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

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

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

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

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

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

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

.formmax {
  width: 100%;
}

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

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

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

input[type=text],
input[type=tel],
input[type=email],
textarea {
  border: 1px solid #ccc;
  padding: 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;
  padding-left: 15px;
}
@media screen and (min-width: 960px) {
  .c-notesList li {
    padding-left: 20px;
  }
}
.c-notesList li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

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

.loading_logo {
  position: absolute;
  left: 50%;
  top: 25%;
  translate: -50% -50%;
  max-width: 400px;
  width: 40%;
}

.loading_inner {
  --wave_height:40px;
}
@media screen and (min-width: 768px) {
  .loading_inner {
    --wave_height:70px;
  }
}
@media screen and (min-width: 1200px) {
  .loading_inner {
    --wave_height:100px;
  }
}
.loading_inner {
  animation: loading 3s cubic-bezier(0.55, 0.5, 0.45, 0.5) both;
  width: 100%;
  height: 30vh;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent var(--wave_height), var(--color_main) var(--wave_height));
}

@keyframes loading {
  0% {
    height: 30vh;
  }
  20% {
    height: 40vh;
  }
  100% {
    height: calc(100vh + var(--wave_height));
  }
}
.wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: scaleX(1) rotate(180deg);
}
.wave svg {
  display: block;
  width: 100%;
  height: var(--wave_height);
}
.wave .wave-animation > use {
  fill: var(--color_main);
  animation: wave-move 10s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.wave .wave-animation > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 10s;
}
.wave .wave-animation > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 7s;
}
.wave .wave-animation > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 5s;
}

@keyframes wave-move {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
.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;
  }
}

/*=============================================================
  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: color-mix(in srgb, var(--color_main) 75%, transparent);
  }
}

/*=============================================================
  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_border);
  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 {
  border-radius: var(--entry_kadomaru);
  overflow: hidden;
  text-align: center;
}
.c-card_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.-border-round .c-card_img, .-border .c-card_img {
  border-radius: 0;
}

.c-card_inner {
  margin-top: 2cqi;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-card_inner {
    margin-top: 1cqi;
    line-height: 1.6;
  }
}
.c-card_inner > *:first-child {
  margin-top: 0;
}
.c-card_inner h2, .c-card_inner h3, .c-card_inner h4, .c-card_inner h5, .c-card_inner h6 {
  scale: 0.8;
}
.c-card_inner .entryBody {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-card_inner .entryBody {
    line-height: 1.6;
  }
}
.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-anchorlink {
  padding-top: var(--header_height);
  margin-top: -var(--header_height);
}
@media screen and (min-width: 960px) {
  .c-anchorlink {
    padding-top: var(--header_height_lg);
    margin-top: -var(--header_height_lg);
  }
}

.c-hoverimg img {
  transition: 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%;
  }
}
/*=============================================================
  aosCustomize.scss
==============================================================*/
[data-aos=fade-up] {
  transform: translate3d(0, 20px, 0);
}

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

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

/*=============================================================
  header.scss
=============================================================*/
.l-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  height: var(--header_height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--wrap-padding);
  z-index: 998;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.header-logo {
  width: 180px;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 25%;
    max-width: 250px;
  }
}

@media screen and (max-width: 959px) {
  .l-headerNavi {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: url(../../img/bg01.png) no-repeat center/cover;
    z-index: 998;
  }
}
@media screen and (min-width: 960px) {
  .l-headerNavi {
    display: block;
  }
}

@media screen and (max-width: 959px) {
  .header-menu {
    width: min(80vw, 500px);
    margin-left: auto;
    overflow-y: scroll;
    height: 100%;
    padding: calc(var(--header_height) + 20px) var(--wrap-padding) var(--header_height);
  }
}
@media screen and (max-width: 959px) {
  .header-menu::before {
    content: "";
    width: calc(100% - min(80vw, 500px));
    height: 100%;
    background: url(../../img/menu-bg.jpg) no-repeat center/cover;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
  }
}

@media screen and (max-width: 959px) {
  .header-navi {
    padding: 8cqw;
    background: #fff;
    border-radius: var(--kadomaru);
  }
}
@media screen and (min-width: 960px) {
  .header-navi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: min(2cqw, 50px);
  }
}
.header-navi li + li {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .header-navi li + li {
    margin-top: 0;
  }
}
.header-navi a {
  display: block;
  padding: 5px 0;
  color: var(--color_mizu);
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  transition: var(--trans_speed) color;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .header-navi a {
    font-size: clamp(0.9375rem, 0.375rem + 0.75vw, 1.125rem);
  }
}
.header-navi a::before {
  content: "";
  display: block;
  width: min(1cqw, 16px);
  aspect-ratio: 25/32;
  background: url(../../img/ico-mark.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -100%;
  transition: var(--trans_speed) opacity;
  opacity: 0;
}
@media (any-hover: hover) {
  .header-navi a:hover {
    color: var(--color_blue02);
  }
  .header-navi a:hover::before {
    opacity: 1;
  }
}

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

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

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

  @include mq-up(lg){		
  }

}

@keyframes anime-scrollMenu{
  from {
		opacity: 0;
		transform: translateY(-100px);
  }
  to {
		opacity: 1;
		transform: translateY(0);
  }
}
*/
/*=============================================================
  navi.scss
=============================================================*/
/* 
// スマホでメニューが表示されたときに背景のコンテンツがスクロールしないように
html{
  overflow: auto;
  height: 100%;
}
body.is-menuopen{
  overflow: hidden;
  height: 100%;
}


// スマホで表示されたメニューのスクロール
.navi_menu{
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
*/
/*=============================================================
  naviBtn.scss
==============================================================*/
.naviBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  aspect-ratio: 1;
  margin-left: auto;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .naviBtn {
    --header_height: 70px;
  }
}
@media screen and (min-width: 960px) {
  .naviBtn {
    display: none;
  }
}
.naviBtn button {
  border: none;
  aspect-ratio: 1;
  height: calc(100% - 20px);
  translate: 10px;
  background: none;
  position: relative;
  transition: 0.4s all;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .naviBtn button {
    height: calc(var(--header_height) - 20px);
  }
}
.naviBtn p {
  width: calc(var(--header_height) / 2);
  aspect-ratio: 1/0.6;
  position: relative;
}
.naviBtn p::after {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background: var(--color_mizu);
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: 0.5s all;
  transform-origin: center;
}
.naviBtn p span::before, .naviBtn p span::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  transition: 0.5s all;
  height: 2px;
  background: var(--color_mizu);
  transform-origin: center;
}
.naviBtn p span::before {
  top: 0;
}
.naviBtn p span::after {
  bottom: 0;
  width: 60%;
}
.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(9px) rotate(-45deg);
  background: #fff;
}
.is-menuopen button span::after {
  transform: translateY(-9px) rotate(45deg);
  background: #fff;
  width: 100%;
}

/*=============================================================
  footer.scss
=============================================================*/
.l-footerPrice {
  background: url(../../img/price-bg.jpg) no-repeat center center/cover;
  padding-inline: var(--wrap-padding);
}

.footer-price {
  color: var(--color_main);
  font-weight: 700;
}
@media screen and (min-width: 560px) {
  .footer-price {
    display: flex;
    align-items: center;
    column-gap: 3%;
    max-width: var(--contents_base);
    margin: 0 auto;
  }
}

.footer-price_img {
  border-radius: 9999px;
  overflow: hidden;
  aspect-ratio: 450/278;
  width: 80%;
  margin: 0 auto 40px auto;
}
@media screen and (min-width: 560px) {
  .footer-price_img {
    width: 43cqw;
    margin-left: var(--full-bleed);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    aspect-ratio: unset;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer-price_img {
    border-radius: 9999px;
    width: 45%;
    margin: 0;
    aspect-ratio: 450/278;
  }
}
.footer-price_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 560px) {
  .footer-price_body {
    flex: 1;
  }
}

.footer-price_title {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding: 0 15px;
  margin-bottom: 20px;
  font-size: 1.75rem;
}
@media screen and (min-width: 560px) {
  .footer-price_title {
    font-size: clamp(1.75rem, 1.212rem + 1.538vw, 2.75rem);
    margin-top: 0;
  }
}
.footer-price_title::before, .footer-price_title::after {
  content: "";
  width: 1px;
  height: 110%;
  background: currentColor;
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  transform-origin: center;
}
.footer-price_title::before {
  left: 0;
  rotate: -45deg;
}
.footer-price_title::after {
  right: 0;
  rotate: 45deg;
}

.footer-price_price {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.footer-price_time {
  display: inline-block;
  background: var(--color_main);
  border-radius: 15px;
  padding: 10px 20px;
  color: #fff;
  font-size: 1.25rem;
}
@media screen and (min-width: 560px) {
  .footer-price_time {
    font-size: clamp(1.125rem, 0.519rem + 1.731vw, 2.25rem);
    padding: 10px min(2cqw, 20px);
  }
}
.footer-price_time strong {
  font-size: 166%;
  font-weight: 600;
  font-family: var(--font_mix);
}

.footer-price_amount {
  display: inline grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: end;
  font-size: 1.875rem;
}
@media screen and (min-width: 560px) {
  .footer-price_amount {
    font-size: clamp(1.875rem, 1.269rem + 1.731vw, 3rem);
  }
}
.footer-price_amount strong {
  grid-column: 1/2;
  grid-row: 1/3;
  font-size: 200%;
  font-weight: 600;
  font-family: var(--font_mix);
  line-height: 0.75;
}
.footer-price_amount span {
  grid-column: 2/3;
  grid-row: 2/3;
  text-align: center;
}
.footer-price_amount small {
  font-size: 33%;
  grid-column: 2/3;
  grid-row: 1/2;
  font-style: normal;
  font-weight: 500;
  text-align: center;
}

.footer-price_note {
  color: var(--color_blue);
  text-align: center;
  margin-top: 20px;
  font-size: 0.75rem;
}
@media screen and (min-width: 560px) {
  .footer-price_note {
    font-size: clamp(0.625rem, 0.423rem + 0.577vw, 1rem);
  }
}
@media screen and (min-width: 768px) {
  .footer-price_note {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-price_note {
    margin-top: 35px;
  }
}

.l-footerLocation {
  background: var(--color_blue);
  color: #fff;
}

@media screen and (min-width: 768px) {
  .footer-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 5%;
  }
}

.footer-location_text {
  text-align: center;
  font-size: clamp(1.25rem, 1.034rem + 0.962vw, 1.875rem);
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer-location_text {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-location_btn {
    flex: 1;
  }
}
.footer-location_btn .c-locationBtn {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer-location_btn .c-locationBtn {
    margin-right: 0;
  }
}

.l-footer_inner {
  color: var(--color_main);
  display: grid;
  grid-template-columns: 1fr min(50%, 250px) 1fr;
  grid-template-areas: ". f-logo ." "f-navi f-navi f-navi" "f-copy f-copy f-copy";
  justify-content: center;
  row-gap: 20px;
}
@media screen and (min-width: 560px) {
  .l-footer_inner {
    grid-template-columns: min(25cqw, 250px) 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "f-logo f-navi" "f-logo f-copy";
    column-gap: 5%;
    row-gap: 4cqw;
  }
}

.footer-logo {
  grid-area: f-logo;
}

.footer-navi {
  grid-area: f-navi;
}

.footer-copyright {
  grid-area: f-copy;
}

.footer-navi {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 560px) {
  .footer-navi {
    justify-content: flex-end;
  }
}
.footer-navi li {
  padding-inline: min(3cqw, 25px);
}
@media screen and (min-width: 560px) {
  .footer-navi li {
    padding-inline: min(2cqw, 25px);
  }
}
.footer-navi li:not(:last-of-type) {
  border-right: 1px solid currentColor;
}
.footer-navi a {
  display: block;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  line-height: 1;
  color: currentColor;
  font-weight: 500;
  position: relative;
}
.footer-navi a::before {
  content: "";
  background: currentColor;
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  opacity: 0;
  transition: var(--trans_speed) opacity;
}
@media (any-hover: hover) {
  .footer-navi a:hover::before {
    opacity: 1;
  }
}

.footer-copyright {
  font-weight: bold;
  text-align: center;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  font-family: var(--font_eiji);
}
@media screen and (min-width: 560px) {
  .footer-copyright {
    text-align: right;
  }
}

/*=============================================================
  main.scss
=============================================================*/
.l-wrapper {
  container-type: inline-size;
  padding-top: var(--header_height);
  position: relative;
}

#home .l-contents {
  background: url(../../img/top/top-bg01.jpg) repeat-y top center/100% auto;
}

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

/*=============================================================
  pageHeading.scss
==============================================================*/
.l-pageHeadingWrap {
  --pageHeading_h:180px;
}
@media screen and (min-width: 768px) {
  .l-pageHeadingWrap {
    --pageHeading_h:300px;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeadingWrap {
    --pageHeading_h:440px;
  }
}

.l-pageHeadingWrap {
  background: url(../../img/inner/title-bg.jpg) no-repeat top left/cover;
  height: var(--pageHeading_h);
  color: #fff;
  display: flex;
  align-items: center;
}

.l-pageHeading_inner {
  margin-right: var(--full-bleed);
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-pageHeading_inner {
    justify-content: space-between;
  }
}

.l-pageHeading_img {
  display: none;
  height: var(--pageHeading_h);
}
@media screen and (min-width: 768px) {
  .l-pageHeading_img {
    display: block;
    width: 55%;
    border-radius: 9999px 0 0 9999px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeading_img {
    width: 66%;
  }
}
.l-pageHeading_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-pageHeading_title {
  width: 70%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-pageHeading_title {
    width: 30%;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeading_title {
    width: 28%;
  }
}
.l-pageHeading_title::after {
  content: "";
  background: url(../../img/inner/title-icon.png) no-repeat center center/contain;
  width: 80px;
  max-width: 152px;
  aspect-ratio: 152/108;
  position: absolute;
  right: 0;
  top: 0;
  translate: 50% -80%;
}
@media screen and (min-width: 768px) {
  .l-pageHeading_title::after {
    width: 30%;
  }
}

.l-pageHeading_main {
  font-size: clamp(1.5rem, 0.847rem + 2.903vw, 3.75rem);
  line-height: 1.3;
  font-weight: 700;
}

.l-pageHeading_sub {
  font-family: var(--font_eiji);
  line-height: 1.2;
  margin-top: clamp(10px, 1cqw, 20px);
  padding-top: clamp(10px, 1cqw, 20px);
  border-top: 2px solid #fff;
  font-size: clamp(1rem, 0.827rem + 0.769vw, 1.5rem);
  font-weight: 500;
  text-transform: uppercase;
}

/*=============================================================
  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;
  column-gap: 1%;
}
.pagination li {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  color: var(--color_blue02);
  text-decoration: none;
}
.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;
  border-radius: 50%;
  border: 1px solid var(--color_blue02);
  color: var(--color_blue02);
  font-family: var(--font_eiji);
  font-weight: 700;
}
@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: color-mix(in srgb, var(--color_blue02) 10%, transparent);
  }
}
.pagination span.current {
  color: #fff;
  background: var(--color_blue02);
}
.pagination span.dots {
  border: unset;
}
.pagination svg {
  width: 18px;
  fill: currentColor;
}

/* entryNavi
---------------------------------------------*/
.entryNavi {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 5%;
  justify-content: space-between;
}
@media screen and (min-width: 1200px) {
  .entryNavi {
    column-gap: 10%;
  }
}
.entryNavi p {
  position: relative;
}
.entryNavi a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: var(--color_txt);
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  font-family: var(--font_mix);
  line-height: 1.3;
  text-align: center;
  border-radius: 10px;
  transition: var(--trans_speed) all;
}
.entryNavi_prev {
  grid-area: p-prev;
}
.entryNavi_next {
  grid-area: p-next;
}
.entryNavi_prev, .entryNavi_next {
  color: var(--color_txt);
}
.entryNavi_prev a, .entryNavi_next a {
  display: inline-flex;
  justify-content: center;
  column-gap: 5px;
}
.entryNavi_prev a svg, .entryNavi_next a svg {
  width: min(5cqw, 12px);
  fill: var(--color_main);
}
@media screen and (min-width: 960px) {
  .entryNavi_prev a:hover, .entryNavi_next a:hover {
    color: var(--color_main);
  }
}
.entryNavi_back {
  grid-area: p-list;
}
.entryNavi_back a {
  padding: 10px 15px;
}
@media screen and (min-width: 960px) {
  .entryNavi_back a:hover {
    color: #fff;
    background: var(--color_main);
  }
}

/*=============================================================
  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.788rem + 0.385vw, 1.125rem);
  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: #fff;
  border-radius: 20px;
  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: 90px min(7.14%, 100px);
  }
}

/*=============================================================
  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.62rem + 0.577vw, 1.125rem);
  font-weight: 500;
  padding: 0.5em;
  color: #fff;
  line-height: 1.2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}
@media screen and (min-width: 768px) {
  .s-gallery_caption {
    padding: 20px;
  }
}

/*=============================================================
  section / introduction.scss
=============================================================*/
.s-introduction {
  display: grid;
  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: var(--full-bleed);
    grid-template-columns: 50vw 1fr;
    grid-template-areas: "i-img i-inner";
  }
}
@media screen and (min-width: 768px) {
  .s-introduction.-reverse {
    margin-right: var(--full-bleed);
    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: var(--full-bleed);
}
@media screen and (min-width: 768px) {
  .s-introduction_img {
    margin-inline: 0;
  }
}
.s-introduction_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.s-flow_section {
  display: flex;
  align-items: flex-start;
  gap: 0 5%;
  width: 100%;
  background-color: var(--flow-bg);
  border: 1px solid var(--color_border);
  border-radius: var(--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-family: var(--font_eiji);
  font-weight: 600;
  position: relative;
  line-height: 1;
  margin-bottom: 15px;
  background: var(--color_main);
  color: #fff;
  padding: 6px 20px 6px 0;
  border-radius: 0 9999px 9999px 0;
}

.s-flow_num::before {
  content: "";
  display: block;
  width: calc(min(4vw, 3em) + 20px);
  height: 100%;
  background: var(--color_main);
  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-family: var(--font_eiji);
  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;
    margin-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: 1px solid var(--color_border);
  position: relative;
  display: block;
  padding: min(6vw, 2.5em) min(5vw, 3em);
}
@media screen and (min-width: 768px) {
  .s-feature_section {
    display: flex;
    align-items: flex-start;
    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: 0;
  }
}

.-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(2.25rem, 1.514rem + 3.269vw, 4.375rem);
  aspect-ratio: 1;
  width: 25%;
  max-width: 100px;
  border-radius: 50%;
  font-family: var(--font_eiji);
  font-weight: 500;
  background: var(--color_blue02);
  color: #fff;
  pointer-events: none;
  line-height: 1;
  translate: 10% -35%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .-numbering .s-feature_section::before {
    left: auto;
    translate: -25% -35%;
    max-width: 120px;
  }
}

.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;
    translate: 25% -35%;
  }
}

/*=============================================================
  section / s-contents-list.scss
==============================================================*/
.s-contents-listItem {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .s-contents-listItem {
    grid-template-rows: auto;
    grid-template-columns: 50% 1fr;
    column-gap: 5%;
    justify-content: space-between;
    align-items: end;
  }
}
.s-contents-listItem + .s-contents-listItem {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .s-contents-listItem + .s-contents-listItem {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .s-contents-listItem + .s-contents-listItem {
    margin-top: 60px;
  }
}
.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 {
  border-radius: var(--entry_kadomaru);
  overflow: hidden;
}
.s-contents-listItem_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.s-contents-listItem_img a {
  display: block;
}

.s-contents-listItem_text {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  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;
  }
}
.-grid-sub .c-gridItem {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
}

.s-contents-navi a {
  display: inherit;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  border: 1px solid var(--color_lightmizu);
  border-radius: var(--kadomaru);
  background: #fff;
}
@media (any-hover: hover) {
  .s-contents-navi a:hover .s-contents-navi_img::after {
    opacity: 0.5;
  }
}

.s-contents-navi_img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 360/230;
}
.s-contents-navi_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-contents-navi_title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 15px;
  margin-top: 15px;
}
@media screen and (min-width: 1200px) {
  .s-contents-navi_title {
    padding-inline: 25px;
  }
}
.s-contents-navi_title span {
  display: inline-block;
  color: var(--color_blue);
  font-size: clamp(1.25rem, 1.177rem + 0.323vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 15px;
  background: url(../../img/line.png) no-repeat left bottom;
  background-size: auto 8px;
}
@media screen and (min-width: 1200px) {
  .s-contents-navi_title span {
    background-size: auto;
    padding-bottom: 20px;
  }
}

.s-contents-navi_text {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.6;
  padding-block: 20px;
  padding-inline: 15px;
}
@media screen and (min-width: 1200px) {
  .s-contents-navi_text {
    padding-block: 30px;
    padding-inline: 25px;
  }
}

/*=============================================================
  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: 40px 1fr;
  align-items: start;
  column-gap: var(--faq-padding);
  padding-block: var(--faq-padding);
}
.s-faq_heading::before {
  content: "Q";
  background: var(--color_main);
  color: #fff;
  font-family: var(--font_eiji);
  font-weight: 700;
  border-radius: 50%;
  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: 40px 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: 40px 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-family: var(--font_eiji);
  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
=============================================================*/
#home .l-contents {
  background: url(../../img/top/top-bg01.jpg) repeat-y center top/100% auto;
}

.top-mainVisual {
  --img_height: 38vh;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-mainVisual {
    --img_height: 50vh;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual {
    --img_height: calc(100vh - var(--header_height));
  }
}

.top-mainVisual {
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: var(--img_height) auto auto;
  grid-template-areas: "mv-img" "mv-contents" "mv-btn";
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .top-mainVisual {
    grid-template-columns: minmax(0, 1fr) 50%;
    grid-template-rows: var(--img_height) auto;
    grid-template-areas: "mv-contents mv-img" "mv-btn mv-btn";
    row-gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual {
    grid-template-columns: minmax(0, 1fr) 50%;
    grid-template-rows: auto 1fr;
    grid-template-areas: "mv-contents mv-img" "mv-btn mv-img";
    height: var(--img_height);
  }
}
@media screen and (min-width: 1600px) {
  .top-mainVisual {
    grid-template-columns: 2% minmax(0, 1fr) 58%;
    grid-template-areas: ". mv-contents mv-img" ". mv-btn mv-img";
  }
}

.top-mainVisual_content {
  grid-area: mv-contents;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_content {
    align-self: center;
  }
}

.top-mainVisual_img {
  grid-area: mv-img;
}

.top-mainVisual_btn {
  grid-area: mv-btn;
}

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

.top-mainVisual_copy {
  font-size: clamp(2rem, 1.469rem + 2.361vw, 4.125rem);
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_copy {
    font-size: clamp(2.25rem, 0.855rem + 2.907vw, 4.125rem);
    white-space: nowrap;
    line-height: 1.4;
  }
}

.top-mainVisual_copy02 {
  font-size: clamp(1.125rem, 0.938rem + 0.833vw, 1.875rem);
  line-height: 1.5;
  font-weight: 700;
}
.top-mainVisual_copy02 span {
  display: inline-block;
  padding-bottom: 3px;
}
.top-mainVisual_copy02 span:not(:last-child) {
  border-bottom: 2px solid #fff;
}

.top-price {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-block: 30px 20px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .top-price {
    justify-content: start;
    margin-block: 40px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-price {
    margin-block: 40px 30px;
  }
}

.top-price_time {
  display: inline-block;
  background: var(--color_main);
  border-radius: 15px;
  padding: 10px 20px;
  color: #fff;
  font-size: 1.375rem;
  border: 1px solid #fff;
}
@media screen and (min-width: 560px) {
  .top-price_time {
    font-size: clamp(1.125rem, 0.519rem + 1.731vw, 2.25rem);
    padding: 10px min(2cqw, 20px);
  }
}
.top-price_time strong {
  font-size: 166%;
  font-weight: 600;
  font-family: var(--font_mix);
}

.top-price_amount {
  display: inline grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: end;
  font-size: 2.125rem;
}
@media screen and (min-width: 560px) {
  .top-price_amount {
    font-size: clamp(1.875rem, 1.269rem + 1.731vw, 3rem);
  }
}
.top-price_amount strong {
  grid-column: 1/2;
  grid-row: 1/3;
  font-size: 200%;
  font-weight: 600;
  font-family: var(--font_mix);
  line-height: 0.75;
}
.top-price_amount span {
  grid-column: 2/3;
  grid-row: 2/3;
  text-align: center;
}
.top-price_amount small {
  font-size: 33%;
  grid-column: 2/3;
  grid-row: 1/2;
  font-style: normal;
  font-weight: 500;
  text-align: center;
}

.top-mainVisual_img {
  position: relative;
  margin-right: var(--full-bleed);
  container-type: inline-size;
}
@media screen and (min-width: 1600px) {
  .top-mainVisual_img {
    margin-right: 0;
  }
}
.top-mainVisual_img::before {
  content: "";
  background: url(../../img/top/top-promo_txt.png) no-repeat center/contain;
  aspect-ratio: 185/142;
  display: block;
  width: 90px;
  max-width: 185px;
  position: absolute;
  left: 0;
  top: 0;
  translate: 10% -30%;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_img::before {
    width: 110px;
    translate: 13% -30%;
  }
}
@media screen and (min-width: 1600px) {
  .top-mainVisual_img::before {
    width: 185px;
    translate: 0% -25%;
  }
}

.top-mainVisual_slide {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  overflow: hidden;
  border: 1px solid #fff;
  border-right: none;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_slide {
    border-radius: 9999px;
    border-right: 1px solid #fff;
  }
}

.top-mainVisual_subimg {
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid #fff;
  width: 30cqi;
  max-width: 315px;
  position: absolute;
  bottom: 10px;
  left: 0;
  translate: -10%;
  z-index: 200;
  display: none;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_subimg {
    display: block;
  }
}
.top-mainVisual_subimg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-mainVisual_item {
  height: var(--img_height);
  position: relative;
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_item {
    height: 100%;
  }
}
.top-mainVisual_item::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.top-mainVisual_item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.steam {
  position: absolute;
  inset: 0;
}
.steam .-layer {
  display: none;
}
@media screen and (min-width: 768px) {
  .steam .-layer {
    display: block;
  }
}

.steam01 {
  position: absolute;
  right: -3%;
  top: 0;
  animation: steam-move-01 20s infinite linear;
}

.steam02 {
  position: absolute;
  right: 10%;
  bottom: 0;
  animation: steam-move-02 20s infinite linear;
  animation-delay: 5s;
  filter: blur(10px);
  transform: scale(0.8, 0.8) rotateY(0deg);
  opacity: 0;
  translate: 0 100%;
}

.steam03 {
  position: absolute;
  left: -3%;
  bottom: 0;
  animation: steam-move-01 20s infinite linear;
  animation-delay: 3s;
  filter: blur(15px);
  transform: scale(0.8, 0.8) rotateY(0deg);
  opacity: 0;
  translate: 0 20%;
}

@keyframes steam-move-01 {
  0% {
    filter: blur(15px);
    transform: scale(0.8, 0.8) rotateY(0deg);
    opacity: 0;
    translate: 0 20%;
  }
  6% {
    opacity: 0.6;
  }
  33% {
    transform: scale(0.9, 1.1) rotateY(30deg);
    opacity: 1;
    translate: 0 0;
  }
  66% {
    transform: scaleY(1, 0.8) rotateY(4deg);
  }
  100% {
    filter: blur(20px);
    transform: scaleY(1.5, 1.3) rotateY(50deg);
    opacity: 0;
    translate: 0 0;
  }
}
@keyframes steam-move-02 {
  0% {
    filter: blur(12px);
    transform: scale(0.8, 0.8) rotateY(0deg);
    opacity: 0;
    translate: 0 10%;
  }
  10% {
    opacity: 0.4;
  }
  43% {
    transform: scale(0.9, 1.1) rotateY(30deg);
    opacity: 0.8;
    translate: 0 0;
  }
  76% {
    transform: scaleY(1, 0.8) rotateY(4deg);
  }
  100% {
    filter: blur(18px);
    transform: scaleY(1.5, 1.3) rotateY(50deg);
    opacity: 0;
    translate: 0 10%;
  }
}
.top-mainVisual_btn .c-locationBtn {
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_btn .c-locationBtn {
    margin-inline: 0;
  }
}

.top-features_inner {
  background: color-mix(in srgb, var(--color_blue02) 50%, transparent);
  border-radius: var(--kadomaru);
  padding: 7cqi;
  display: grid;
  grid-template-columns: min(5%, 31px) 1fr;
  column-gap: 5%;
}
@media screen and (min-width: 768px) {
  .top-features_inner {
    padding: 40px;
    grid-template-columns: min(3%, 31px) 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .top-features_inner {
    padding: 60px;
  }
}

.top-features_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5cqi;
  row-gap: 6cqi;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-features_list {
    column-gap: 2cqi;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .top-features_list {
    column-gap: 4cqi;
  }
}

.top-features_item {
  text-align: center;
  container-type: inline-size;
}
.top-features_item[data-aos] {
  transition-delay: 0s;
}
@media screen and (min-width: 560px) {
  .top-features_item[data-aos]:nth-of-type(even) {
    transition-delay: 0.2s;
  }
}
@media screen and (min-width: 960px) {
  .top-features_item[data-aos]:nth-of-type(4n) {
    transition-delay: 0s;
  }
  .top-features_item[data-aos]:nth-of-type(4n-2) {
    transition-delay: 0.1s;
  }
  .top-features_item[data-aos]:nth-of-type(4n-1) {
    transition-delay: 0.15s;
  }
  .top-features_item[data-aos]:nth-of-type(n+4) {
    transition-delay: 0.3s;
  }
}

.top-features_icon {
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 200px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .top-features_icon {
    max-width: 250px;
  }
}

.top-features_title {
  font-size: min(11cqw, 24 * var(--rem));
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .top-features_title {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

.top-features_text {
  font-size: 8cqw;
  font-size: min(8cqw, 18 * var(--rem));
  line-height: 1.3;
  font-weight: 400;
}

.top-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 15px;
  font-size: clamp(1.5rem, 1.067rem + 1.923vw, 2.75rem);
  letter-spacing: 0.1rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-heading {
    column-gap: 25px;
    margin-bottom: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .top-heading {
    column-gap: 30px;
    margin-bottom: 80px;
  }
}
.top-heading::after {
  content: "";
  height: 100%;
  background: url(../../img/top/line-white_long.png) repeat-x left center;
  background-size: auto 8px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .top-heading::after {
    background-size: auto;
  }
}

.top-scene_heading {
  margin-bottom: 70px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-scene_heading {
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .top-scene_heading {
    margin-bottom: 120px;
  }
}
.top-scene_heading::before {
  content: "";
  z-index: 1;
  background: url(../../img/top/top-title_bg.png) no-repeat center/contain;
  aspect-ratio: 192/242;
  width: 100px;
  max-width: 192px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .top-scene_heading::before {
    width: 140px;
  }
}
@media screen and (min-width: 1200px) {
  .top-scene_heading::before {
    width: 192px;
  }
}
.top-scene_heading .top-heading {
  position: relative;
  z-index: 2;
}

.top-scene_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5cqi;
  row-gap: 5cqi;
}
@media screen and (min-width: 768px) {
  .top-scene_list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2cqi;
  }
}
@media screen and (min-width: 1200px) {
  .top-scene_list {
    column-gap: 4cqi;
  }
}

.top-scene_item {
  container-type: inline-size;
}
@media screen and (min-width: 560px) {
  .top-scene_item:nth-of-type(even) {
    transition-delay: 0.2s;
  }
}
@media screen and (min-width: 960px) {
  .top-scene_item:nth-of-type(4n) {
    transition-delay: 0s;
  }
  .top-scene_item:nth-of-type(4n-2) {
    transition-delay: 0.1s;
  }
  .top-scene_item:nth-of-type(4n-1) {
    transition-delay: 0.15s;
  }
  .top-scene_item:nth-of-type(n+4) {
    transition-delay: 0.3s;
  }
}

.top-scene_label {
  background: #fff;
  padding: 10px 20px;
  text-align: center;
  border-radius: 9999px;
  font-size: min(8cqw, 24 * var(--rem));
  font-weight: 700;
  color: var(--color_blue02);
  width: 80%;
  margin: 0 auto 20px auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-scene_label {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-scene_label {
    margin-bottom: 40px;
  }
}
.top-scene_label::before {
  content: "";
  background: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  display: block;
  width: 25%;
  height: 15px;
  position: absolute;
  left: 50%;
  bottom: 2px;
  translate: -50% 100%;
}

.top-scene_img {
  border: 1px solid #fff;
  border-radius: var(--kadomaru);
  overflow: hidden;
}

.top-step_inner {
  background: rgba(255, 255, 255, 0.85);
  padding: 7cqi;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 5%;
  row-gap: 40px;
  border-radius: var(--kadomaru);
}
@media screen and (min-width: 768px) {
  .top-step_inner {
    padding: 60px 40px 40px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .top-step_inner {
    padding: 60px 70px 50px 70px;
    grid-template-columns: min(25%, 226px) 1fr;
    align-items: center;
  }
}

.top-step_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  padding-inline: 10%;
}
@media screen and (min-width: 1200px) {
  .top-step_heading {
    flex-direction: column-reverse;
    padding: 0;
    row-gap: 10px;
  }
}
.top-step_heading::before {
  content: "";
  background: url(../../img/top/top-step_heading02.png) no-repeat center center/contain;
  width: 30%;
  aspect-ratio: 1;
  max-width: 118px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .top-step_heading::before {
    width: 50%;
  }
}
.top-step_heading span {
  display: block;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .top-step_heading span {
    width: auto;
    display: inline;
    margin: 0;
  }
}

.top-step_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3cqi;
  row-gap: 30px;
  counter-reset: num;
}
@media screen and (min-width: 768px) {
  .top-step_list {
    row-gap: 40px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.top-step_item {
  container-type: inline-size;
  counter-increment: num;
  position: relative;
  border: 1px solid var(--color_lightmizu);
  padding: 20px 15px;
  background: #fff;
  border-radius: calc(var(--kadomaru) / 2);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .top-step_item {
    padding: 25px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .top-step_item {
    padding: 30px 20px;
  }
}
.top-step_item::before {
  content: counter(num);
  width: 30px;
  aspect-ratio: 1;
  font-size: clamp(1.25rem, 1.163rem + 0.385vw, 1.5rem);
  background: var(--color_blue02);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font_eiji);
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -50%;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .top-step_item::before {
    width: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .top-step_item::before {
    width: 50px;
  }
}
@media screen and (min-width: 768px) {
  .top-step_item:not(:last-of-type)::after {
    content: "";
    background: var(--color_blue02);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    display: block;
    width: 10px;
    height: 25px;
    position: absolute;
    right: 0;
    top: 50%;
    translate: calc(100% + 10cqi) -50%;
  }
}
@media screen and (min-width: 1200px) {
  .top-step_item:not(:last-of-type)::after {
    width: 15px;
    height: 35px;
  }
}
@media screen and (min-width: 560px) {
  .top-step_item:nth-of-type(even) {
    transition-delay: 0.2s;
  }
}
@media screen and (min-width: 960px) {
  .top-step_item:nth-of-type(4n) {
    transition-delay: 0s;
  }
  .top-step_item:nth-of-type(4n-2) {
    transition-delay: 0.1s;
  }
  .top-step_item:nth-of-type(4n-1) {
    transition-delay: 0.15s;
  }
  .top-step_item:nth-of-type(n+4) {
    transition-delay: 0.3s;
  }
}

.top-step_icon {
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .top-step_icon {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .top-step_icon {
    margin-top: 20px;
  }
}

.top-step_text {
  text-align: center;
  font-size: min(10cqw, 22 * var(--rem));
  font-weight: 700;
  color: var(--color_mizu);
  margin-top: 10px;
}

.top-news .news-list {
  --news-list_color:#fff;
}
@media screen and (min-width: 768px) {
  .top-news .news-list:last-child {
    display: none;
  }
}

/*=============================================================
  news.scss
==============================================================*/
.news-list {
  --news-list_color:var(--color_blue02);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5%;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .news-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .news-list {
    column-gap: 7%;
  }
}

.news-list_item[data-aos] {
  transition-delay: 0s;
}
@media screen and (min-width: 560px) {
  .news-list_item[data-aos]:nth-of-type(even) {
    transition-delay: 0.2s;
  }
}
@media screen and (min-width: 768px) {
  .news-list_item[data-aos]:nth-of-type(3n-2) {
    transition-delay: 0s;
  }
  .news-list_item[data-aos]:nth-of-type(3n-1) {
    transition-delay: 0.15s;
  }
  .news-list_item[data-aos]:nth-of-type(3n) {
    transition-delay: 0.3s;
  }
}

.news-list_img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 400/290;
}
.news-list_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news-list_body {
  margin-top: clamp(15px, 1.5cqw, 30px);
  color: var(--news-list_color);
}

.news-list_title {
  font-weight: 700;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: clamp(8px, 0.8cqw, 15px);
}

.news-list_date {
  font-family: var(--font_eiji);
  line-height: 1.2;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
}

.news-entryData {
  padding-bottom: 20px;
}

.news-entryData_date {
  margin-top: 15px;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  font-weight: 700;
  font-family: var(--font_eiji);
  color: var(--color_main);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 15px;
}
@media screen and (min-width: 768px) {
  .news-entryData_date {
    column-gap: 25px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData_date {
    column-gap: 30px;
    margin-top: 30px;
  }
}
.news-entryData_date::after {
  content: "";
  height: 100%;
  background: url(../../img/line.png) repeat-x left center;
  background-size: auto 8px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .news-entryData_date::after {
    background-size: auto;
  }
}

.news-entryData_category {
  margin-left: 1vw;
  padding-left: 1vw;
  position: relative;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .news-entryData_category {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData_category {
    font-size: 1.125rem;
  }
}
.news-entryData_category::before {
  content: "";
  width: 1px;
  height: 60%;
  display: block;
  background: var(--color_border);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -40%;
}

.news-entryData_title {
  width: 100%;
  font-size: clamp(1.375rem, 1.159rem + 0.962vw, 2rem);
  line-height: 1.3;
}
/*=============================================================
  notfound.scss
============================================================= */
.notfoundWrap {
  background: url(../../img/bg01.png) no-repeat center/cover;
}

.notfoundHeading {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.5rem, 0.938rem + 2.5vw, 3.125rem);
}
@media screen and (min-width: 768px) {
  .notfoundHeading {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .notfoundHeading {
    margin-bottom: 60px;
  }
}
.notfoundHeading_main {
  color: #fff;
  font-family: var(--font_eiji);
  letter-spacing: -0.5rem;
}
.notfoundHeading_sub {
  margin-top: 10px;
  font-weight: bold;
  font-size: 36%;
}

.notfound {
  border-radius: 20px;
  padding: 20px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .notfound {
    padding: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .notfound {
    padding: 60px;
  }
}

.notfound_btn {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .notfound_btn {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .notfound_btn {
    margin-top: 70px;
  }
}

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

/*=============================================================
  entry.scss
==============================================================*/
/* entryBody
-----------------------------*/
.entryBody,
body.mce-content-body {
  overflow: hidden;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .entryBody,
  body.mce-content-body {
    line-height: 1.9;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody,
  body.mce-content-body {
    line-height: 2;
  }
}
.entryBody > *:first-child,
body.mce-content-body > *:first-child {
  margin-top: 0 !important;
}
.entryBody > *:last-child,
body.mce-content-body > *:last-child {
  margin-bottom: 0 !important;
}
.entryBody h2:not([class]),
body.mce-content-body h2:not([class]) {
  margin-top: 100px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class]),
  body.mce-content-body h2:not([class]) {
    margin-top: 120px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class]),
  body.mce-content-body h2:not([class]) {
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
.entryBody h3:not([class]),
body.mce-content-body h3:not([class]) {
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h3:not([class]),
  body.mce-content-body h3:not([class]) {
    margin-top: 100px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h3:not([class]),
  body.mce-content-body h3:not([class]) {
    margin-top: 120px;
    margin-bottom: 30px;
  }
}
.entryBody h4:not([class]),
body.mce-content-body h4:not([class]) {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h4:not([class]),
  body.mce-content-body h4:not([class]) {
    margin-top: 80px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h4:not([class]),
  body.mce-content-body h4:not([class]) {
    margin-top: 100px;
    margin-bottom: 30px;
  }
}
.entryBody h5:not([class]),
body.mce-content-body h5:not([class]) {
  margin-top: 50px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody h5:not([class]),
  body.mce-content-body h5:not([class]) {
    margin-top: 65px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h5:not([class]),
  body.mce-content-body h5:not([class]) {
    margin-top: 80px;
    margin-bottom: 20px;
  }
}
.entryBody h6:not([class]),
body.mce-content-body h6:not([class]) {
  margin-top: 40px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody h6:not([class]),
  body.mce-content-body h6:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h6:not([class]),
  body.mce-content-body h6:not([class]) {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
.entryBody p:not([class]) + p:not([class]),
body.mce-content-body p:not([class]) + p:not([class]) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody p:not([class]) + p:not([class]),
  body.mce-content-body p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
}
.entryBody a:not([class]):not(.no-entryBody),
body.mce-content-body a:not([class]):not(.no-entryBody) {
  color: #1530A0;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .entryBody a:not([class]):not(.no-entryBody):hover,
  body.mce-content-body 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],
  body.mce-content-body 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"],
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".pdf"],
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".doc"],
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".docx"],
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".xls"],
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".xlsx"],
body.mce-content-body 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"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".pdf"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".doc"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".docx"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".xls"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".xlsx"],
  body.mce-content-body 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"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".pdf"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".doc"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".docx"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".xls"],
  body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".xlsx"],
  body.mce-content-body 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,
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".pdf"]::after,
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".doc"]::after,
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".docx"]::after,
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".xls"]::after,
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".xlsx"]::after,
body.mce-content-body 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,
body.mce-content-body 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,
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".doc"]::after,
body.mce-content-body 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,
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".xls"]::after,
body.mce-content-body 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,
body.mce-content-body 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,
body.mce-content-body table {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  width: 100%;
  margin: 30px 0;
  table-layout: fixed;
  background: #fff;
}
@media screen and (min-width: 1200px) {
  .entryBody table,
  body.mce-content-body table {
    margin: 40px 0;
  }
}
.entryBody table th,
.entryBody table td,
body.mce-content-body table th,
body.mce-content-body table td {
  border: 1px solid var(--color_border);
  padding: 10px;
  line-height: inherit;
  font-size: inherit;
  vertical-align: top;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .entryBody table th,
  .entryBody table td,
  body.mce-content-body table th,
  body.mce-content-body table td {
    padding: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody table th,
  .entryBody table td,
  body.mce-content-body table th,
  body.mce-content-body table td {
    line-height: 180%;
    padding: 15px 20px;
  }
}
.entryBody table th,
body.mce-content-body table th {
  background: var(--color_bg);
}
.entryBody table thead th,
body.mce-content-body table thead th {
  background: var(--color_main);
  color: #fff;
  text-align: center;
  font-size: 100%;
  padding: 12px 10px;
}
@media screen and (min-width: 768px) {
  .entryBody table thead th,
  body.mce-content-body table thead th {
    padding: 18px 15px;
    font-size: 105%;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody table thead th,
  body.mce-content-body table thead th {
    padding: 20px;
  }
}
.entryBody ul:not(.no-entryBody):not([class]),
.entryBody ol:not(.no-entryBody):not([class]),
body.mce-content-body ul:not(.no-entryBody):not([class]),
body.mce-content-body 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,
body.mce-content-body ul:not(.no-entryBody):not([class]) li,
body.mce-content-body 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,
  body.mce-content-body ul:not(.no-entryBody):not([class]) li,
  body.mce-content-body 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,
  body.mce-content-body ul:not(.no-entryBody):not([class]) li,
  body.mce-content-body ol:not(.no-entryBody):not([class]) li {
    margin-top: 20px;
  }
}
.entryBody ul:not(.no-entryBody):not([class]),
body.mce-content-body ul:not(.no-entryBody):not([class]) {
  list-style-type: disc;
}
.entryBody ol:not(.no-entryBody):not([class]),
body.mce-content-body ol:not(.no-entryBody):not([class]) {
  list-style-type: decimal;
}
.entryBody img,
body.mce-content-body img {
  border-radius: 10px;
}

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