@charset "UTF-8";
/* Scss Document */
:root {
  /* font-family -------------------------------------------------*/
  --font_base: "Noto Sans JP","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP",sans-serif;
  --font_eiji: "Poppins", sans-serif;
  --font_mix: "Poppins","Noto Sans JP", sans-serif;
  /* color -------------------------------------------------*/
  --color_txt: #323232;
  --color_bg: #f9f8f5;
  --color_bg02: #e8e8e1;
  --color_bg03: #d4d4cc;
  --color_warning: #CF1212;
  --color_main: #71725a;
  --color_border: #8a8184;
  --color_accent: #f9f8f5;
  --color_off-white:#f9f8f5;
  --color_gray_light:#b9b9ab;
  --color_gray_dark:#83846e;
  --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_sm: 70px;
  --header_height_md: 90px;
  --header_height_lg: 110px;
  --header_height: var(--header_height_sm);
}
@media screen and (min-width: 768px) {
  :root {
    --header_height: var(--header_height_md);
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --header_height: var(--header_height_lg);
  }
}
:root {
  /* full-bleed -------------------------------------------------*/
  --full-bleed: calc(50% - 50vw);
  /* kadomaru -------------------------------------------------*/
  --kadomaru: 10px;
}
@media screen and (min-width: 768px) {
  :root {
    --kadomaru: 20px;
  }
}
:root {
  --kadomaru_small: 8px;
}
@media screen and (min-width: 768px) {
  :root {
    --kadomaru_small: 8px;
  }
}
:root {
  --kadomaru-large: 20px;
}
@media screen and (min-width: 768px) {
  :root {
    --kadomaru-large: 40px;
  }
}
:root {
  --entry_kadomaru:10px;
}
@media screen and (min-width: 768px) {
  :root {
    --entry_kadomaru: 20px;
  }
}
:root {
  /* ----------------------------------------------------------*/
  --footer-top: calc(100cqw * (212 / 1920));
}

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);
  background: var(--color_bg);
  position: relative;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-autospace: normal;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--color_gray_light) 60%, transparent);
  display: block;
  z-index: -1;
  opacity: 0;
  transition: var(--trans_speed) all;
}
body.is-menuopen {
  overflow: hidden;
  height: 100%;
}
body.is-menuopen::before {
  z-index: 800;
  opacity: 1;
}

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 {
  --space-padding:var(--padding_large);
  padding-block: calc(var(--space-padding) / 3);
}
@media screen and (min-width: 768px) {
  .space--large {
    padding-block: calc(var(--space-padding) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--large {
    padding-block: var(--space-padding);
  }
}

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

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

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

.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) / 2);
}
@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) / 2);
}
@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) / 2);
}
@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_offwhite {
  background: var(--color_off-white);
}

.c-bg_green {
  background: var(--color_main);
}
.c-bg_green .s-section_heading [class*=c-heading] {
  --title_main_color: #fff;
  --title_sub_color: #fff;
  --title_border_color: #fff;
}

.c-bg_lightgreen {
  background: var(--color_gray_light);
}

.c-bg_img {
  background: url(../../img/bg02.png) no-repeat left center, url(../../img/bg03.png) no-repeat right bottom, var(--color_bg);
  background-size: 15% auto;
}
@media screen and (min-width: 1200px) {
  .c-bg_img {
    background-size: auto;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.c-box.-borderonly {
  background: 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.6875rem, 0.623rem + 0.288vw, 0.875rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .txt--small {
    line-height: 1.7;
  }
}
@media screen and (min-width: 1200px) {
  .txt--small {
    line-height: 1.8;
  }
}
.txt--small + .txt, .txt + .txt--small {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .txt--small + .txt, .txt + .txt--small {
    margin-top: 30px;
  }
}

.txt--big {
  font-size: clamp(1rem, 0.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_main);
  --title_sub_color: var(--color_gray_light);
}
.c-headingGroup01.-center > * {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.c-headingGroup01_main {
  color: var(--title_main_color);
  font-size: clamp(1.625rem, 1.409rem + 0.962vw, 2.25rem);
  line-height: 1.5;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
}
.c-headingGroup01_main::before {
  content: "";
  width: clamp(2.5rem, 1.804rem + 3.095vw, 4.125rem);
  aspect-ratio: 66/77;
  display: block;
  background: url(../../img/title-mark.png) no-repeat center center/contain;
}

.c-headingGroup01_sub {
  font-family: var(--font_eiji);
  font-weight: 500;
  letter-spacing: 0.05rem;
  color: var(--title_sub_color);
  font-size: clamp(1rem, 0.827rem + 0.769vw, 1.5rem);
  text-align: center;
  margin-top: 5px;
}

.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_txt);
  --heading_sub_color:var(--color_main);
  --heading_border_color:var(--color_gray_dark);
  position: relative;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02 {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup02 {
    padding-bottom: 25px;
  }
}
.c-headingGroup02::before {
  content: "";
  height: 2px;
  width: 100px;
  background: var(--heading_border_color);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-headingGroup02.-white {
  --heading_main_color:#fff;
  --heading_sub_color:#fff;
}
.c-headingGroup02.-center::before {
  left: 50%;
  translate: -50%;
}
.c-headingGroup02.-center > * {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.c-headingGroup02_main {
  font-size: clamp(1.5rem, 1.327rem + 0.769vw, 2rem);
  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);
  display: flex;
  align-items: center;
  column-gap: 3%;
  position: relative;
  font-family: var(--font_eiji);
  font-weight: 600;
  letter-spacing: 0.05rem;
  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;
  }
}
.c-headingGroup02_sub::before {
  content: "";
  width: min(5cqw, 30px);
  height: 2px;
  display: block;
  background: var(--color_main);
}

.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;
}
@media screen and (min-width: 768px) {
  .c-headingGroup02.-small .c-headingGroup02_sub {
    margin-top: 10px;
  }
}
.c-headingGroup02.-small .c-headingGroup02_sub::before {
  content: "";
  width: min(4cqw, 20px);
  height: 2px;
  display: block;
  background: var(--color_main);
}

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

.c-headingGroup03 {
  --title_main_color: var(--color_gray_light);
  --title_sub_color: var(--color_main);
  --title_border_color: var(--color_main);
}
.c-headingGroup03.-center > * {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.c-headingGroup03_main {
  color: var(--title_main_color);
  font-size: clamp(3.125rem, 1.827rem + 5.769vw, 6.875rem);
  line-height: 1;
  position: relative;
  text-align: center;
  font-family: var(--font_eiji);
  text-transform: lowercase;
}
.c-headingGroup03_main::first-letter {
  text-transform: capitalize;
}

.c-headingGroup03_sub {
  font-weight: 700;
  letter-spacing: 0.05rem;
  color: var(--title_sub_color);
  font-size: clamp(1.5rem, 1.24rem + 1.154vw, 2.25rem);
  line-height: 1.3;
  width: fit-content;
  border-top: 2px solid var(--title_sub_color);
  margin-top: 15px;
  padding-top: 15px;
  text-align: center;
  margin-inline: auto;
}

.c-heading_lv2,
.entryBody h2:not([class]) {
  color: var(--color_main);
  font-size: clamp(1.625rem, 1.409rem + 0.962vw, 2.25rem);
  line-height: 1.5;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
}
.c-heading_lv2::before,
.entryBody h2:not([class])::before {
  content: "";
  width: clamp(2.5rem, 1.804rem + 3.095vw, 4.125rem);
  aspect-ratio: 66/77;
  display: block;
  background: url(../../img/title-mark.png) no-repeat center center/contain;
}

.c-heading_lv3,
.mce-content-body h3:not([class]),
.entryBody h3:not([class]) {
  font-size: clamp(1.375rem, 1.288rem + 0.385vw, 1.625rem);
  line-height: 1.3;
  border-left: 3px solid var(--color_main);
  padding-left: min(3cqi, 20px);
  padding-block: 5px;
  font-weight: 700;
  color: var(--color_main);
}
@media screen and (min-width: 768px) {
  .c-heading_lv3,
  .mce-content-body h3:not([class]),
  .entryBody h3:not([class]) {
    border-width: 5px;
    padding-block: 10px;
  }
}
.c-heading_lv4,
.mce-content-body h4:not([class]),
.entryBody h4:not([class]) {
  font-size: clamp(1.25rem, 1.163rem + 0.385vw, 1.5rem);
  line-height: 1.3;
  background: var(--color_bg03);
  color: var(--color_main);
  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.125rem, 1.038rem + 0.385vw, 1.375rem);
  line-height: 1.3;
  color: var(--color_main);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color_main);
  position: relative;
  font-weight: 700;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .c-heading_lv5,
  .mce-content-body h5:not([class]),
  .entryBody h5:not([class]) {
    padding-bottom: 15px;
  }
}
.c-heading_lv6,
.mce-content-body h6:not([class]),
.entryBody h6:not([class]) {
  font-size: clamp(1.125rem, 1.038rem + 0.385vw, 1.375rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--color_main);
}

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

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

.c-btn01 {
  display: block;
  width: 80%;
  max-width: 360px;
  font-size: clamp(1rem, 0.87rem + 0.577vw, 1.375rem);
  font-weight: 700;
  text-align: center;
  position: relative;
  background: var(--color_main);
  border-radius: var(--kadomaru_small);
  padding: 20px 10px;
  color: #fff;
  letter-spacing: 0.05rem;
  transition: var(--trans_speed) background;
}
@media screen and (min-width: 768px) {
  .c-btn01 {
    padding: 25px 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-btn01 {
    padding: 25px 30px;
  }
}
.c-btn01::after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
  font-size: 83%;
}
@media (any-hover: hover) {
  .c-btn01:hover {
    background: color-mix(in srgb, var(--color_main) 70%, #fff);
  }
}
.c-btn01.-center {
  margin-inline: auto;
}
.c-btn01.-small {
  max-width: 290px;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
}

/*=============================================================
  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%;
  margin-inline: auto;
}

.formTable--column {
  width: 100%;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 40px;
}
.formTable--column th,
.formTable--column td {
  display: block;
  width: 100%;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .formTable--column th,
  .formTable--column td {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .formTable--column th,
  .formTable--column td {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.formTable--column th {
  font-size: clamp(0.9375rem, 0.873rem + 0.288vw, 1.125rem);
  padding-top: 30px;
  border-top: 1px solid var(--color_border);
}
@media screen and (min-width: 768px) {
  .formTable--column th {
    padding-top: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .formTable--column th {
    padding-top: 40px;
  }
}
.formTable--column 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--column th span {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 1200px) {
  .formTable--column th span {
    font-size: 0.8125rem;
    padding: 5px 8px;
    margin-right: 10px;
  }
}
.formTable--column td {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  padding-top: 10px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .formTable--column td {
    padding-top: 15px;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .formTable--column td {
    padding-bottom: 40px;
  }
}

.formTable--row {
  width: 100%;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 40px;
  table-layout: fixed;
}
.formTable--row th,
.formTable--row td {
  font-size: clamp(0.9375rem, 0.873rem + 0.288vw, 1.125rem);
}
@media screen and (max-width: 767px) {
  .formTable--row th,
  .formTable--row td {
    display: block;
    width: 100%;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .formTable--row th,
  .formTable--row td {
    padding-block: 25px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .formTable--row th,
  .formTable--row td {
    padding-block: 35px;
  }
}
.formTable--row th {
  border-top: 1px solid var(--color_border);
}
@media screen and (min-width: 768px) {
  .formTable--row th {
    width: 30%;
  }
}
.formTable--row 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--row th span {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 1200px) {
  .formTable--row th span {
    font-size: 0.8125rem;
    padding: 5px 8px;
    margin-right: 10px;
  }
}
.formTable--row td {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
}
@media screen and (min-width: 768px) {
  .formTable--row td {
    border-top: 1px solid var(--color_border);
    padding-inline: min(3cqw, 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: 100svh;
  z-index: 999;
  text-align: center;
  color: #fff;
  display: none;
}
.loading.is-active {
  display: block;
}

.js-fadein {
  opacity: 0;
}

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

/*=============================================================
  youtube.scss
==============================================================*/
.c-youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-youtube iframe {
  width: 100%;
  height: 100%;
}

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

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

.c-table.-type01 {
  border-top: 1px solid var(--color_border);
  border-left: 1px solid var(--color_border);
}
.c-table.-type01 td, .c-table.-type01 th {
  border-bottom: 1px solid var(--color_border);
  border-right: 1px solid var(--color_border);
}
.c-table.-type01 th {
  width: 25%;
}
@media screen and (min-width: 768px) {
  .c-table.-type01 th {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .c-table.-type01.-sp-column th {
    width: 100%;
  }
}

.c-table.-type02 {
  border-top: 1px solid var(--color_border);
  border-left: 1px solid var(--color_border);
}
.c-table.-type02 td, .c-table.-type02 th {
  border-bottom: 1px solid var(--color_border);
  border-right: 1px solid var(--color_border);
}
.c-table.-type02 th {
  background: var(--color_bg);
  width: 25%;
}
@media screen and (min-width: 768px) {
  .c-table.-type02 th {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .c-table.-type02.-sp-column th {
    width: 100%;
  }
}

.c-table.-type03 th {
  background: var(--color_bg);
}

.c-table.-type04 {
  border: none;
  border-collapse: separate;
  border-spacing: 2px;
}
.c-table.-type04 td, .c-table.-type04 th {
  border: none;
}
.c-table.-type04 th {
  background: var(--color_main);
  color: #fff;
}
.c-table.-type04 td {
  background: var(--color_bg);
}
@media screen and (max-width: 767px) {
  .c-table.-type04.-sp-column th {
    width: 100%;
  }
}

.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;
  }
}
@media screen and (min-width: 1200px) {
  .c-card.-border, .c-card.-border-round {
    padding: 1cqi;
  }
}
.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:not(.-border, .-border-round) .c-card_img {
  border-radius: var(--entry_kadomaru);
}

.c-card_img {
  overflow: hidden;
  text-align: center;
}
.c-card_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

.c-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 {
  width: 100%;
  height: var(--header_height);
  padding-inline: var(--wrap-padding);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  transition: var(--trans_speed) all;
}

.header-logo {
  width: 35%;
  max-width: 330px;
  transition: var(--trans_speed) all;
}
.header-logo svg {
  fill: #fff;
}

#home .header-logo {
  display: none;
}

/**/
@media screen and (min-width: 960px) {
  .l-header.is-scroll {
    height: var(--header_height_md);
  }
  .l-header.is-scroll .header-logo {
    width: 20%;
    max-width: 200px;
  }
  .l-header.is-scroll .header-logo svg {
    fill: var(--color_main);
  }
  .l-header.is-scroll .naviBtn {
    --btn-size:var(--header_height_md);
  }
}

/*=============================================================
  l-drawer.scss
=============================================================*/
.l-drawer {
  --btn-vertical:10px;
}
@media screen and (min-width: 768px) {
  .l-drawer {
    --btn-vertical:15px;
  }
}
@media screen and (min-width: 1200px) {
  .l-drawer {
    --btn-vertical:20px;
  }
}

.l-drawer {
  width: calc(100% - var(--btn-vertical) * 2);
  max-width: 350px;
  position: absolute;
  right: var(--btn-vertical);
  top: var(--btn-vertical);
  border-radius: 5px;
  background: var(--color_main);
  transform-origin: right top;
  color: #fff;
  scale: 0;
  opacity: 0;
  transition: 0.5s all cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0 0 0 2px #fff;
}
@media screen and (min-width: 768px) {
  .l-drawer {
    border-radius: 10px;
  }
}

.is-menuopen .l-drawer {
  scale: 1;
  opacity: 1;
}

.l-drawer_inner {
  overflow-y: scroll;
  height: 100%;
  padding-block: calc(var(--header_height) + 20px) 40px;
  padding-inline: min(5vw, 40px);
}

.drawer-navi li:not(:last-of-type) {
  margin-bottom: 20px;
}
.drawer-navi a {
  color: currentColor;
  font-size: calc(18 * var(--rem));
  font-weight: 500;
}

.drawer-tel {
  margin-block: min(15cqw, 50px);
}
.drawer-tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5%;
  border-radius: var(--kadomaru_small);
  background: #fff;
  padding: min(6cqw, 20px) 20px;
  text-align: center;
  font-weight: 700;
  color: var(--color_main);
  font-size: calc(24 * var(--rem));
}
@media screen and (min-width: 768px) {
  .drawer-tel a {
    pointer-events: none;
  }
}
.drawer-tel a span {
  display: inline-block;
  width: 34px;
}
.drawer-tel a svg {
  fill: var(--color_main);
}

.drawer-subnavi {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 20px;
  justify-content: center;
}
.drawer-subnavi a {
  color: currentColor;
  font-size: clamp(0.625rem, 0.582rem + 0.192vw, 0.75rem);
  line-height: 1.3;
}

/*=============================================================
  naviBtn.scss
==============================================================*/
.naviBtn {
  --btn-size:var(--header_height);
  --btn-color:#fff;
  --btn-bg:var(--color_main);
  --btn-linesize:2px;
  --btn-vertical:10px;
}
@media screen and (min-width: 768px) {
  .naviBtn {
    --btn-vertical:15px;
  }
}
@media screen and (min-width: 1200px) {
  .naviBtn {
    --btn-vertical:20px;
  }
}

.naviBtn {
  height: calc(var(--btn-size) - var(--btn-vertical) * 2);
  aspect-ratio: 1/0.7;
  max-width: 100px;
  position: absolute;
  top: 50%;
  right: var(--btn-vertical);
  translate: 0 -50%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: var(--trans_speed) all;
}
.naviBtn button {
  border: none;
  width: 100%;
  height: 100%;
  background: var(--btn-bg);
  position: relative;
  transition: 0.4s all;
  outline: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .naviBtn button {
    border-radius: 10px;
  }
}
.naviBtn p {
  width: 35%;
  aspect-ratio: 1/0.6;
  margin-inline: auto;
  position: relative;
}
.naviBtn p::after {
  content: "";
  display: block;
  width: 100%;
  height: var(--btn-linesize);
  background: var(--btn-color);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  transition: 0.5s all;
  transform-origin: center center;
}
.naviBtn p span::before, .naviBtn p span::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  transition: 0.5s all;
  height: var(--btn-linesize);
  background: var(--btn-color);
  transform-origin: center center;
}
.naviBtn p span::before {
  top: 0;
}
.naviBtn p span::after {
  bottom: 0;
}
.naviBtn p span.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.naviBtn button:hover {
  --btn-color:rgb(255 255 255 / 0.7);
}

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

/*=============================================================
  footer.scss
=============================================================*/
.l-footer {
  container-type: inline-size;
  background: url(../../img/footer-bg.png) no-repeat center bottom var(--color_gray_dark);
  background-size: contain;
  position: relative;
}
.l-footer::before {
  content: "";
  width: 100%;
  aspect-ratio: 1920/212;
  display: block;
  background: url(../../img/footer-wave.png) no-repeat center bottom/cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  translate: 0 -95%;
}

/* siteAcquisition
-----------------------------------------*/
.siteAcquisition {
  container-type: inline-size;
  background: var(--color_bg);
  position: relative;
  padding: 30px;
  color: var(--color_main);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "fs-title" "fs-txt" "fs-btn";
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .siteAcquisition {
    padding: 50px;
    row-gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .siteAcquisition {
    grid-template-columns: 1fr min(50%, 390px);
    column-gap: 5%;
    grid-template-areas: "fs-title fs-title" "fs-txt fs-btn";
  }
}
@media screen and (min-width: 1200px) {
  .siteAcquisition {
    padding: 80px;
    row-gap: 60px;
  }
}
.siteAcquisition::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid var(--color_gray_dark);
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 768px) {
  .siteAcquisition::before {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
@media screen and (min-width: 1200px) {
  .siteAcquisition::before {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
}
.siteAcquisition > * {
  position: relative;
  z-index: 100;
}

.siteAcquisition_heading {
  grid-area: fs-title;
}

.siteAcquisition_txt {
  grid-area: fs-txt;
}

.siteAcquisition_btn {
  grid-area: fs-btn;
}

.siteAcquisition_heading {
  display: inline flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .siteAcquisition_heading {
    row-gap: 15px;
    padding-inline: 20px;
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .siteAcquisition_heading {
    row-gap: 20px;
    padding-inline: 25px;
  }
}
.siteAcquisition_heading span {
  display: inline-block;
  text-align: center;
  width: fit-content;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 0.996rem + 1.129vw, 2.125rem);
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 2px solid currentColor;
}
@media screen and (min-width: 768px) {
  .siteAcquisition_heading span {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .siteAcquisition_heading span {
    padding-inline: 25px;
  }
}
.siteAcquisition_heading::before {
  content: "";
  background: url(../../img/partner-icon.png) no-repeat center center/contain;
  aspect-ratio: 104/78;
  display: block;
  width: 15%;
  max-width: 104px;
}

.siteAcquisition_txt {
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  font-weight: 600;
}

.siteAcquisition_btn a {
  max-width: 390px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: min(3%, 20px);
  padding: min(8cqw, 30px) 10px;
  background: #fff;
  border-radius: var(--kadomaru_small);
  border: 2px solid var(--color_main);
  font-size: clamp(0.9375rem, 0.847rem + 0.403vw, 1.25rem);
  line-height: 1.3;
  font-weight: 700;
  color: currentColor;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 1200px) {
  .siteAcquisition_btn a {
    border-width: 3px;
  }
}
.siteAcquisition_btn a span {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.siteAcquisition_btn a br {
  display: none;
}
.siteAcquisition_btn a svg {
  fill: currentColor;
  transition: var(--trans_speed) fill;
  width: 30px;
}
@media (any-hover: hover) {
  .siteAcquisition_btn:hover {
    color: #fff;
  }
  .siteAcquisition_btn a:hover {
    background: var(--color_main);
  }
}

/* footer inner
-----------------------------------------*/
.l-footer_inner {
  color: #fff;
}

.footer-logo {
  width: 40%;
  max-width: 314px;
  margin: 0 auto;
}
.footer-logo svg {
  fill: #fff;
}

.footer-tel {
  margin-top: 25px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer-tel {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-tel {
    margin-top: 35px;
    margin-bottom: 55px;
  }
}
.footer-tel a {
  color: currentColor;
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  font-family: var(--font_eiji);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer-tel a {
    pointer-events: none;
  }
}
.footer-tel svg {
  fill: currentColor;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .footer-tel svg {
    width: 40px;
  }
}

.footer-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: min(5cqw, 60px);
  row-gap: 15px;
}
.footer-navi a {
  color: currentColor;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  line-height: 1.3;
  font-weight: 600;
  transition: var(--trans_speed) opacity;
}
@media (any-hover: hover) {
  .footer-navi a:hover {
    opacity: 0.7;
  }
}

.footer-subnavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 15px;
  margin-top: 30px;
}
.footer-subnavi a {
  color: currentColor;
  font-size: clamp(0.6875rem, 0.623rem + 0.288vw, 0.875rem);
  line-height: 1.3;
  font-weight: 600;
  transition: var(--trans_speed) opacity;
}
@media (any-hover: hover) {
  .footer-subnavi a:hover {
    opacity: 0.7;
  }
}

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

.l-contents:not(:has(.hotel-entry)) > :last-child[class*=space] {
  padding-bottom: calc(var(--space-padding) + 11.0416666667cqw);
}
.l-contents:not(:has(.hotel-entry)) > :last-child.space--large {
  padding-bottom: calc(var(--space-padding) + 7.7291666667cqw);
}
.l-contents:has(.hotel-entry) .hotel-entry {
  padding-bottom: 0 !important;
}
.l-contents:has(.hotel-entry) .hotel-entry > :last-child[class*=space] {
  padding-bottom: calc(var(--space-padding) + 11.0416666667cqw);
}
.l-contents:has(.hotel-entry) .hotel-entry > :last-child.space--large {
  padding-bottom: calc(var(--space-padding) + 7.7291666667cqw);
}

@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
==============================================================*/
:root {
  --ph-height:300px;
}
@media screen and (min-width: 768px) {
  :root {
    --ph-height:400px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --ph-height:550px;
  }
}

.l-pageHeading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--ph-height);
}
.l-pageHeading .c-headingGroup03 {
  --title_main_color: var(--color_off-white);
  --title_sub_color: var(--color_off-white);
  --title_border_color: var(--color_off-white);
}
.l-pageHeading + [class*=space] {
  padding-top: calc(var(--space-padding) + var(--ph-height));
}

.l-pageHeading_inner {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.l-pageHeading_img {
  width: 100%;
  height: var(--ph-height);
  -webkit-mask-image: url(../../img/header-wave-mask.svg);
  -webkit-mask-mode: alpha;
  -webkit-mask-size: 101vw 101%;
  -webkit-mask-position: center bottom;
  mask-image: url(../../img/header-wave-mask.svg);
  mask-mode: alpha;
  mask-size: 101vw 101%;
  mask-position: center bottom;
  position: relative;
  overflow: hidden;
}
.l-pageHeading_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: block;
}
.l-pageHeading_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: -2px;
}

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

/* entryNavi
---------------------------------------------*/
.entryNavi {
  display: grid;
  grid-template-columns: 1fr 25% 25% 25% 1fr;
  grid-template-areas: ". p-next p-list p-prev .";
  column-gap: 5%;
}
.entryNavi p {
  position: relative;
  text-align: center;
}
.entryNavi a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: var(--color_main);
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.3;
  padding: 15px 20px;
  text-align: center;
  border-radius: 10px;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .entryNavi a {
    padding: 20px 40px;
  }
}
.entryNavi_prev {
  grid-area: p-prev;
}
.entryNavi_next {
  grid-area: p-next;
}
.entryNavi_prev a, .entryNavi_next a {
  color: var(--color_main);
  border: 2px solid transparent;
}
@media screen and (min-width: 960px) {
  .entryNavi_prev a:hover, .entryNavi_next a:hover {
    background: #fff;
    border: 2px solid var(--color_main);
  }
}
.entryNavi_back {
  grid-area: p-list;
}
.entryNavi_back a {
  background: #fff;
  border: 2px solid var(--color_main);
}
@media screen and (min-width: 960px) {
  .entryNavi_back a:hover {
    background: var(--color_bg03);
  }
}

/*=============================================================
  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.-reverse .s-introduction_img {
  border-radius: var(--entry_kadomaru) 0 0 var(--entry_kadomaru);
}

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

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

.s-introduction_img {
  margin-inline: var(--full-bleed);
  border-radius: 0 var(--entry_kadomaru) var(--entry_kadomaru) 0;
  overflow: hidden;
}
@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;
}

.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(4.375rem, 3.51rem + 3.846vw, 6.875rem);
  font-family: var(--font_eiji);
  font-weight: 700;
  font-weight: 500;
  color: var(--color_main);
  pointer-events: none;
  line-height: 1;
  translate: 10% -35%;
}
@media screen and (min-width: 768px) {
  .-numbering .s-feature_section::before {
    left: auto;
    translate: 0 -35%;
  }
}

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

/*=============================================================
  section / s-contents-list.scss
==============================================================*/
.s-contents-listItem {
  border: 2px solid var(--color_main);
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-areas: "sc-img" "sc-main";
  row-gap: 40px;
  border-radius: var(--kadomaru);
  background: #fff;
  padding: min(5cqw, 50px);
}
@media screen and (min-width: 768px) {
  .s-contents-listItem {
    border-width: 3px;
    grid-template-rows: auto;
    grid-template-columns: 50% 1fr;
    grid-template-areas: "sc-img sc-main";
    column-gap: 5%;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .s-contents-listItem {
    column-gap: 8%;
  }
}
@media screen and (min-width: 768px) {
  .s-contents-listItem:nth-of-type(even) {
    grid-template-columns: 1fr 50%;
    grid-template-areas: "sc-main sc-img";
  }
}
.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;
  }
}

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

.s-contents-listItem_img {
  grid-area: sc-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;
  height: 100%;
}

.s-contents-listItem_heading_main {
  font-size: clamp(1.625rem, 1.409rem + 0.962vw, 2.25rem);
  line-height: 1.3;
  color: var(--color_main);
}

.s-contents-listItem_heading_sub {
  font-family: var(--font_eiji);
  line-height: 1.3;
  color: #a7a79c;
  margin-top: 10px;
  font-size: clamp(0.875rem, 0.659rem + 0.962vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.05rem;
}

.s-contents-listItem_text {
  font-size: clamp(0.9375rem, 0.873rem + 0.288vw, 1.125rem);
  font-weight: 500;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .s-contents-listItem_text {
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .s-contents-listItem_text {
    margin-top: 30px;
    line-height: 2;
  }
}

.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 {
  height: 100%;
}
.s-contents-navi a {
  display: inherit;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color_border);
  background: #fff;
  border-radius: var(--entry_kadomaru);
}
@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;
  margin-bottom: 20px;
  color: var(--color_main);
}
@media screen and (min-width: 1200px) {
  .s-contents-navi_title {
    padding-inline: 25px;
    margin-bottom: 30px;
  }
}

.s-contents-navi_text {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.6;
  padding-bottom: 20px;
  padding-inline: 15px;
}
@media screen and (min-width: 1200px) {
  .s-contents-navi_text {
    padding-bottom: 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;
  column-gap: var(--faq-padding);
  padding-block: var(--faq-padding);
  color: var(--color_main);
}
.s-faq_heading::before {
  content: "Q";
  background: var(--color_main);
  color: #fff;
  font-family: var(--font_eiji);
  font-weight: 700;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
}
.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: 30px 1fr;
  column-gap: var(--faq-padding);
  position: relative;
}
.s-faq_answer_inner::before {
  font-size: clamp(1rem, 0.87rem + 0.577vw, 1.375rem);
  content: "A";
  color: var(--color_accent);
  font-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
=============================================================*/
.top-mainVisual {
  --mv-height: 80vh;
}
@media screen and (min-width: 768px) {
  .top-mainVisual {
    --mv-height: 110vh;
  }
}

.top-mainVisual {
  height: var(--mv-height);
  position: relative;
  -webkit-mask-image: url(../../img/header-wave-mask.svg);
  -webkit-mask-mode: alpha;
  -webkit-mask-size: cover;
  -webkit-mask-position: center bottom;
  mask-image: url(../../img/header-wave-mask.svg);
  mask-mode: alpha;
  mask-size: cover;
  mask-position: center bottom;
  overflow: hidden;
}

.top-mainVisual_inner {
  padding-bottom: 20vh;
  padding-inline: var(--wrap-padding);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: min(8cqw, 60px);
  color: #fff;
  z-index: 100;
}

.top-mainVisual_logo {
  animation: promoCopyFade 1s cubic-bezier(0.47, 0, 0.745, 0.715) both;
  opacity: 0;
  text-align: center;
}
.top-mainVisual_logo svg {
  fill: currentColor;
  width: 100%;
}
.top-mainVisual_logo span {
  max-width: 385px;
}

.top-mainVisual_copy {
  font-size: clamp(0.875rem, 0.745rem + 0.577vw, 1.25rem);
  margin-bottom: 15px;
}

.top-mainVisual_copy02 {
  animation: promoCopyFade 1s cubic-bezier(0.47, 0, 0.745, 0.715) both;
  animation-delay: 0.3s;
  opacity: 0;
  font-size: clamp(1.5rem, 1.24rem + 1.154vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-align: center;
  letter-spacing: 0.05rem;
}

@keyframes promoCopyFade {
  0% {
    opacity: 0;
    filter: blur(3);
  }
  100% {
    opacity: 1;
  }
}
.top-mainVisual_slide {
  position: relative;
}

.top-mainVisual_img {
  height: var(--mv-height);
  position: relative;
  margin-top: -1px;
}
.top-mainVisual_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: block;
  z-index: 5;
}
.top-mainVisual_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-main {
  background: url(../../img/bg01.png) no-repeat right 10%, url(../../img/bg02.png) no-repeat left center, url(../../img/bg01.png) no-repeat right bottom, var(--color_bg);
  background-size: 15% auto;
}
@media screen and (min-width: 1200px) {
  .top-main {
    background-size: auto;
  }
}

.top-intro {
  display: grid;
  grid-template-columns: var(--wrap-padding) 1fr 1fr;
  grid-template-areas: ". ti-main ti-main" "ti-img01 ti-img01 ti-img01";
  column-gap: 5%;
  row-gap: 30px;
  align-items: center;
  margin-left: var(--full-bleed);
}
@media screen and (min-width: 768px) {
  .top-intro {
    grid-template-columns: var(--wrap-padding) 1fr 22% 25%;
    grid-template-areas: "ti-img01 ti-img01 ti-main ti-main";
    align-items: start;
    row-gap: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .top-intro {
    grid-template-columns: var(--wrap-padding) 1fr 18% 21%;
    grid-template-areas: "ti-img01 ti-img01 ti-main ti-main";
    align-items: start;
    column-gap: 10%;
    row-gap: 60px;
  }
}

.top-intro_main {
  grid-area: ti-main;
}

.top-intro_img01 {
  grid-area: ti-img01;
}

@media screen and (min-width: 768px) {
  .top-intro_main {
    margin-left: 5%;
  }
}
@media screen and (min-width: 1200px) {
  .top-intro_main {
    margin-left: 8%;
  }
}

.top-intro_heading {
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .top-intro_heading {
    margin-bottom: 60px;
  }
}
.top-intro_heading > span {
  display: inline-block;
  margin-bottom: 3px;
  background: var(--color_main);
  color: #fff;
  font-size: clamp(1.5rem, 1.154rem + 1.538vw, 2.5rem);
  font-weight: 700;
  padding: 2px 5px;
  clip-path: inset(0 100% 0 0);
}
@media screen and (min-width: 768px) {
  .top-intro_heading > span {
    font-size: clamp(1.625rem, 0.562rem + 2.215vw, 2.5rem);
  }
}
.top-intro_heading > span[data-aos=is-animation].aos-animate {
  animation: introHeading 2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.top-intro_heading > span:nth-of-type(2)[data-aos=is-animation].aos-animate {
  animation-delay: 0.1s;
}

@keyframes introHeading {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
.top-intro_txt {
  font-size: clamp(0.875rem, 0.745rem + 0.577vw, 1.25rem);
  line-height: 2;
  font-weight: 500;
  word-break: keep-all;
}

.top-intro_img01 span {
  display: block;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}

.top-intro_img02 {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-intro_img02 {
    display: block;
  }
}
.top-intro_img02 span {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.top-intro_img03 {
  padding-top: min(10cqw, 100px);
  display: none;
}
@media screen and (min-width: 768px) {
  .top-intro_img03 {
    display: block;
  }
}
.top-intro_img03 span {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.top-news {
  border: 2px solid var(--color_main);
  border-radius: var(--kadomaru);
  padding: 20px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .top-news {
    border-width: 3px;
    padding: 30px;
    display: flex;
    column-gap: 5%;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .top-news {
    padding: 50px;
  }
}

.top-news_heading {
  margin-left: -20px;
  width: fit-content;
  padding: 10px 40px;
  border-radius: 0 9999px 9999px 0;
  color: #fff;
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
  font-weight: 700;
  background: var(--color_main);
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 768px) {
  .top-news_heading {
    border-radius: 0 0 9999px 9999px;
    writing-mode: vertical-rl;
    padding: 50px 15px 60px 15px;
    margin-top: -30px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .top-news_heading {
    margin-top: -50px;
    padding: 50px 20px 60px 20px;
  }
}

.top-news_inner {
  flex: 1;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .top-news_inner {
    margin-top: 0;
  }
}

.top-facility {
  border: 2px solid var(--color_main);
  border-radius: var(--kadomaru);
  background: #fff;
  color: var(--color_main);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-facility {
    border-width: 3px;
  }
}

.top-facility_heading {
  background: var(--color_bg02);
  padding: 20px;
  text-align: center;
  font-size: clamp(1.375rem, 1.072rem + 1.346vw, 2.25rem);
  color: currentColor;
  border-bottom: 2px solid var(--color_main);
}
@media screen and (min-width: 768px) {
  .top-facility_heading {
    padding-block: 30px;
  }
}

.top-facility_list {
  padding: 30px min(6cqw, 90px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  column-gap: 5%;
  row-gap: min(6cqw, 70px);
}
@media screen and (min-width: 768px) {
  .top-facility_list {
    padding-block: 60px;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    column-gap: 8%;
  }
}
@media screen and (min-width: 1200px) {
  .top-facility_list {
    padding-block: 90px;
    column-gap: 10%;
  }
}

.top-facility_item {
  display: grid;
  grid-template-columns: min(27%, 122px) 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  grid-template-areas: "tf-img tf-heading" "tf-img tf-txt";
  column-gap: 5%;
}
.top-facility_item div {
  grid-area: tf-img;
}
.top-facility_item h3 {
  grid-area: tf-heading;
}
.top-facility_item p {
  grid-area: tf-txt;
}

.top-facility_item h3 {
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
  line-height: 1.3;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid currentColor;
}
@media screen and (min-width: 768px) {
  .top-facility_item h3 {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.top-facility_item p {
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  line-height: 1.6;
  color: var(--color_txt);
}

.top-hotels {
  background: var(--color_bg02);
}

/*=============================================================
  news.scss
==============================================================*/
.news-list {
  container-type: inline-size;
}

.news-listItem {
  border-bottom: 2px dashed var(--color_gray_light);
}
.news-listItem a {
  display: block;
  padding: 20px 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 5px;
  column-gap: 10px;
}
@media screen and (min-width: 768px) {
  .news-listItem a {
    padding: 25px 0;
    row-gap: 10px;
    column-gap: 20px;
  }
}
@media (any-hover: hover) {
  .news-listItem a:hover .news-listItem_title {
    color: var(--color_txt);
  }
}

.news-listItem_date {
  position: relative;
  color: var(--color_txt);
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  font-family: var(--font_eiji);
  font-weight: 700;
  width: 90px;
}
@media screen and (min-width: 1200px) {
  .news-listItem_date {
    width: 100px;
  }
}

.news-listItem_category span {
  display: inline-block;
  padding: 3px min(5cqw, 20px);
  background: var(--color_gray_light);
  color: #fff;
  font-size: clamp(0.6875rem, 0.623rem + 0.288vw, 0.875rem);
  font-weight: 600;
  line-height: 1.3;
  border-radius: 9999px;
}

.news-listItem_title {
  width: 100%;
  transition: var(--trans_speed) all;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.6;
  color: var(--color_main);
}

@media screen and (min-width: 960px) {
  .news-listItem a:hover {
    color: var(--color_main);
  }
}

.news-entryData {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--color_border);
}
@media screen and (min-width: 768px) {
  .news-entryData {
    row-gap: 15px;
    column-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData {
    row-gap: 20px;
  }
}

.news-entryData_date {
  color: var(--color_txt);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  font-family: var(--font_eiji);
}

.news-entryData_category span {
  display: inline-block;
  padding: 3px min(5cqw, 20px);
  background: var(--color_gray_light);
  color: #fff;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  font-weight: 600;
  line-height: 1.3;
  border-radius: 9999px;
}

.news-entryData_title {
  width: 100%;
  font-size: clamp(1.375rem, 1.159rem + 0.962vw, 2rem);
  color: var(--color_main);
  line-height: 1.5;
}
/*=============================================================
  hotels.scss
==============================================================*/
.hotel-list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .hotel-list {
    row-gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .hotel-list {
    flex-direction: row;
    justify-content: center;
    column-gap: 3%;
    row-gap: 100px;
  }
}

.hotel-listItem {
  border-radius: var(--kadomaru);
  border: 2px solid var(--color_main);
  background: #fff;
  container-type: inline-size;
  position: relative;
}
@media screen and (min-width: 560px) {
  .hotel-listItem {
    display: grid;
    grid-template-columns: 45% 1fr;
    column-gap: 1%;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .hotel-listItem {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    width: 31.3333333333%;
  }
}
.hotel-listItem[data-aos] {
  transition-delay: 0s;
}
@media screen and (min-width: 560px) {
  .hotel-listItem[data-aos]:nth-of-type(even) {
    transition-delay: 0.2s;
  }
}
@media screen and (min-width: 768px) {
  .hotel-listItem[data-aos]:nth-of-type(3n-2) {
    transition-delay: 0s;
  }
  .hotel-listItem[data-aos]:nth-of-type(3n-1) {
    transition-delay: 0.15s;
  }
  .hotel-listItem[data-aos]:nth-of-type(3n) {
    transition-delay: 0.3s;
  }
}

.hotel-listItem_img {
  aspect-ratio: 374/236;
  border-radius: calc(var(--kadomaru) - 2px) calc(var(--kadomaru) - 2px) 0 0;
  overflow: hidden;
}
@media screen and (min-width: 560px) {
  .hotel-listItem_img {
    aspect-ratio: unset;
    border-radius: calc(var(--kadomaru) - 2px) 0 0 calc(var(--kadomaru) - 2px);
  }
}
@media screen and (min-width: 1200px) {
  .hotel-listItem_img {
    aspect-ratio: 374/236;
    border-radius: calc(var(--kadomaru) - 2px) calc(var(--kadomaru) - 2px) 0 0;
  }
}
.hotel-listItem_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hotel-listItem_inner {
  padding: min(8cqw, 40px) min(7cqw, 40px);
}
@media screen and (min-width: 560px) {
  .hotel-listItem_inner {
    padding: min(5cqw, 40px) min(4cqw, 40px);
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 1200px) {
  .hotel-listItem_inner {
    padding: min(8cqw, 40px) min(7cqw, 40px);
  }
}

.hotel-listItem_title {
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
  color: var(--color_main);
  text-align: center;
}

.hotel-listItem_point {
  padding-block: min(8cqw, 40px);
}
.hotel-listItem_point li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  font-weight: 700;
  line-height: 1.6;
}
.hotel-listItem_point li::before {
  content: "";
  background: url(../../img/ico-check.png) no-repeat center center/contain;
  display: block;
  width: 12px;
  aspect-ratio: 12/14;
  position: absolute;
  left: 0;
  top: 5px;
}
.hotel-listItem_point li:not(:last-of-type) {
  margin-bottom: 5px;
}

.hotel-listItem_btn {
  display: flex;
  justify-content: center;
  row-gap: 10px;
}
@media screen and (min-width: 560px) {
  .hotel-listItem_btn {
    margin-top: auto;
  }
}
@media screen and (min-width: 768px) {
  .hotel-listItem_btn {
    column-gap: 1.5%;
  }
}
@media screen and (min-width: 1200px) {
  .hotel-listItem_btn {
    margin-top: auto;
  }
}
.hotel-listItem_btn p {
  flex: 1;
}
.hotel-listItem_btn a {
  display: block;
  position: relative;
  border: 2px solid var(--color_main);
  border-radius: var(--kadomaru_small);
  font-weight: 600;
  padding: 20px 10px;
  transition: var(--trans_speed) all;
  text-align: center;
  font-size: min(5cqw, 18 * var(--rem));
}
@media screen and (min-width: 560px) {
  .hotel-listItem_btn a {
    font-size: calc(14 * var(--rem));
  }
}
@media (any-hover: hover) {
  .hotel-listItem_btn a:hover {
    background: var(--color_gray_light);
    color: #fff;
  }
}

.hotel-listItem_more a {
  background: var(--color_bg);
  color: var(--color_main);
}

.hotel-listItem_yoyaku a {
  display: block;
  background: var(--color_main);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .hotel-listItem_yoyaku a {
    padding-left: calc(10px + 15%);
  }
}
@media (any-hover: hover) {
  .hotel-listItem_yoyaku a:hover {
    background: var(--color_gray_light);
  }
}
.hotel-listItem_yoyaku a span:first-of-type {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  background: rgba(255, 255, 255, 0.37);
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 560px) {
  .hotel-listItem_yoyaku a span:first-of-type {
    width: min(15%, 40px);
  }
}
.hotel-listItem_yoyaku a span:first-of-type svg {
  width: 50%;
  fill: #fff;
}

.hotel-listItem_open {
  background: #e3c604;
  width: min(23cqw, 100px);
  position: absolute;
  left: 0;
  top: 0;
  translate: -20% -20%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.3;
  font-weight: 700;
  rotate: -20deg;
}
@media screen and (min-width: 1200px) {
  .hotel-listItem_open {
    width: min(28cqw, 150px);
    translate: -30% -30%;
  }
}
.hotel-listItem_open strong {
  font-size: 110%;
  width: 100%;
}

.hotel-entry {
  position: relative;
}

.hotel-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 30px;
  grid-template-areas: "h-title" "h-promo" "h-point" "h-btn";
}
@media screen and (min-width: 768px) {
  .hotel-detail {
    grid-template-columns: minmax(0, 55%) minmax(0, 1fr);
    column-gap: 3%;
    row-gap: 50px;
    grid-template-areas: "h-promo h-title" "h-promo h-point" "h-btn h-btn";
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .hotel-detail {
    grid-template-columns: minmax(0, 60%) minmax(0, 1fr);
    column-gap: 5%;
    grid-template-areas: "h-promo h-title" "h-promo h-point" "h-promo h-btn";
  }
}

.hotel-detail_title {
  grid-area: h-title;
}
@media screen and (min-width: 768px) {
  .hotel-detail_title {
    align-self: self-end;
  }
}

.hotel-detail_promo {
  grid-area: h-promo;
}

.hotel-detail_point {
  grid-area: h-point;
}
@media screen and (min-width: 768px) {
  .hotel-detail_point {
    align-self: self-start;
  }
}

.hotel-detail_yoyaku01 {
  grid-area: h-btn;
}

.hotel-detail_promo {
  margin-inline: var(--full-bleed);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hotel-detail_promo {
    border-radius: var(--kadomaru);
    margin-inline: 0;
  }
}

.hotel-detail_img {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hotel-detail_img {
    border-radius: var(--kadomaru);
  }
}
.hotel-detail_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hotel-detail_open {
  background: #e3c604;
  width: fit-content;
  margin-inline: auto;
  border-radius: 9999px;
  flex-wrap: wrap;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  line-height: 1.3;
  font-weight: 700;
  padding: 10px 20px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .hotel-detail_open {
    padding: 10px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .hotel-detail_open {
    padding: 10px 40px;
  }
}
.hotel-detail_open strong {
  font-size: 110%;
  margin-right: 10px;
}
.hotel-detail_open span {
  display: inline-block;
}
.hotel-detail_open br {
  display: none;
}

.hotel-detail_point {
  background: #fff;
  border: 2px solid var(--color_main);
  padding: min(5cqw, 30px);
  border-radius: var(--kadomaru);
}
.hotel-detail_point li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .hotel-detail_point li {
    font-size: clamp(0.9375rem, 0.71rem + 0.475vw, 1.125rem);
  }
}
.hotel-detail_point li::before {
  content: "";
  background: url(../../img/ico-check.png) no-repeat center center/contain;
  display: block;
  width: 12px;
  aspect-ratio: 12/14;
  position: absolute;
  left: 0;
  top: 5px;
}
.hotel-detail_point li:not(:last-of-type) {
  margin-bottom: 5px;
}

.hotel-detail_yoyaku01 a {
  display: block;
  position: relative;
  margin-inline: auto;
  max-width: 400px;
  background: var(--color_main);
  color: #fff;
  border-radius: var(--kadomaru_small);
  font-weight: 600;
  padding: 20px 10px;
  transition: var(--trans_speed) all;
  text-align: center;
  font-size: clamp(1rem, 0.827rem + 0.769vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .hotel-detail_yoyaku01 a {
    padding-left: calc(10px + 5%);
    padding-block: 30px;
  }
}
@media (any-hover: hover) {
  .hotel-detail_yoyaku01 a:hover {
    background: var(--color_gray_light);
  }
}
.hotel-detail_yoyaku01 a span:first-of-type {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  background: rgba(255, 255, 255, 0.37);
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 560px) {
  .hotel-detail_yoyaku01 a span:first-of-type {
    width: min(15%, 50px);
  }
}
.hotel-detail_yoyaku01 a span:first-of-type svg {
  width: 50%;
  fill: #fff;
}

.hotel-detail_yoyaku02 {
  background: url(../../img/bg01.png) no-repeat right 10%, url(../../img/bg02.png) no-repeat left center, url(../../img/bg01.png) no-repeat right bottom, var(--color_bg02);
  background-size: 15% auto;
}
.hotel-detail_yoyaku02 a {
  display: flex;
  align-items: center;
  position: relative;
  margin-inline: auto;
  width: 80%;
  background: var(--color_main);
  color: #fff;
  border-radius: var(--kadomaru_small);
  font-weight: 600;
  padding: 20px 10px;
  transition: var(--trans_speed) all;
  text-align: center;
  font-size: clamp(1.125rem, 0.865rem + 1.154vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .hotel-detail_yoyaku02 a {
    padding-block: 30px;
  }
}
@media (any-hover: hover) {
  .hotel-detail_yoyaku02 a:hover {
    background: var(--color_gray_light);
  }
}
.hotel-detail_yoyaku02 a span:first-of-type {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  background: rgba(255, 255, 255, 0.37);
  border-radius: 50%;
}
@media screen and (min-width: 560px) {
  .hotel-detail_yoyaku02 a span:first-of-type {
    width: min(15%, 50px);
  }
}
.hotel-detail_yoyaku02 a span:first-of-type svg {
  width: 50%;
  fill: #fff;
}
.hotel-detail_yoyaku02 a span:nth-of-type(2) {
  flex: 1;
  text-align: center;
}

.hotel-detail_yoyaku03 {
  position: fixed;
  right: 0;
  bottom: 15vh;
}

.hotel-detail_yoyaku03 a {
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  background: var(--color_main);
  color: #fff;
  border-right: none;
  border-radius: var(--kadomaru_small) 0 0 var(--kadomaru_small);
  font-weight: 600;
  padding: 20px 8px;
  transition: var(--trans_speed) all;
  font-size: clamp(0.875rem, 0.745rem + 0.577vw, 1.25rem);
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .hotel-detail_yoyaku03 a {
    padding: 30px 10px;
  }
}
@media (any-hover: hover) {
  .hotel-detail_yoyaku03 a:hover {
    background: var(--color_gray_light);
  }
}
.hotel-detail_yoyaku03 a span:first-of-type {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  background: rgba(255, 255, 255, 0.37);
  border-radius: 50%;
}
@media screen and (min-width: 560px) {
  .hotel-detail_yoyaku03 a span:first-of-type {
    width: 30px;
  }
}
@media screen and (min-width: 560px) {
  .hotel-detail_yoyaku03 a span:first-of-type {
    width: 40px;
  }
}
.hotel-detail_yoyaku03 a span:first-of-type svg {
  width: 50%;
  fill: #fff;
}

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

.hotel-detail_map {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .hotel-detail_map {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .hotel-detail_map {
    margin-top: 40px;
  }
}
.hotel-detail_map iframe {
  width: 100%;
  height: 450px;
}

/*=============================================================
  notfound.scss
============================================================= */
.notfoundWrap {
  position: relative;
}
.notfoundWrap .c-headingGroup03 {
  --title_main_color: var(--color_off-white);
  --title_sub_color: var(--color_off-white);
  --title_border_color: var(--color_off-white);
}

.notfound_img {
  width: 100%;
  height: calc(100vh + 11.0416666667cqw);
  position: relative;
}
.notfound_img::before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  inset: 0;
}
.notfound_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.notfound_main {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.notfound {
  padding: 20px;
  background: #fff;
  border-radius: var(--kadomaru);
  border: 2px solid var(--color_main);
}
@media screen and (min-width: 768px) {
  .notfound {
    padding: 40px;
    border-width: 3px;
  }
}
@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 {
  overflow: hidden;
}

body.mce-content-body,
.entryBody {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  body.mce-content-body,
  .entryBody {
    line-height: 1.9;
  }
}
@media screen and (min-width: 1200px) {
  body.mce-content-body,
  .entryBody {
    line-height: 2;
  }
}
body.mce-content-body > *:first-child,
.entryBody > *:first-child {
  margin-top: 0 !important;
}
body.mce-content-body > *:last-child,
.entryBody > *:last-child {
  margin-bottom: 0 !important;
}
body.mce-content-body h2:not([class]),
.entryBody h2:not([class]) {
  margin-top: 100px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  body.mce-content-body h2:not([class]),
  .entryBody h2:not([class]) {
    margin-top: 120px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  body.mce-content-body h2:not([class]),
  .entryBody h2:not([class]) {
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
body.mce-content-body h3:not([class]),
.entryBody h3:not([class]) {
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  body.mce-content-body h3:not([class]),
  .entryBody h3:not([class]) {
    margin-top: 100px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  body.mce-content-body h3:not([class]),
  .entryBody h3:not([class]) {
    margin-top: 120px;
    margin-bottom: 30px;
  }
}
body.mce-content-body h4:not([class]),
.entryBody h4:not([class]) {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  body.mce-content-body h4:not([class]),
  .entryBody h4:not([class]) {
    margin-top: 80px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  body.mce-content-body h4:not([class]),
  .entryBody h4:not([class]) {
    margin-top: 100px;
    margin-bottom: 30px;
  }
}
body.mce-content-body h5:not([class]),
.entryBody h5:not([class]) {
  margin-top: 50px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  body.mce-content-body h5:not([class]),
  .entryBody h5:not([class]) {
    margin-top: 65px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  body.mce-content-body h5:not([class]),
  .entryBody h5:not([class]) {
    margin-top: 80px;
    margin-bottom: 20px;
  }
}
body.mce-content-body h6:not([class]),
.entryBody h6:not([class]) {
  margin-top: 40px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  body.mce-content-body h6:not([class]),
  .entryBody h6:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  body.mce-content-body h6:not([class]),
  .entryBody h6:not([class]) {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
body.mce-content-body p:not([class]) + p:not([class]),
.entryBody p:not([class]) + p:not([class]) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  body.mce-content-body p:not([class]) + p:not([class]),
  .entryBody p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
}
body.mce-content-body,
.entryBody {
  /*
  &.txtbox p{
    margin-bottom: 0px;
  }
  &.txtbox p + p{
    margin-top:0px;
  }

  p strong{
  }

  p + div{
    margin-top: 30px;
    @include mq-up(xl) {
      margin-top: 40px;
    }
  }
  div{
    margin-bottom: 30px;
    @include mq-up(xl) {
      margin-bottom: 40px;
    }
  }
  */
}
body.mce-content-body a:not([class]):not(.no-entryBody),
.entryBody a:not([class]):not(.no-entryBody) {
  color: #1530A0;
  text-decoration: underline;
}
@media (any-hover: hover) {
  body.mce-content-body a:not([class]):not(.no-entryBody):hover,
  .entryBody a:not([class]):not(.no-entryBody):hover {
    color: #2b51e6;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  body.mce-content-body a:not([class]):not(.no-entryBody)[href^=tel],
  .entryBody a:not([class]):not(.no-entryBody)[href^=tel] {
    pointer-events: none;
    color: var(--color_txt);
    text-decoration: none;
  }
}
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"],
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"],
.entryBody a:not([class]):not(.no-entryBody)[href$=".doc"],
.entryBody a:not([class]):not(.no-entryBody)[href$=".docx"],
.entryBody a:not([class]):not(.no-entryBody)[href$=".xls"],
.entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"],
.entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
  padding-right: 15px;
  position: relative;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  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"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
    padding-right: 18px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  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"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"],
  .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
    padding-right: 20px;
  }
}
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,
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"]::after,
.entryBody a:not([class]):not(.no-entryBody)[href$=".doc"]::after,
.entryBody a:not([class]):not(.no-entryBody)[href$=".docx"]::after,
.entryBody a:not([class]):not(.no-entryBody)[href$=".xls"]::after,
.entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"]::after,
.entryBody a:not([class]):not(.no-entryBody)[href$=".txt"]::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--trans_speed) color;
}
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".pdf"]::after,
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c1";
  font-weight: 900;
  color: #f20f00;
}
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,
.entryBody a:not([class]):not(.no-entryBody)[href$=".doc"]::after,
.entryBody a:not([class]):not(.no-entryBody)[href$=".docx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c2";
  font-weight: 900;
  color: #144aab;
}
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,
.entryBody a:not([class]):not(.no-entryBody)[href$=".xls"]::after,
.entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c3";
  font-weight: 900;
  color: #077d3f;
}
body.mce-content-body a:not([class]):not(.no-entryBody)[href$=".txt"]::after,
.entryBody a:not([class]):not(.no-entryBody)[href$=".txt"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f15c";
  font-weight: 900;
  font-weight: 500;
  color: #666;
}
body.mce-content-body table,
.entryBody table {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  width: 100%;
  margin: 30px 0;
  table-layout: fixed;
  background: #fff;
}
@media screen and (min-width: 1200px) {
  body.mce-content-body table,
  .entryBody table {
    margin: 40px 0;
  }
}
body.mce-content-body table th,
body.mce-content-body table td,
.entryBody table th,
.entryBody 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) {
  body.mce-content-body table th,
  body.mce-content-body table td,
  .entryBody table th,
  .entryBody table td {
    padding: 15px;
  }
}
@media screen and (min-width: 1200px) {
  body.mce-content-body table th,
  body.mce-content-body table td,
  .entryBody table th,
  .entryBody table td {
    line-height: 180%;
    padding: 15px 20px;
  }
}
body.mce-content-body table th,
.entryBody table th {
  background: var(--color_bg03);
}
body.mce-content-body table thead th,
.entryBody table thead th {
  background: var(--color_main);
  color: #fff;
  text-align: center;
  font-size: 100%;
  padding: 12px 10px;
}
@media screen and (min-width: 768px) {
  body.mce-content-body table thead th,
  .entryBody table thead th {
    padding: 18px 15px;
    font-size: 105%;
  }
}
@media screen and (min-width: 1200px) {
  body.mce-content-body table thead th,
  .entryBody table thead th {
    padding: 20px;
  }
}
body.mce-content-body ul:not(.no-entryBody):not([class]),
body.mce-content-body ol:not(.no-entryBody):not([class]),
.entryBody ul:not(.no-entryBody):not([class]),
.entryBody ol:not(.no-entryBody):not([class]) {
  margin-block: 20px;
  padding-left: 1.5em;
}
body.mce-content-body ul:not(.no-entryBody):not([class]) li,
body.mce-content-body ol:not(.no-entryBody):not([class]) li,
.entryBody ul:not(.no-entryBody):not([class]) li,
.entryBody ol:not(.no-entryBody):not([class]) li {
  position: relative;
  margin-top: 10px;
  line-height: inherit;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  body.mce-content-body ul:not(.no-entryBody):not([class]) li,
  body.mce-content-body ol:not(.no-entryBody):not([class]) li,
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  body.mce-content-body ul:not(.no-entryBody):not([class]) li,
  body.mce-content-body ol:not(.no-entryBody):not([class]) li,
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    margin-top: 20px;
  }
}
body.mce-content-body ul:not(.no-entryBody):not([class]),
.entryBody ul:not(.no-entryBody):not([class]) {
  list-style-type: disc;
}
body.mce-content-body ol:not(.no-entryBody):not([class]),
.entryBody ol:not(.no-entryBody):not([class]) {
  list-style-type: decimal;
}
body.mce-content-body img,
.entryBody img {
  border-radius: var(--entry_kadomaru);
}

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