@charset "UTF-8";
/************************************
 * WP
 ***********************************/
/************************************
 * Font
 ***********************************/
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
/************************************
 * Contents 領域・余白
 ***********************************/
/************************************
 * tag の基本設定
 *  C: color, P : parts
 ***********************************/
/************************************
 * assetsパス
 ***********************************/
/************************************
 * flex-col　余白
 ***********************************/
/************************************
 * Icon font
 ***********************************/
/************************************
 * Icon font
 ***********************************/
/************************************
 * Using plugin
 ***********************************/
/************************************
* 画像アレンジレイアウト
***********************************/
/*********************************************************************
 * MIXIN
 ********************************************************************/
/*** font family ****************************************************/
/*** font size *****************************************************/
/*** icon font *****************************************************/
@font-face {
  font-family: "icon";
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon.wof") format("woff"), url("../fonts/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/*** sicon font *****************************************************/
@font-face {
  font-family: "shimaya_icon";
  src: url("../fonts/shimaya_icon.eot");
  src: url("../fonts/shimaya_icon.eot#iefix") format("embedded-opentype"), url("../fonts/shimaya_icon.ttf") format("truetype"), url("../fonts/shimaya_icon.wof") format("woff"), url("../fonts/shimaya_icon.svg#shimaya_icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/************************************
 * Reset
 ***********************************/
/*********************************
 * A Modern CSS Reset 
 * Web : https://piccalil.li/blog/a-modern-css-reset
 * Git : https://github.com/hankchizljaw/modern-css-reset
 ********************************/
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/************************************
 * 追加 Reset Code
 ***********************************/
table {
  border-collapse: collapse;
}

/************************************
 * CSS変数の出力
 ***********************************/
:root {
  --spacing--0: calc(0 / 2);
  --spacing--default: calc(1rem / 2);
  --spacing--m: calc(2rem / 2);
  --spacing--l: calc(3rem / 2);
  --spacing--xl: calc(4rem / 2);
  --font-size--s: 0.8rem;
  --font-size--m: 1rem;
  --font-size--l: 1.25rem;
  --font-size--xl: 1.5rem;
  --font-size--xxl: 2rem;
  --color--main: #df180b;
  --color--sub: #fffbeb;
  --color--black: #000;
  --color--white: #fff;
  --color--none: transparent;
  --color--btn__reset: #a3a3a3;
  --color--red: #ff0000;
  --color--orange: #ff8000;
  --color--yellow: #ffff00;
  --color--green: #4cc764;
  --color--blue: #0000ff;
  --color--gray: #666;
  --color--lightgray: #ccc;
  --color--palegray: #b4b4b4;
  --color--verylightgray: #f5f5f5;
  --color--bg: #e1f4ff;
  --color--text: #222;
  --color--error: #c00;
  --color--link: #df180b;
  --color--hover: #111;
  --color--btn_bg: #df180b;
  --color--btn_txt: #fff;
  --color--btn_gray: #dcdcdc;
  --color--border: #111;
  --color--hamburger: #111;
  --wp--preset--spacing--0: var(--spacing--0);
  --wp--preset--spacing--default: var(--spacing--default);
  --wp--preset--spacing--m: var(--spacing--m);
  --wp--preset--spacing--l: var(--spacing--l);
  --wp--preset--spacing--xl: var(--spacing--xl);
  --wp--preset--font-size--s: var(--font-size--s);
  --wp--preset--font-size--m: var(--font-size--m);
  --wp--preset--font-size--l: var(--font-size--l);
  --wp--preset--font-size--xl: var(--font-size--xl);
  --wp--preset--font-size--xxl: var(--font-size--xxl);
  --wp--preset--color--main: var(--color--main);
  --wp--preset--color--sub: var(--color--sub);
  --wp--preset--color--black: var(--color--black);
  --wp--preset--color--white: var(--color--white);
  --wp--preset--color--none: var(--color--none);
  --wp--preset--color--btn__reset: var(--color--btn__reset);
  --wp--preset--color--red: var(--color--red);
  --wp--preset--color--orange: var(--color--orange);
  --wp--preset--color--yellow: var(--color--yellow);
  --wp--preset--color--green: var(--color--green);
  --wp--preset--color--blue: var(--color--blue);
  --wp--preset--color--gray: var(--color--gray);
  --wp--preset--color--lightgray: var(--color--lightgray);
  --wp--preset--color--palegray: var(--color--palegray);
  --wp--preset--color--verylightgray: var(--color--verylightgray);
  --wp--preset--color--bg: var(--color--bg);
  --wp--preset--color--text: var(--color--text);
  --wp--preset--color--error: var(--color--error);
  --wp--preset--color--link: var(--color--link);
  --wp--preset--color--hover: var(--color--hover);
  --wp--preset--color--btn_bg: var(--color--btn_bg);
  --wp--preset--color--btn_txt: var(--color--btn_txt);
  --wp--preset--color--btn_gray: var(--color--btn_gray);
  --wp--preset--color--border: var(--color--border);
  --wp--preset--color--hamburger: var(--color--hamburger);
  --wp--preset--color--primary: var(--wp--preset--color--main);
  --wp--preset--color--secondary: var(--wp--preset--color--sub);
  --wp--style--unstable-gallery-gap: var(--wp--preset--spacing--default);
  --gallery-block--gutter-size: var(--spacing-default);
}

/************************************
 * global
 ***********************************/
.has-s-font-size {
  font-size: var(--wp--preset--font-size--s) !important;
}

.has-m-font-size {
  font-size: var(--wp--preset--font-size--m) !important;
}

.has-l-font-size {
  font-size: var(--wp--preset--font-size--l) !important;
}

.has-xl-font-size {
  font-size: var(--wp--preset--font-size--xl) !important;
}

.has-xxl-font-size {
  font-size: var(--wp--preset--font-size--xxl) !important;
}

.has-main {
  color: var(--wp--preset--color--main) !important;
}

.has-sub {
  color: var(--wp--preset--color--sub) !important;
}

.has-black {
  color: var(--wp--preset--color--black) !important;
}

.has-white {
  color: var(--wp--preset--color--white) !important;
}

.has-none {
  color: var(--wp--preset--color--none) !important;
}

.has-btn__reset {
  color: var(--wp--preset--color--btn__reset) !important;
}

.has-red {
  color: var(--wp--preset--color--red) !important;
}

.has-orange {
  color: var(--wp--preset--color--orange) !important;
}

.has-yellow {
  color: var(--wp--preset--color--yellow) !important;
}

.has-green {
  color: var(--wp--preset--color--green) !important;
}

.has-blue {
  color: var(--wp--preset--color--blue) !important;
}

.has-gray {
  color: var(--wp--preset--color--gray) !important;
}

.has-lightgray {
  color: var(--wp--preset--color--lightgray) !important;
}

.has-palegray {
  color: var(--wp--preset--color--palegray) !important;
}

.has-verylightgray {
  color: var(--wp--preset--color--verylightgray) !important;
}

.has-bg {
  color: var(--wp--preset--color--bg) !important;
}

.has-text {
  color: var(--wp--preset--color--text) !important;
}

.has-error {
  color: var(--wp--preset--color--error) !important;
}

.has-link {
  color: var(--wp--preset--color--link) !important;
}

.has-hover {
  color: var(--wp--preset--color--hover) !important;
}

.has-btn_bg {
  color: var(--wp--preset--color--btn_bg) !important;
}

.has-btn_txt {
  color: var(--wp--preset--color--btn_txt) !important;
}

.has-btn_gray {
  color: var(--wp--preset--color--btn_gray) !important;
}

.has-border {
  color: var(--wp--preset--color--border) !important;
}

.has-hamburger {
  color: var(--wp--preset--color--hamburger) !important;
}

.has-main-background-color {
  background-color: var(--wp--preset--color--main) !important;
}

.has-sub-background-color {
  background-color: var(--wp--preset--color--sub) !important;
}

.has-black-background-color {
  background-color: var(--wp--preset--color--black) !important;
}

.has-white-background-color {
  background-color: var(--wp--preset--color--white) !important;
}

.has-none-background-color {
  background-color: var(--wp--preset--color--none) !important;
}

.has-btn__reset-background-color {
  background-color: var(--wp--preset--color--btn__reset) !important;
}

.has-red-background-color {
  background-color: var(--wp--preset--color--red) !important;
}

.has-orange-background-color {
  background-color: var(--wp--preset--color--orange) !important;
}

.has-yellow-background-color {
  background-color: var(--wp--preset--color--yellow) !important;
}

.has-green-background-color {
  background-color: var(--wp--preset--color--green) !important;
}

.has-blue-background-color {
  background-color: var(--wp--preset--color--blue) !important;
}

.has-gray-background-color {
  background-color: var(--wp--preset--color--gray) !important;
}

.has-lightgray-background-color {
  background-color: var(--wp--preset--color--lightgray) !important;
}

.has-palegray-background-color {
  background-color: var(--wp--preset--color--palegray) !important;
}

.has-verylightgray-background-color {
  background-color: var(--wp--preset--color--verylightgray) !important;
}

.has-bg-background-color {
  background-color: var(--wp--preset--color--bg) !important;
}

.has-text-background-color {
  background-color: var(--wp--preset--color--text) !important;
}

.has-error-background-color {
  background-color: var(--wp--preset--color--error) !important;
}

.has-link-background-color {
  background-color: var(--wp--preset--color--link) !important;
}

.has-hover-background-color {
  background-color: var(--wp--preset--color--hover) !important;
}

.has-btn_bg-background-color {
  background-color: var(--wp--preset--color--btn_bg) !important;
}

.has-btn_txt-background-color {
  background-color: var(--wp--preset--color--btn_txt) !important;
}

.has-btn_gray-background-color {
  background-color: var(--wp--preset--color--btn_gray) !important;
}

.has-border-background-color {
  background-color: var(--wp--preset--color--border) !important;
}

.has-hamburger-background-color {
  background-color: var(--wp--preset--color--hamburger) !important;
}

/************************************
 * clear
 ***********************************/
.cf::after {
  content: "";
  display: block;
  clear: both;
}

.clr,
.clear {
  clear: both;
}

/************************************
 * List
 ***********************************/
ul,
ol {
  padding-left: 0;
  margin-left: 0;
}
ul > li,
ol > li {
  padding-left: 0;
  text-indent: 0;
  line-height: 1.4;
  margin-top: 0.8em;
}
ul > li ul:last-child,
ul > li ol:last-child,
ol > li ul:last-child,
ol > li ol:last-child {
  padding-bottom: 1em;
}
ul > a, ul > .wp-block-file__textlink,
ul > span,
ol > a,
ol > .wp-block-file__textlink,
ol > span {
  text-indent: 0;
}

ul {
  padding-left: 1.2em;
}
ul > li {
  list-style-type: circle;
  padding-left: 0;
  text-indent: 0;
}
ol {
  list-style: decimal;
}
ol li {
  list-style-position: inside;
}
ol li ol {
  margin-left: 1.5em;
}

.ul-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ul-reset li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.ul-reset li::marker {
  content: none;
}

/************************************
 * table
 ***********************************/
table:not(.acf-table) tr {
  height: auto !important;
}
table:not(.acf-table) tr th,
table:not(.acf-table) tr td {
  padding: 0.75em 1em;
  border: 1px solid var(--color--border);
}
table:not(.acf-table) tr th {
  background: var(--color--bg);
}
table:not(.acf-table) tr td {
  background: var(--color--white);
}

/************************************
 * Image
 ***********************************/
img {
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  height: auto;
  display: inline-block;
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: top;
}

/************************************
 * String   
 * b,i はHTML5での役割が微妙なので設定してない
 * Italic はmeiryoでは効かないので設定してない
 ***********************************/
strong,
em {
  font-weight: bold;
}

p,
th,
td,
li,
address,
small {
  line-height: 2.5;
}

/************************************
 * a
 ***********************************/
a:focus,
*:focus {
  outline: none;
}

a, .wp-block-file__textlink {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  color: var(--wp--preset--color--link);
  transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, top 0.3s ease-in-out, filter 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
a:hover, .wp-block-file__textlink:hover {
  color: var(--wp--preset--color--hover);
}

a[target=_blank]:before, [target=_blank].wp-block-file__textlink:before {
  content: "\e900";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

a[href$=".pdf"]:before, [href$=".pdf"].wp-block-file__textlink:before {
  content: "\e404";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

a[href$=".xls"]:before, [href$=".xls"].wp-block-file__textlink:before,
a[href$=".xlsx"]:before,
[href$=".xlsx"].wp-block-file__textlink:before {
  content: "\e401";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

a[href$=".docx"]:before, [href$=".docx"].wp-block-file__textlink:before,
a[href$=".doc"]:before,
[href$=".doc"].wp-block-file__textlink:before {
  content: "\e402";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

a[href$=".zip"]:before, [href$=".zip"].wp-block-file__textlink:before {
  content: "\e403";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

input[type=button],
input[type=submit],
input[type=reset],
button {
  transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, top 0.3s ease-in-out, filter 0.3s ease-in-out;
}

form {
  /************************************
  * Button
  ***********************************/
  /************************************
  * Form
  ***********************************/
}
form input[type=button],
form input[type=submit],
form button {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--color--main);
  border: 2px solid var(--color--main);
  border-radius: 4px;
  padding: 1em 1.5em;
  margin-block: 0.25em;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color--white);
  cursor: pointer;
  padding-right: 2.1em;
}
form input[type=button].hover:hover,
form input[type=submit].hover:hover,
form button.hover:hover {
  background-color: var(--color--white);
  border-color: var(--color--main);
  color: var(--color--main);
}
form input[type=button]::before,
form input[type=submit]::before,
form button::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
form input[type=reset] {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--color--main);
  border: 2px solid var(--color--main);
  border-radius: 4px;
  padding: 1em 1.5em;
  margin-block: 0.25em;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color--white);
  cursor: pointer;
  padding-right: 2.1em;
  background: var(--color--btn__reset);
  border-color: var(--color--btn__reset);
  color: #fff;
}
form input[type=reset].hover:hover {
  background-color: var(--color--white);
  border-color: var(--color--main);
  color: var(--color--main);
}
form input[type=reset]::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
form input[type=reset].hover:hover {
  background: var(--color--white);
  border-color: rgba(163, 163, 163, 0.4);
  color: var(--color--btn__reset);
}
form textarea,
form input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=reset]):not([type=submit]),
form select {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  appearance: none;
  padding-block: 1em;
  padding-inline: 1.4em;
  cursor: pointer;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid var(--wp--preset--color--lightgray);
  transition: border 0.3s;
}
form textarea:focus,
form input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=reset]):not([type=submit]):focus,
form select:focus {
  border-color: #000;
}
form textarea:invalid,
form input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=reset]):not([type=submit]):invalid,
form select:invalid {
  background-color: #fcefef;
}
form textarea:valid,
form input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=reset]):not([type=submit]):valid,
form select:valid {
  background-color: #e6eeee;
}
form textarea:placeholder-shown,
form input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=reset]):not([type=submit]):placeholder-shown,
form select:placeholder-shown {
  background-color: #f8f8f8;
}
form ::placeholder {
  font-family: "Noto Sans JP", sans-serif;
}
form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #e6eeee inset;
}
form input[type=radio],
form input[type=checkbox] {
  border: none;
}
form input[type=radio] {
  border-radius: 100%;
  appearance: radio;
}
form input[type=text],
form input[type=email],
form input[type=url] {
  width: 100%;
}
form input[type=tel] {
  width: 100%;
}
form input[type=date] {
  width: 50%;
}
form input[type=number] {
  width: 8em;
}
form textarea {
  width: 100%;
  height: 200px;
}
form .select-wrap {
  position: relative;
  display: inline-block;
}
form .select-wrap::after {
  position: absolute;
  right: 0.8em;
  height: 100%;
  pointer-events: none;
  color: var(--wp--preset--color--gray);
  content: "\e902";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
form select {
  background-color: #fff !important;
  appearance: none;
  padding-right: 3em;
}
form .select-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  bottom: 0;
  right: 1em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #e8f0fe transparent transparent transparent;
  margin-top: -3px;
}
form .select-wrap.changed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-color: var(--color--main) transparent transparent transparent;
  margin-top: 0px;
}
form .select-wrap.changed select {
  background-color: #e6eeee !important;
}
form .select-wrap .wpcf7-form-control-wrap {
  position: relative;
}
form .select-wrap .wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  right: 0.5em;
  top: 50%;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #ccc transparent transparent transparent;
  pointer-events: none;
}
form .wpcf7-spinner {
  display: none !important;
}
form label {
  display: inline-block;
  margin-left: 1em;
  cursor: pointer;
}
form label:first-child {
  margin-left: 0;
}
form .btn-area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-block: 1.5em;
}

.error {
  width: 100%;
  display: block;
  margin-top: 0.5em !important;
  color: var(--color--error);
  font-size: 0.75rem;
}

.icon {
  display: flex;
  align-items: center;
}

.icon::before {
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

.icon-blank::before {
  content: "\e900";
}

.icon-arrow_top::before {
  content: "\e901";
}

.icon-arrow_bottom::before {
  content: "\e902";
}

.icon-arrow_left::before {
  content: "\e903";
}

.icon-arrow_right::before {
  content: "\e904";
}

.icon-up::before {
  content: "\e301";
}

.icon-down::before {
  content: "\e302";
}

.icon-prev::before {
  content: "\e303";
}

.icon-next::before {
  content: "\e304";
}

.icon-first::before {
  content: "\e305";
}

.icon-end::before {
  content: "\e306";
}

.icon-excel::before {
  content: "\e401";
}

.icon-word::before {
  content: "\e402";
}

.icon-zip::before {
  content: "\e403";
}

.icon-pdf::before {
  content: "\e404";
}

.icon-x::before {
  content: "\e501";
}

.icon-facebook::before {
  content: "\e502";
}

.icon-instagram::before {
  content: "\e503";
}

.icon-youtube::before {
  content: "\e504";
}

.icon-search::before {
  content: "\e601";
}

.icon-tag::before {
  content: "\e602";
}

.icon-access::before {
  content: "\e603";
}

.icon-filter::before {
  content: "\e605";
}

.icon-mail::before {
  content: "\e701";
}

.icon-phone::before {
  content: "\e702";
}

.icon-store::before {
  content: "\e906";
}

.icon-calendar::before {
  content: "\e801";
}

.icon-warning::before {
  content: "\e802";
}

@media print {
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    min-width: 1000px;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  #go-top {
    display: none;
  }
}
.pc-view {
  display: inherit !important;
}

.sp-view {
  display: none !important;
}

@media only screen and (max-width: 640px) {
  .pc-view {
    display: none !important;
  }
  .sp-view {
    display: inherit !important;
  }
}
.link-arw a, .link-arw .wp-block-file__textlink,
a.link-arw,
.link-arw.wp-block-file__textlink {
  color: var(--wp--preset--color--link);
  line-height: 1.4;
  text-decoration: none;
  margin-block: 0.25em;
  display: inline-block;
  gap: 6px;
  padding-left: 1.2em;
  text-indent: -0.6em;
}
.link-arw a::before, .link-arw .wp-block-file__textlink::before,
a.link-arw::before,
.link-arw.wp-block-file__textlink::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 0.13em;
  margin-right: 0.2em;
}
.link-arw a::after, .link-arw .wp-block-file__textlink::after,
a.link-arw::after,
.link-arw.wp-block-file__textlink::after {
  text-indent: 0;
}
.link-arw a.hover:hover, .link-arw .hover.wp-block-file__textlink:hover,
a.link-arw.hover:hover,
.link-arw.hover.wp-block-file__textlink:hover {
  color: var(--wp--preset--color--hover);
  opacity: 1;
}

.btn__basic,
.btn__basic a,
.btn__basic .wp-block-file__textlink,
a.btn__basic,
.btn__basic button,
button.btn__basic,
.is-style-btn__basic a,
.is-style-btn__basic .wp-block-file__textlink,
a.is-style-btn__basic,
.is-style-btn__basic.wp-block-file__textlink,
.is-style-btn__basic button,
button.is-style-btn__basic,
.wp-block-button__link {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--color--main);
  border: 2px solid var(--color--main);
  border-radius: 4px;
  padding: 1em 1.5em;
  margin-block: 0.25em;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color--white);
  cursor: pointer;
  padding-right: 2.1em;
}
.btn__basic.hover:hover,
.btn__basic a.hover:hover,
.btn__basic .hover.wp-block-file__textlink:hover,
a.btn__basic.hover:hover,
.btn__basic button.hover:hover,
button.btn__basic.hover:hover,
.is-style-btn__basic a.hover:hover,
.is-style-btn__basic .hover.wp-block-file__textlink:hover,
a.is-style-btn__basic.hover:hover,
.is-style-btn__basic.hover.wp-block-file__textlink:hover,
.is-style-btn__basic button.hover:hover,
button.is-style-btn__basic.hover:hover,
.wp-block-button__link.hover:hover {
  background-color: var(--color--white);
  border-color: var(--color--main);
  color: var(--color--main);
}
.btn__basic::before,
.btn__basic a::before,
.btn__basic .wp-block-file__textlink::before,
a.btn__basic::before,
.btn__basic button::before,
button.btn__basic::before,
.is-style-btn__basic a::before,
.is-style-btn__basic .wp-block-file__textlink::before,
a.is-style-btn__basic::before,
.is-style-btn__basic.wp-block-file__textlink::before,
.is-style-btn__basic button::before,
button.is-style-btn__basic::before,
.wp-block-button__link::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

.btn__outline,
.btn__outline a,
.btn__outline .wp-block-file__textlink,
a.btn__outline,
.btn__outline button,
button.btn__outline,
.is-style-btn__outline a,
.is-style-btn__outline .wp-block-file__textlink,
a.is-style-btn__outline,
.is-style-btn__outline.wp-block-file__textlink,
.is-style-btn__outline button,
button.is-style-btn__outline {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--color--main);
  border: 2px solid var(--color--main);
  border-radius: 4px;
  padding: 1em 1.5em;
  margin-block: 0.25em;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color--white);
  cursor: pointer;
  padding-right: 2.1em;
  background: #fff;
  color: var(--color--main);
}
.btn__outline.hover:hover,
.btn__outline a.hover:hover,
.btn__outline .hover.wp-block-file__textlink:hover,
a.btn__outline.hover:hover,
.btn__outline button.hover:hover,
button.btn__outline.hover:hover,
.is-style-btn__outline a.hover:hover,
.is-style-btn__outline .hover.wp-block-file__textlink:hover,
a.is-style-btn__outline.hover:hover,
.is-style-btn__outline.hover.wp-block-file__textlink:hover,
.is-style-btn__outline button.hover:hover,
button.is-style-btn__outline.hover:hover {
  background-color: var(--color--white);
  border-color: var(--color--main);
  color: var(--color--main);
}
.btn__outline::before,
.btn__outline a::before,
.btn__outline .wp-block-file__textlink::before,
a.btn__outline::before,
.btn__outline button::before,
button.btn__outline::before,
.is-style-btn__outline a::before,
.is-style-btn__outline .wp-block-file__textlink::before,
a.is-style-btn__outline::before,
.is-style-btn__outline.wp-block-file__textlink::before,
.is-style-btn__outline button::before,
button.is-style-btn__outline::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.btn__outline.hover:hover,
.btn__outline a.hover:hover,
.btn__outline .hover.wp-block-file__textlink:hover,
a.btn__outline.hover:hover,
.btn__outline button.hover:hover,
button.btn__outline.hover:hover,
.is-style-btn__outline a.hover:hover,
.is-style-btn__outline .hover.wp-block-file__textlink:hover,
a.is-style-btn__outline.hover:hover,
.is-style-btn__outline.hover.wp-block-file__textlink:hover,
.is-style-btn__outline button.hover:hover,
button.is-style-btn__outline.hover:hover {
  background: var(--color--main);
  color: var(--color--white);
}

.btn__reset,
.btn__reset a,
.btn__reset .wp-block-file__textlink,
a.btn__reset,
.btn__reset button,
button.btn__reset,
.is-style-btn__reset a,
.is-style-btn__reset .wp-block-file__textlink,
a.is-style-btn__reset,
.is-style-btn__reset.wp-block-file__textlink,
.is-style-btn__reset button,
button.is-style-btn__reset {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--color--main);
  border: 2px solid var(--color--main);
  border-radius: 4px;
  padding: 1em 1.5em;
  margin-block: 0.25em;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color--white);
  cursor: pointer;
  padding-right: 2.1em;
  background: var(--color--btn__reset);
  border-color: var(--color--btn__reset);
  color: #fff;
}
.btn__reset.hover:hover,
.btn__reset a.hover:hover,
.btn__reset .hover.wp-block-file__textlink:hover,
a.btn__reset.hover:hover,
.btn__reset button.hover:hover,
button.btn__reset.hover:hover,
.is-style-btn__reset a.hover:hover,
.is-style-btn__reset .hover.wp-block-file__textlink:hover,
a.is-style-btn__reset.hover:hover,
.is-style-btn__reset.hover.wp-block-file__textlink:hover,
.is-style-btn__reset button.hover:hover,
button.is-style-btn__reset.hover:hover {
  background-color: var(--color--white);
  border-color: var(--color--main);
  color: var(--color--main);
}
.btn__reset::before,
.btn__reset a::before,
.btn__reset .wp-block-file__textlink::before,
a.btn__reset::before,
.btn__reset button::before,
button.btn__reset::before,
.is-style-btn__reset a::before,
.is-style-btn__reset .wp-block-file__textlink::before,
a.is-style-btn__reset::before,
.is-style-btn__reset.wp-block-file__textlink::before,
.is-style-btn__reset button::before,
button.is-style-btn__reset::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.btn__reset.hover:hover,
.btn__reset a.hover:hover,
.btn__reset .hover.wp-block-file__textlink:hover,
a.btn__reset.hover:hover,
.btn__reset button.hover:hover,
button.btn__reset.hover:hover,
.is-style-btn__reset a.hover:hover,
.is-style-btn__reset .hover.wp-block-file__textlink:hover,
a.is-style-btn__reset.hover:hover,
.is-style-btn__reset.hover.wp-block-file__textlink:hover,
.is-style-btn__reset button.hover:hover,
button.is-style-btn__reset.hover:hover {
  background: var(--color--white);
  border-color: rgba(163, 163, 163, 0.4);
  color: var(--color--btn__reset);
}

form input[type=button],
form input[type=submit],
form button,
form button.btn__basic,
form button.btn__outline,
form button.btn__reset {
  min-width: 8em;
}
form input[type=button]::before,
form input[type=submit]::before,
form button::before,
form button.btn__basic::before,
form button.btn__outline::before,
form button.btn__reset::before {
  content: none !important;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-right {
  text-align: right;
}

.alignleft, .wp-block-embed.alignleft,
img.alignleft, .alignright, .wp-block-embed.alignright,
img.alignright {
  width: 48% !important;
  max-width: 48% !important;
  height: auto;
  clear: both;
}
@media screen and (max-width: 480px) {
  .alignleft, .wp-block-embed.alignleft,
  img.alignleft, .alignright, .wp-block-embed.alignright,
  img.alignright {
    width: 100% !important;
    max-width: 100% !important;
  }
}

*:has(.alignright, .wp-block-embed.alignright, .alignleft, .wp-block-embed.alignleft)::after {
  content: "";
  display: block;
  clear: both;
}

.alignright, .wp-block-embed.alignright,
.alignleft,
.wp-block-embed.alignleft,
.aligncenter,
.wp-block-embed.alignwide,
.alignwide,
.alignfull {
  display: flex;
  flex-wrap: wrap;
}
.alignright img, .wp-block-embed.alignright img,
.alignleft img,
.wp-block-embed.alignleft img,
.aligncenter img,
.wp-block-embed.alignwide img,
.alignwide img,
.alignfull img {
  display: block;
  width: auto;
  height: auto;
  line-height: 0;
}

.alignright .wp-caption-text,
.alignleft .wp-caption-text {
  width: 100%;
  display: block;
}

.alignright, .wp-block-embed.alignright {
  justify-content: flex-end;
}
.alignright .wp-caption-text {
  text-align: right;
}

.alignleft, .wp-block-embed.alignleft {
  justify-content: flex-start;
}
.alignleft .wp-caption-text {
  text-align: left;
}

.aligncenter, .wp-block-embed.alignwide,
.alignwide,
.alignfull {
  justify-content: center;
}

.alignwide img,
.alignfull img {
  width: 100%;
}

.alignnone, .wp-block-embed.aligncenter, .wp-block-embed.alignwide {
  display: block;
  width: auto;
  height: auto;
  margin: 1.5em 0;
}

.alignwide {
  margin: 1.5em 0;
  width: 100%;
}
.alignwide img {
  width: 100%;
}

.alignfull {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  margin: 1.5em 0;
  margin-left: -50vw;
}

a.alignright + h2, .alignright.wp-block-file__textlink + h2, a.wp-block-embed.alignright + h2, .wp-block-file__textlink.wp-block-embed.alignright + h2, a.alignright + h3, .alignright.wp-block-file__textlink + h3, a.wp-block-embed.alignright + h3, .wp-block-file__textlink.wp-block-embed.alignright + h3, a.alignright + h4, .alignright.wp-block-file__textlink + h4, a.wp-block-embed.alignright + h4, .wp-block-file__textlink.wp-block-embed.alignright + h4, a.alignright + h5, .alignright.wp-block-file__textlink + h5, a.wp-block-embed.alignright + h5, .wp-block-file__textlink.wp-block-embed.alignright + h5, a.alignright + h6, .alignright.wp-block-file__textlink + h6, a.wp-block-embed.alignright + h6, .wp-block-file__textlink.wp-block-embed.alignright + h6, a.alignright + div a.alignright + p, .alignright.wp-block-file__textlink + div a.alignright + p, a.wp-block-embed.alignright + div a.alignright + p, .wp-block-file__textlink.wp-block-embed.alignright + div a.alignright + p, a.alignright + div .alignright.wp-block-file__textlink + p, .alignright.wp-block-file__textlink + div .alignright.wp-block-file__textlink + p, a.wp-block-embed.alignright + div .alignright.wp-block-file__textlink + p, .wp-block-file__textlink.wp-block-embed.alignright + div .alignright.wp-block-file__textlink + p, a.alignright + div a.wp-block-embed.alignright + p, .alignright.wp-block-file__textlink + div a.wp-block-embed.alignright + p, a.wp-block-embed.alignright + div a.wp-block-embed.alignright + p, .wp-block-file__textlink.wp-block-embed.alignright + div a.wp-block-embed.alignright + p, a.alignright + div .wp-block-file__textlink.wp-block-embed.alignright + p, .alignright.wp-block-file__textlink + div .wp-block-file__textlink.wp-block-embed.alignright + p, a.wp-block-embed.alignright + div .wp-block-file__textlink.wp-block-embed.alignright + p, .wp-block-file__textlink.wp-block-embed.alignright + div .wp-block-file__textlink.wp-block-embed.alignright + p, a.alignleft + h2, .alignleft.wp-block-file__textlink + h2, a.wp-block-embed.alignleft + h2, .wp-block-file__textlink.wp-block-embed.alignleft + h2, a.alignleft + h3, .alignleft.wp-block-file__textlink + h3, a.wp-block-embed.alignleft + h3, .wp-block-file__textlink.wp-block-embed.alignleft + h3, a.alignleft + h4, .alignleft.wp-block-file__textlink + h4, a.wp-block-embed.alignleft + h4, .wp-block-file__textlink.wp-block-embed.alignleft + h4, a.alignleft + h5, .alignleft.wp-block-file__textlink + h5, a.wp-block-embed.alignleft + h5, .wp-block-file__textlink.wp-block-embed.alignleft + h5, a.alignleft + h6, .alignleft.wp-block-file__textlink + h6, a.wp-block-embed.alignleft + h6, .wp-block-file__textlink.wp-block-embed.alignleft + h6, a.alignright + div a.alignleft + p, .alignright.wp-block-file__textlink + div a.alignleft + p, a.wp-block-embed.alignright + div a.alignleft + p, .wp-block-file__textlink.wp-block-embed.alignright + div a.alignleft + p, a.alignright + div .alignleft.wp-block-file__textlink + p, .alignright.wp-block-file__textlink + div .alignleft.wp-block-file__textlink + p, a.wp-block-embed.alignright + div .alignleft.wp-block-file__textlink + p, .wp-block-file__textlink.wp-block-embed.alignright + div .alignleft.wp-block-file__textlink + p, a.alignright + div a.wp-block-embed.alignleft + p, .alignright.wp-block-file__textlink + div a.wp-block-embed.alignleft + p, a.wp-block-embed.alignright + div a.wp-block-embed.alignleft + p, .wp-block-file__textlink.wp-block-embed.alignright + div a.wp-block-embed.alignleft + p, a.alignright + div .wp-block-file__textlink.wp-block-embed.alignleft + p, .alignright.wp-block-file__textlink + div .wp-block-file__textlink.wp-block-embed.alignleft + p, a.wp-block-embed.alignright + div .wp-block-file__textlink.wp-block-embed.alignleft + p, .wp-block-file__textlink.wp-block-embed.alignright + div .wp-block-file__textlink.wp-block-embed.alignleft + p,
img.alignright + h2,
img.wp-block-embed.alignright + h2,
img.alignright + h3,
img.wp-block-embed.alignright + h3,
img.alignright + h4,
img.wp-block-embed.alignright + h4,
img.alignright + h5,
img.wp-block-embed.alignright + h5,
img.alignright + h6,
img.wp-block-embed.alignright + h6,
a.alignright + div img.alignright + p,
.alignright.wp-block-file__textlink + div img.alignright + p,
a.wp-block-embed.alignright + div img.alignright + p,
.wp-block-file__textlink.wp-block-embed.alignright + div img.alignright + p,
a.alignright + div img.wp-block-embed.alignright + p,
.alignright.wp-block-file__textlink + div img.wp-block-embed.alignright + p,
a.wp-block-embed.alignright + div img.wp-block-embed.alignright + p,
.wp-block-file__textlink.wp-block-embed.alignright + div img.wp-block-embed.alignright + p,
img.alignleft + h2,
img.wp-block-embed.alignleft + h2,
img.alignleft + h3,
img.wp-block-embed.alignleft + h3,
img.alignleft + h4,
img.wp-block-embed.alignleft + h4,
img.alignleft + h5,
img.wp-block-embed.alignleft + h5,
img.alignleft + h6,
img.wp-block-embed.alignleft + h6,
a.alignright + div img.alignleft + p,
.alignright.wp-block-file__textlink + div img.alignleft + p,
a.wp-block-embed.alignright + div img.alignleft + p,
.wp-block-file__textlink.wp-block-embed.alignright + div img.alignleft + p,
a.alignright + div img.wp-block-embed.alignleft + p,
.alignright.wp-block-file__textlink + div img.wp-block-embed.alignleft + p,
a.wp-block-embed.alignright + div img.wp-block-embed.alignleft + p,
.wp-block-file__textlink.wp-block-embed.alignright + div img.wp-block-embed.alignleft + p, a.alignleft + div a.alignright + p, .alignleft.wp-block-file__textlink + div a.alignright + p, a.wp-block-embed.alignleft + div a.alignright + p, .wp-block-file__textlink.wp-block-embed.alignleft + div a.alignright + p, a.alignleft + div .alignright.wp-block-file__textlink + p, .alignleft.wp-block-file__textlink + div .alignright.wp-block-file__textlink + p, a.wp-block-embed.alignleft + div .alignright.wp-block-file__textlink + p, .wp-block-file__textlink.wp-block-embed.alignleft + div .alignright.wp-block-file__textlink + p, a.alignleft + div a.wp-block-embed.alignright + p, .alignleft.wp-block-file__textlink + div a.wp-block-embed.alignright + p, a.wp-block-embed.alignleft + div a.wp-block-embed.alignright + p, .wp-block-file__textlink.wp-block-embed.alignleft + div a.wp-block-embed.alignright + p, a.alignleft + div .wp-block-file__textlink.wp-block-embed.alignright + p, .alignleft.wp-block-file__textlink + div .wp-block-file__textlink.wp-block-embed.alignright + p, a.wp-block-embed.alignleft + div .wp-block-file__textlink.wp-block-embed.alignright + p, .wp-block-file__textlink.wp-block-embed.alignleft + div .wp-block-file__textlink.wp-block-embed.alignright + p, a.alignleft + div a.alignleft + p, .alignleft.wp-block-file__textlink + div a.alignleft + p, a.wp-block-embed.alignleft + div a.alignleft + p, .wp-block-file__textlink.wp-block-embed.alignleft + div a.alignleft + p, a.alignleft + div .alignleft.wp-block-file__textlink + p, .alignleft.wp-block-file__textlink + div .alignleft.wp-block-file__textlink + p, a.wp-block-embed.alignleft + div .alignleft.wp-block-file__textlink + p, .wp-block-file__textlink.wp-block-embed.alignleft + div .alignleft.wp-block-file__textlink + p, a.alignleft + div a.wp-block-embed.alignleft + p, .alignleft.wp-block-file__textlink + div a.wp-block-embed.alignleft + p, a.wp-block-embed.alignleft + div a.wp-block-embed.alignleft + p, .wp-block-file__textlink.wp-block-embed.alignleft + div a.wp-block-embed.alignleft + p, a.alignleft + div .wp-block-file__textlink.wp-block-embed.alignleft + p, .alignleft.wp-block-file__textlink + div .wp-block-file__textlink.wp-block-embed.alignleft + p, a.wp-block-embed.alignleft + div .wp-block-file__textlink.wp-block-embed.alignleft + p, .wp-block-file__textlink.wp-block-embed.alignleft + div .wp-block-file__textlink.wp-block-embed.alignleft + p,
a.alignleft + div img.alignright + p,
.alignleft.wp-block-file__textlink + div img.alignright + p,
a.wp-block-embed.alignleft + div img.alignright + p,
.wp-block-file__textlink.wp-block-embed.alignleft + div img.alignright + p,
a.alignleft + div img.wp-block-embed.alignright + p,
.alignleft.wp-block-file__textlink + div img.wp-block-embed.alignright + p,
a.wp-block-embed.alignleft + div img.wp-block-embed.alignright + p,
.wp-block-file__textlink.wp-block-embed.alignleft + div img.wp-block-embed.alignright + p,
a.alignleft + div img.alignleft + p,
.alignleft.wp-block-file__textlink + div img.alignleft + p,
a.wp-block-embed.alignleft + div img.alignleft + p,
.wp-block-file__textlink.wp-block-embed.alignleft + div img.alignleft + p,
a.alignleft + div img.wp-block-embed.alignleft + p,
.alignleft.wp-block-file__textlink + div img.wp-block-embed.alignleft + p,
a.wp-block-embed.alignleft + div img.wp-block-embed.alignleft + p,
.wp-block-file__textlink.wp-block-embed.alignleft + div img.wp-block-embed.alignleft + p,
img.alignright + div a.alignright + p,
img.wp-block-embed.alignright + div a.alignright + p,
img.alignright + div .alignright.wp-block-file__textlink + p,
img.wp-block-embed.alignright + div .alignright.wp-block-file__textlink + p,
img.alignright + div a.wp-block-embed.alignright + p,
img.wp-block-embed.alignright + div a.wp-block-embed.alignright + p,
img.alignright + div .wp-block-file__textlink.wp-block-embed.alignright + p,
img.wp-block-embed.alignright + div .wp-block-file__textlink.wp-block-embed.alignright + p,
img.alignright + div a.alignleft + p,
img.wp-block-embed.alignright + div a.alignleft + p,
img.alignright + div .alignleft.wp-block-file__textlink + p,
img.wp-block-embed.alignright + div .alignleft.wp-block-file__textlink + p,
img.alignright + div a.wp-block-embed.alignleft + p,
img.wp-block-embed.alignright + div a.wp-block-embed.alignleft + p,
img.alignright + div .wp-block-file__textlink.wp-block-embed.alignleft + p,
img.wp-block-embed.alignright + div .wp-block-file__textlink.wp-block-embed.alignleft + p,
img.alignright + div img.alignright + p,
img.wp-block-embed.alignright + div img.alignright + p,
img.alignright + div img.wp-block-embed.alignright + p,
img.wp-block-embed.alignright + div img.wp-block-embed.alignright + p,
img.alignright + div img.alignleft + p,
img.wp-block-embed.alignright + div img.alignleft + p,
img.alignright + div img.wp-block-embed.alignleft + p,
img.wp-block-embed.alignright + div img.wp-block-embed.alignleft + p,
img.alignleft + div a.alignright + p,
img.wp-block-embed.alignleft + div a.alignright + p,
img.alignleft + div .alignright.wp-block-file__textlink + p,
img.wp-block-embed.alignleft + div .alignright.wp-block-file__textlink + p,
img.alignleft + div a.wp-block-embed.alignright + p,
img.wp-block-embed.alignleft + div a.wp-block-embed.alignright + p,
img.alignleft + div .wp-block-file__textlink.wp-block-embed.alignright + p,
img.wp-block-embed.alignleft + div .wp-block-file__textlink.wp-block-embed.alignright + p,
img.alignleft + div a.alignleft + p,
img.wp-block-embed.alignleft + div a.alignleft + p,
img.alignleft + div .alignleft.wp-block-file__textlink + p,
img.wp-block-embed.alignleft + div .alignleft.wp-block-file__textlink + p,
img.alignleft + div a.wp-block-embed.alignleft + p,
img.wp-block-embed.alignleft + div a.wp-block-embed.alignleft + p,
img.alignleft + div .wp-block-file__textlink.wp-block-embed.alignleft + p,
img.wp-block-embed.alignleft + div .wp-block-file__textlink.wp-block-embed.alignleft + p,
img.alignleft + div img.alignright + p,
img.wp-block-embed.alignleft + div img.alignright + p,
img.alignleft + div img.wp-block-embed.alignright + p,
img.wp-block-embed.alignleft + div img.wp-block-embed.alignright + p,
img.alignleft + div img.alignleft + p,
img.wp-block-embed.alignleft + div img.alignleft + p,
img.alignleft + div img.wp-block-embed.alignleft + p,
img.wp-block-embed.alignleft + div img.wp-block-embed.alignleft + p {
  display: inline-block;
}

.alignright, .wp-block-embed.alignright,
img.alignright {
  float: right;
  margin: 0 0 2.5em 2.5em;
  margin-top: 0 !important;
}
.alignright + *, .wp-block-embed.alignright + *,
img.alignright + * {
  margin-top: 0;
}
@media only screen and (max-width: 960px) {
  .alignright, .wp-block-embed.alignright,
  img.alignright {
    margin: 0 0 2.6em 2.8em;
  }
}
@media only screen and (max-width: 640px) {
  .alignright, .wp-block-embed.alignright,
  img.alignright {
    margin: 0 0 1.6em 2em;
  }
}

.alignleft, .wp-block-embed.alignleft,
img.alignleft {
  float: left;
  margin: 0 2.5em 2.5em 0;
  margin-top: 0 !important;
}
@media only screen and (max-width: 960px) {
  .alignleft, .wp-block-embed.alignleft,
  img.alignleft {
    margin: 0 2.8em 2.6em 0;
  }
}
@media only screen and (max-width: 640px) {
  .alignleft, .wp-block-embed.alignleft,
  img.alignleft {
    margin: 0 2em 1.6em 0;
  }
}

img.aligncenter, img.wp-block-embed.alignwide {
  max-width: 48%;
  margin-inline: auto;
}

img.alignwide {
  margin-inline: auto;
  width: 100%;
}

.wp-block-image figcaption,
.wp-block-image .wp-element-caption, .wp-block-gallery.has-nested-images .wp-block-image figcaption,
.wp-block-gallery.has-nested-images .wp-block-image .wp-element-caption, figcaption {
  position: relative;
  margin-top: 0.5em !important;
  margin-bottom: 0 !important;
  font-size: 0.75rem;
  color: var(--wp--preset--color--gray);
}
@media only screen and (max-width: 640px) {
  .wp-block-image figcaption,
  .wp-block-image .wp-element-caption, .wp-block-gallery.has-nested-images .wp-block-image figcaption,
  .wp-block-gallery.has-nested-images .wp-block-image .wp-element-caption, figcaption {
    margin-top: 0.25em !important;
    padding: 0 0.25em;
  }
}

.image-arrange-section {
  position: relative;
}
.image-arrange-section .image-arrange-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.image-arrange-section .image-arrange-img {
  position: absolute;
  top: 0;
  width: 70%;
  height: 100%;
  background: no-repeat center center/cover;
}
@media only screen and (max-width: 640px) {
  .image-arrange-section .image-arrange-img {
    position: static;
    width: 100%;
    padding-top: 70%;
    border-radius: 0;
  }
}
.image-arrange-section .image-arrange-content {
  position: relative;
  width: 40%;
}
@media only screen and (max-width: 640px) {
  .image-arrange-section .image-arrange-content {
    width: 100%;
  }
}
.image-arrange-section .image-arrange-content::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.image-arrange-section .image-arrange-content .image-arrange-text {
  font-size: 1rem;
  position: relative;
  padding: 2.5em;
  width: 100%;
}

.img_common, .img_r, .img_l {
  opacity: 1;
  left: 0;
}

.img_l .image-arrange-img {
  left: 0;
}
.img_l .image-arrange-content {
  left: calc(100% - 40% + 2.5em);
}
@media only screen and (max-width: 640px) {
  .img_l .image-arrange-content {
    left: 0;
  }
}
.img_l .image-arrange-content::before {
  left: 0;
}

.img_r .image-arrange-img {
  right: 0;
}
.img_r .image-arrange-content {
  left: -2.5em;
}
@media only screen and (max-width: 640px) {
  .img_r .image-arrange-content {
    left: 0;
  }
}
.img_r .image-arrange-content::before {
  right: 0;
}

.ib {
  display: inline-block;
}

ul.notes-mark, .notes-mark, ul.notes, .notes,
.is-style-notes {
  font-size: 0.875rem;
  line-height: 1.4;
  display: block;
  margin-block: 0.5em;
}

.notes,
.is-style-notes {
  font-size: 0.875rem;
}

ul.notes {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.notes li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
ul.notes li::marker {
  content: none;
}
ul.notes li {
  padding-left: 0 !important;
  text-indent: 0;
}
ul.notes li:first-child {
  margin-top: 0;
}
ul.notes li::marker {
  content: none !important;
}

.notes-mark {
  padding-left: 1em;
  text-indent: -1em;
}

ul.notes-mark {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.notes-mark li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
ul.notes-mark li::marker {
  content: none;
}
ul.notes-mark li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.notes-mark li:first-child {
  margin-top: 0;
}

.box-area {
  background: var(--wp--preset--color--bg);
  padding: 1.5em 2em;
  margin-block: 1.5em;
}
.box-area strong {
  font-size: 1.125rem;
  font-weight: bold;
}
.box-area strong + p {
  margin-top: 0.5em;
}
.box-area p {
  margin-top: 0.8em;
  line-height: 1.6;
}
.box-area > *:first-child {
  margin-top: 0 !important;
}
.box-area > *:last-child {
  margin-bottom: 0 !important;
}

.scroll-table {
  position: relative;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.swipe-img {
  display: none;
  position: relative;
  top: -35px;
  left: 5px;
  width: 30px;
  height: 30px;
  background: url(../img/com/sw_mov.gif) no-repeat center center/contain;
}
@media only screen and (max-width: 960px) {
  .swipe-img {
    display: block;
  }
}

.movie-container, .wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie-container iframe, .wp-block-embed .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gmap iframe {
  width: 100%;
  height: 400px;
}
@media only screen and (max-width: 640px) {
  .gmap iframe {
    height: 300px;
  }
}

.pagination {
  margin-top: 20px;
  margin-bottom: 20px;
}
.pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-indent: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination ul li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.pagination ul li::marker {
  content: none;
}
.pagination ul li {
  padding-left: 0 !important;
}
.pagination ul li::before {
  content: none !important;
}
.pagination ul li a, .pagination ul li .wp-block-file__textlink,
.pagination ul li span {
  text-decoration: none;
  position: relative;
  display: block;
  padding: 0em 0.5em;
  margin: 0 0.25em;
}
.pagination ul li a::after, .pagination ul li .wp-block-file__textlink::after,
.pagination ul li span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: calc(100% - 0.5em);
  background: transparent;
  transform: translateX(-50%);
}
.pagination ul li span::after {
  background: var(--wp--preset--color--main);
}
.pagination ul li a .hover:hover, .pagination ul li .wp-block-file__textlink .hover:hover {
  color: var(--wp--preset--color--sub);
}
.pagination ul li a .hover:hover::after, .pagination ul li .wp-block-file__textlink .hover:hover::after {
  background: var(--wp--preset--color--sub);
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}

@-ms-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.12s;
  -moz-animation-delay: 0.12s;
  -webkit-animation-delay: 0.12s;
  -o-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  -webkit-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.37s;
  -moz-animation-delay: 0.37s;
  -webkit-animation-delay: 0.37s;
  -o-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.62s;
  -moz-animation-delay: 0.62s;
  -webkit-animation-delay: 0.62s;
  -o-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.75s;
  -moz-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.87s;
  -moz-animation-delay: 0.87s;
  -webkit-animation-delay: 0.87s;
  -o-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

html {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 1vw;
  vertical-align: baseline;
  box-sizing: border-box;
  word-wrap: break-word;
  line-height: 1;
  scroll-behavior: auto !important;
  scrollbar-gutter: stable;
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 100%;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 4.266667vw;
  }
}
html.fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1vw;
  color: var(--wp--preset--color--text);
  width: 100%;
  position: relative;
  line-height: 1;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 1600px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  body {
    font-size: 4.266667vw;
  }
}
@media only screen and (max-width: 960px) {
  body.active {
    position: fixed;
    height: 100vh;
    overflow: hidden;
  }
}

header,
header div,
header span,
header applet,
header object,
header iframe,
header h1,
header h2,
header h3,
header h4,
header h5,
header h6,
header p,
header blockquote,
header pre,
header a,
header abbr,
header acronym,
header address,
header big,
header cite,
header code,
header del,
header dfn,
header em,
header img,
header ins,
header kbd,
header q,
header s,
header samp,
header small,
header strike,
header strong,
header sub,
header sup,
header tt,
header var,
header b,
header u,
header i,
header center,
header dl,
header dt,
header dd,
header ol,
header ul,
header li,
header fieldset,
header form,
header label,
header legend,
header table,
header caption,
header tbody,
header tfoot,
header thead,
header tr,
header th,
header td,
header article,
header aside,
header canvas,
header details,
header embed,
header figure,
header figcaption,
header footer,
header header,
header hgroup,
header menu,
header nav,
header output,
header ruby,
header section,
header summary,
header time,
header mark,
header audio,
header video,
nav,
nav div,
nav span,
nav applet,
nav object,
nav iframe,
nav h1,
nav h2,
nav h3,
nav h4,
nav h5,
nav h6,
nav p,
nav blockquote,
nav pre,
nav a,
nav abbr,
nav acronym,
nav address,
nav big,
nav cite,
nav code,
nav del,
nav dfn,
nav em,
nav img,
nav ins,
nav kbd,
nav q,
nav s,
nav samp,
nav small,
nav strike,
nav strong,
nav sub,
nav sup,
nav tt,
nav var,
nav b,
nav u,
nav i,
nav center,
nav dl,
nav dt,
nav dd,
nav ol,
nav ul,
nav li,
nav fieldset,
nav form,
nav label,
nav legend,
nav table,
nav caption,
nav tbody,
nav tfoot,
nav thead,
nav tr,
nav th,
nav td,
nav article,
nav aside,
nav canvas,
nav details,
nav embed,
nav figure,
nav figcaption,
nav footer,
nav header,
nav hgroup,
nav menu,
nav nav,
nav output,
nav ruby,
nav section,
nav summary,
nav time,
nav mark,
nav audio,
nav video,
footer,
footer div,
footer span,
footer applet,
footer object,
footer iframe,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer p,
footer blockquote,
footer pre,
footer a,
footer abbr,
footer acronym,
footer address,
footer big,
footer cite,
footer code,
footer del,
footer dfn,
footer em,
footer img,
footer ins,
footer kbd,
footer q,
footer s,
footer samp,
footer small,
footer strike,
footer strong,
footer sub,
footer sup,
footer tt,
footer var,
footer b,
footer u,
footer i,
footer center,
footer dl,
footer dt,
footer dd,
footer ol,
footer ul,
footer li,
footer fieldset,
footer form,
footer label,
footer legend,
footer table,
footer caption,
footer tbody,
footer tfoot,
footer thead,
footer tr,
footer th,
footer td,
footer article,
footer aside,
footer canvas,
footer details,
footer embed,
footer figure,
footer figcaption,
footer footer,
footer header,
footer hgroup,
footer menu,
footer nav,
footer output,
footer ruby,
footer section,
footer summary,
footer time,
footer mark,
footer audio,
footer video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  word-wrap: break-word;
}
header ol,
header ul,
nav ol,
nav ul,
footer ol,
footer ul {
  list-style: none;
}
header table,
nav table,
footer table {
  border-collapse: collapse;
  border-spacing: 0;
}
header caption,
header th,
header td,
nav caption,
nav th,
nav td,
footer caption,
footer th,
footer td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
header q,
header blockquote,
nav q,
nav blockquote,
footer q,
footer blockquote {
  quotes: none;
}
header q:before,
header q:after,
header blockquote:before,
header blockquote:after,
nav q:before,
nav q:after,
nav blockquote:before,
nav blockquote:after,
footer q:before,
footer q:after,
footer blockquote:before,
footer blockquote:after {
  content: "";
  content: none;
}
header a img,
nav a img,
footer a img {
  border: none;
}
header article,
header aside,
header details,
header figcaption,
header figure,
header footer,
header header,
header hgroup,
header menu,
header nav,
header section,
header summary,
nav article,
nav aside,
nav details,
nav figcaption,
nav figure,
nav footer,
nav header,
nav hgroup,
nav menu,
nav nav,
nav section,
nav summary,
footer article,
footer aside,
footer details,
footer figcaption,
footer figure,
footer footer,
footer header,
footer hgroup,
footer menu,
footer nav,
footer section,
footer summary {
  display: block;
}
header,
header *,
nav,
nav *,
footer,
footer * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
}
header::before, header::after,
header *::before,
header *::after,
nav::before,
nav::after,
nav *::before,
nav *::after,
footer::before,
footer::after,
footer *::before,
footer *::after {
  box-sizing: border-box;
}
header ul,
nav ul,
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header ul li,
nav ul li,
footer ul li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
header ul li::marker,
nav ul li::marker,
footer ul li::marker {
  content: none;
}

#noscript {
  width: 100%;
  padding: 10px 20px;
  background: #c00;
  color: #fff;
  text-align: center;
  z-index: 100;
  line-height: 1.2;
}

#loader {
  position: fixed;
  z-index: 15000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
#loader > div {
  content: "";
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/com/loader.svg) no-repeat center center #fff;
}

.loader-fix {
  overflow-y: scroll;
}

/* コンテンツエリアの設定 **************************/
.common-inner {
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 1000px) {
  .common-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 960px) {
  .common-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .common-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* SP時 common-inner内でフル画面表示する例外対応 */
@media only screen and (max-width: 960px) {
  .sp-full {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 640px) {
  .sp-full {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

section {
  padding-top: 35px;
  padding-bottom: 35px;
}
@media only screen and (max-width: 960px) {
  section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 640px) {
  section {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
section:first-child {
  padding-top: 0;
}

.acf-block-anchor-nav .splide__track {
  overflow: visible;
}

header {
  position: fixed;
  width: 100%;
  padding-block: 1em;
  background: var(--wp--preset--color--white);
  box-shadow: 0 0 0.375em rgba(0, 0, 0, 0.05);
  z-index: 8;
}
@media only screen and (max-width: 640px) {
  header {
    padding-block: 0.455em;
  }
}
header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-size: 1rem;
  width: 7.5em;
}
@media only screen and (max-width: 640px) {
  header .logo {
    width: 4.125em;
  }
}

@media only screen and (max-width: 960px) {
  .gnav {
    display: none;
  }
}
.gnav .gnav-inner {
  display: flex;
  gap: 1.625em;
}
.gnav .sub-items,
.gnav .main-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
.gnav .sub-items li,
.gnav .main-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.gnav .sub-items li::marker,
.gnav .main-items li::marker {
  content: none;
}
.gnav .sub-items a.hover:hover,
.gnav .main-items a.hover:hover {
  color: var(--wp--preset--color--link);
}
.gnav .sub-items {
  margin: 0 0 0 auto;
  font-weight: 500;
  gap: 2em;
  line-height: 1;
  font-size: 0.75rem;
}
.gnav .sub-items .item {
  position: relative;
  line-height: 1;
  padding: 0.096em 0;
}
.gnav .sub-items .item::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--wp--preset--color--gray);
  top: 50%;
  left: -1em;
  transform: translateY(-50%);
}
.gnav .sub-items .item a {
  color: var(--wp--preset--color--gray);
  text-decoration: none;
}
.gnav .main-items {
  margin: 0.875em 0 0;
  gap: 1.5em;
}
.gnav .main-items .item a {
  color: var(--wp--preset--color--text);
  font-weight: 700;
  text-decoration: none;
}
.gnav .btn-contact {
  width: 9em;
}
.gnav .btn-contact a {
  display: block;
  font-size: 0.875rem;
  background: var(--wp--preset--color--link);
  color: var(--wp--preset--color--btn_txt);
  font-weight: 700;
  padding: 0.7145em;
  text-decoration: none;
  text-align: center;
  border-radius: 2em;
  border: 2px solid var(--wp--preset--color--link);
}
.gnav .btn-contact a.hover:hover {
  opacity: 1;
  color: var(--wp--preset--color--link);
  background: var(--wp--preset--color--btn_txt);
}

.header-hamburger {
  display: none;
  position: fixed;
  background: var(--wp--preset--color--main);
  z-index: 10;
  border: 0;
  cursor: pointer;
  top: 0.5em;
  right: 0.5em;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
}
@media only screen and (max-width: 960px) {
  .header-hamburger {
    display: flex;
    top: 1.25rem;
    right: 1.25rem;
  }
  .active .header-hamburger {
    border-color: var(--wp--preset--color--main);
  }
}
@media only screen and (max-width: 640px) {
  .header-hamburger {
    top: 0;
    right: 0;
  }
}
.header-hamburger .header-hamburger_inner {
  position: relative;
  display: flex;
  width: 3em;
  height: 3em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 0;
}
@media only screen and (max-width: 960px) {
  .header-hamburger .header-hamburger_inner {
    width: 1.5em;
    height: 1em;
  }
}
.header-hamburger .header-hamburger_line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--wp--preset--color--white);
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-hamburger .header-hamburger_line.__top {
  top: 0;
}
.header-hamburger .header-hamburger_line.__bottom {
  bottom: 0;
}
.active .header-hamburger .header-hamburger_line.__top {
  top: auto;
  transform: rotate(31deg) translate(0, 0);
  transform-origin: center;
}
.active .header-hamburger .header-hamburger_line.__middle {
  opacity: 0;
}
.active .header-hamburger .header-hamburger_line.__bottom {
  bottom: auto;
  transform: rotate(-31deg) translate(0, 0);
  transform-origin: center;
}

.h-nav {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: var(--wp--preset--color--main);
  z-index: 9;
  overflow: hidden;
}
@media only screen and (max-width: 960px) {
  .h-nav.active {
    display: flex;
  }
}
.h-nav .h-nav-inner {
  width: 100%;
  padding: 1.25em;
  background: var(--wp--preset--color--main);
  overflow: scroll;
  margin: auto;
}
@media all and (max-height: 65em) {
  .h-nav .h-nav-inner {
    margin: 0;
  }
}
.h-nav .h-nav-body {
  max-width: 23.4375em;
  margin: auto;
  width: 100%;
}
.h-nav .h-nav-content {
  background: var(--wp--preset--color--white);
  padding: 2em;
}
.h-nav .banner-line {
  margin-top: 1.25em;
}
.h-nav .banner-line .banner-line-link {
  display: block;
  overflow: hidden;
  border-radius: 0.5em;
}
.h-nav .banner-line .banner-line-link.hover:hover {
  opacity: 0.5;
}
.h-nav .logo {
  width: 9em;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .h-nav .logo {
    width: 6em;
  }
}
.h-nav .h-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25em;
  margin: 1.125em 0 0;
}
.h-nav .h-menu-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.h-nav .h-menu-items li::marker {
  content: none;
}
.h-nav .h-menu-items .item-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: rgba(223, 24, 11, 0.05);
  color: var(--wp--preset--color--text);
  line-height: 1;
  border-radius: 0.5em;
  padding: 0.75em;
  gap: 0;
  text-decoration: none;
}
.h-nav .h-menu-items .item-icon::before {
  position: relative;
  display: block;
  content: "";
  width: 3.4375em;
  aspect-ratio: 1/1;
}
.h-nav .h-menu-items .item_icon01::before {
  background: url(../img/com/icon_menu01.svg) 0 0/contain;
}
.h-nav .h-menu-items .item_icon02::before {
  background: url(../img/com/icon_menu02.svg) 0 0/contain;
}
.h-nav .h-menu-items .item_icon03::before {
  background: url(../img/com/icon_menu03.svg) 0 0/contain;
}
.h-nav .h-menu-items .item_icon04::before {
  background: url(../img/com/icon_menu04.svg) 0 0/contain;
}
.h-nav .h-menu-items .item_icon05::before {
  background: url(../img/com/icon_menu05.svg) 0 0/contain;
}
.h-nav .h-menu-items .item_icon06::before {
  background: url(../img/com/icon_menu06.svg) 0 0/contain;
}
.h-nav .h-menu-items p {
  font-weight: 700;
  line-height: 1.6;
  font-size: 0.6875rem;
}
.h-nav .btn-area {
  margin: 2em 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
.h-nav .btn-area {
  align-items: center;
}
.h-nav .btn-area .btn_w {
  max-width: 100%;
  padding: 0.82em 0;
  position: relative;
  display: block;
  border: 2px solid var(--wp--preset--color--main);
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  padding: 1.35em;
  width: 100%;
  max-width: 18.5em;
  border-radius: 0.5em;
}
@media only screen and (max-width: 640px) {
  .h-nav .btn-area .btn_w {
    font-size: 0.875rem;
  }
}
.h-nav .btn-area .btn_w::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--wp--preset--color--main) url(../img/com/button_arrow-w.png) 100% 0/200% 100% repeat-x;
  transition: background 0.3s ease-in-out;
  border-radius: 0.25rem;
  right: 1em;
  margin: auto;
}
.h-nav .btn-area .btn_w.hover:hover {
  opacity: 1;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
}
.h-nav .btn-area .btn_w.hover:hover::after {
  background-position: 0 0;
}
.h-nav .btn-area .btn_w::before {
  display: none;
}
.h-nav .btn-area .btn_w::after {
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  width: 1.5em;
  height: 1.5em;
}
.h-nav .btn-area .btn_recruit::after {
  content: "\e900";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
  display: flex;
}
@media only screen and (max-width: 960px) {
  .h-nav .btn-area .btn_recruit::after {
    background-color: var(--wp--preset--color--main);
    background-image: none;
    color: #fff;
  }
}
@media only screen and (max-width: 960px) {
  .h-nav .btn-area .btn_recruit.hover:hover::after {
    background-color: #fff;
    color: var(--wp--preset--color--main);
  }
}
.h-nav .btn-area .btn_contact {
  background: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
}
.h-nav .btn-area .btn_contact::after {
  display: flex;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
  font-weight: 400;
}
@media only screen and (max-width: 960px) {
  .h-nav .btn-area .btn_contact::after {
    background: var(--wp--preset--color--white) url(../img/com/button_arrow.png) 100% 0/200% 100% no-repeat;
  }
}
.h-nav .h-nav-footer {
  background: var(--wp--preset--color--main);
  padding: 2em 0;
}
.h-nav .h-nav-footer .footer-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
}
.h-nav .h-nav-footer .footer-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.h-nav .h-nav-footer .footer-address {
  text-align: center;
}
.h-nav .h-nav-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.h-nav .h-nav-footer .logo {
  margin: 0;
}
.h-nav .h-nav-footer .f-contact {
  justify-content: flex-start;
  margin-inline: 0 auto;
}
.h-nav .h-nav-footer .link-etc-area {
  text-align: center;
}
.h-nav .h-nav-footer .f-bottom .invoice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.h-nav .h-nav-footer .f-bottom p {
  text-align: center;
}

main {
  display: block;
  padding: 5.625em 0;
  overflow-x: hidden;
}
@media only screen and (max-width: 640px) {
  main {
    padding: 3em 0;
  }
}
main.bg-beige {
  background: var(--wp--preset--color--sub);
}

footer {
  position: relative;
  background: var(--wp--preset--color--main);
  margin: 0;
  padding: 0 0 3.5em;
}

.footer-inner {
  position: relative;
}

.footer-area {
  position: relative;
  display: grid;
  grid-template-columns: 24em 1fr;
  padding-top: 3.5em;
}
@media screen and (max-width: 1280px) {
  .footer-area {
    grid-template-columns: 19em 1fr;
  }
}
@media screen and (max-width: 768px) {
  .footer-area {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
}
.footer-area .logo {
  width: 12.5em;
}
@media only screen and (max-width: 640px) {
  .footer-area .logo {
    width: 10.625em;
  }
}
.footer-area .footer-address {
  display: block;
  font-size: 0.875rem;
  color: var(--wp--preset--color--white);
  line-height: 1.71;
  font-weight: 700;
  margin: 1em 0 0;
}
@media screen and (max-width: 1280px) {
  .footer-area .footer-address {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-area .footer-address {
    font-size: 0.8125rem;
  }
}
.footer-area .f-nav .item a {
  color: var(--wp--preset--color--white);
  text-decoration: none;
}
.footer-area .main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 1.5em;
}
.footer-area .main-menu li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.footer-area .main-menu li::marker {
  content: none;
}
@media only screen and (max-width: 960px) {
  .footer-area .main-menu {
    display: none;
  }
}
.footer-area .main-menu a {
  font-weight: 700;
  line-height: 2.25;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1280px) {
  .footer-area .main-menu a {
    font-size: 0.875rem;
  }
}
.footer-area .main-menu a.hover:hover {
  opacity: 0.5;
}
.footer-area .sub-menu {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 960px) {
  .footer-area .sub-menu {
    display: none;
  }
}
.footer-area .sub-menu .item {
  position: relative;
  margin-left: 1em;
  padding-left: 1em;
}
.footer-area .sub-menu .item::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 1em;
  background: var(--wp--preset--color--white);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.footer-area .sub-menu .item:first-child {
  margin-left: 0;
  padding-left: 0;
}
.footer-area .sub-menu .item:first-child::before {
  display: none;
}
.footer-area .sub-menu .item a {
  font-size: 0.875rem;
  line-height: 1.85714286;
}
.footer-area .f-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #fff;
  width: 19.375em;
  padding: 0.5625em 1em 0.5625em 0.5625em;
  margin: 1.5em 0 0 auto;
  border-radius: 0.5em;
}
@media screen and (max-width: 768px) {
  .footer-area .f-contact {
    margin: 0;
  }
}
.footer-area .f-contact dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5em;
  margin-right: auto;
}
.footer-area .f-contact .f-contact-content .f-contact-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.footer-area .f-contact .f-contact-content .f-contact-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.footer-area .f-contact .f-contact-content .f-contact-items li::marker {
  content: none;
}
.footer-area .f-contact .f-contact-content .f-contact-items .item {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0.875em;
  padding-left: 0.875em;
}
.footer-area .f-contact .f-contact-content .f-contact-items .item::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 1em;
  background: var(--wp--preset--color--main);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.footer-area .f-contact .f-contact-content .f-contact-items .item a {
  color: var(--wp--preset--color--main);
  font-size: 0.8125rem;
  font-weight: bold;
  text-box-trim: trim-both;
}
.footer-area .f-contact .f-contact-content .f-contact-items .item:first-child {
  margin-left: 0;
  padding-left: 0;
}
.footer-area .f-contact .f-contact-content .f-contact-items .item:first-child::before {
  display: none;
}
.footer-area .link-etc-area {
  text-align: right;
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .footer-area .link-etc-area {
    text-align: left;
  }
}
.footer-area .link-etc-area a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.75rem;
}
.footer-area .f-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 2em;
  margin: 0.75em 0 0;
  font-size: 0.75rem;
}
@media screen and (max-width: 1280px) {
  .footer-area .f-bottom {
    flex-direction: column;
    gap: 0.5em;
  }
}
.footer-area .f-bottom .invoice {
  display: flex;
  gap: 0.75em;
  color: var(--wp--preset--color--white);
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .footer-area .f-bottom .invoice {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .footer-area .f-bottom .invoice {
    margin: 1em 0 0;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 640px) {
  .footer-area .f-bottom .invoice {
    flex-direction: column;
    gap: 0.25em;
  }
}
.footer-area .f-bottom p {
  display: inline-block;
  color: var(--wp--preset--color--white);
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .footer-area .f-bottom p {
    text-align: right;
    margin-top: 0.75em;
  }
}
@media screen and (max-width: 768px) {
  .footer-area .f-bottom p {
    text-align: left;
  }
}
.footer-area .f-sns {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  margin: 1em 0 0;
  gap: 0.625em;
}
.footer-area .f-sns li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.footer-area .f-sns li::marker {
  content: none;
}
.footer-area .f-sns li {
  width: 2.5em;
}
.footer-area .f-sns li a::before {
  display: none;
}
.footer-area .f-sns li a.hover:hover {
  opacity: 0.5;
}
.footer-area .f-sns li a img {
  width: 100%;
}

#go-top {
  position: absolute;
  width: 4.75em;
  height: 4.75em;
  top: -2.375em;
  right: 2em;
  z-index: 10;
  transition: all 0.5s;
}
@media only screen and (max-width: 640px) {
  #go-top {
    width: 3em;
    height: 3em;
    right: 1.25em;
    top: -1.5em;
  }
}
#go-top a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.75em;
  height: 4.75em;
  text-decoration: none;
  border-radius: 3em;
  border: 0.375em solid var(--wp--preset--color--white);
  background: var(--wp--preset--color--main);
  opacity: 0;
}
@media only screen and (max-width: 640px) {
  #go-top a {
    width: 3em;
    height: 3em;
    border: 0.25em solid var(--wp--preset--color--white);
  }
}
#go-top a.fixed {
  position: fixed;
  right: 2em;
  bottom: 2em;
}
@media only screen and (max-width: 640px) {
  #go-top a.fixed {
    right: 1.25em;
  }
}
#go-top a.fadein {
  opacity: 1;
}
#go-top a::before {
  content: "\e901";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
  color: var(--wp--preset--color--white);
  font-size: 1.5rem;
}
@media only screen and (max-width: 640px) {
  #go-top a::before {
    font-size: 1.125rem;
  }
}
#go-top a.hover:hover {
  opacity: 0.8;
}
#go-top span {
  display: none;
}

.grecaptcha-badge {
  display: none !important;
  pointer-events: none !important;
}

.wp-block {
  max-width: 100%;
  clear: both;
}

p:empty::before {
  content: none;
}

.block-library-classic__toolbar * {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.block-library-classic__toolbar .mce-ico {
  font-family: dashicons, "tinymce", Arial !important;
}

.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  margin-block: 1.5em;
}
.wp-block-buttons.is-content-justification-left {
  justify-content: flex-start;
}
.wp-block-buttons.is-content-justification-center {
  justify-content: center;
}
.wp-block-buttons.is-content-justification-right {
  justify-content: flex-end;
}
.wp-block-buttons.is-content-justification-space-between {
  justify-content: space-between;
}
.wp-block-buttons.is-vertical {
  flex-direction: column;
}

.wp-block-button {
  min-width: 40px;
}
.wp-block-button .wp-block-button__link {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--color--main);
  border: 2px solid var(--color--main);
  border-radius: 4px;
  padding: 1em 1.5em;
  margin-block: 0.25em;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color--white);
  cursor: pointer;
  padding-right: 2.1em;
  margin-block: 0 !important;
}
.wp-block-button .wp-block-button__link.hover:hover {
  background-color: var(--color--white);
  border-color: var(--color--main);
  color: var(--color--main);
}
.wp-block-button .wp-block-button__link::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.wp-block-button.is-style-btn__outline .wp-block-button__link {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--color--main);
  border: 2px solid var(--color--main);
  border-radius: 4px;
  padding: 1em 1.5em;
  margin-block: 0.25em;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color--white);
  cursor: pointer;
  padding-right: 2.1em;
  background: #fff;
  color: var(--color--main);
}
.wp-block-button.is-style-btn__outline .wp-block-button__link.hover:hover {
  background-color: var(--color--white);
  border-color: var(--color--main);
  color: var(--color--main);
}
.wp-block-button.is-style-btn__outline .wp-block-button__link::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.wp-block-button.is-style-btn__outline .wp-block-button__link.hover:hover {
  background: var(--color--main);
  color: var(--color--white);
}
.wp-block-button.is-style-btn__reset .wp-block-button__link {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--color--main);
  border: 2px solid var(--color--main);
  border-radius: 4px;
  padding: 1em 1.5em;
  margin-block: 0.25em;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color--white);
  cursor: pointer;
  padding-right: 2.1em;
  background: var(--color--btn__reset);
  border-color: var(--color--btn__reset);
  color: #fff;
}
.wp-block-button.is-style-btn__reset .wp-block-button__link.hover:hover {
  background-color: var(--color--white);
  border-color: var(--color--main);
  color: var(--color--main);
}
.wp-block-button.is-style-btn__reset .wp-block-button__link::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.wp-block-button.is-style-btn__reset .wp-block-button__link.hover:hover {
  background: var(--color--white);
  border-color: rgba(163, 163, 163, 0.4);
  color: var(--color--btn__reset);
}
.wp-block-button__width-25 {
  width: calc(25% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
.wp-block-button__width-50 {
  width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
.wp-block-button__width-75 {
  width: calc(75% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
.wp-block-button__width-100 {
  width: 100%;
}

.wp-block-image img {
  margin: 0 !important;
}
.wp-block-image figcaption,
.wp-block-image .wp-element-caption {
  background: none !important;
  color: #000 !important;
}
.wp-block-image.alignleft {
  max-width: 48%;
  margin-inline: 0 auto;
}
.wp-block-image.aligncenter, .wp-block-image.wp-block-embed.alignwide {
  max-width: 48%;
  margin-inline: auto;
}
.wp-block-image.alignright {
  max-width: 48%;
  margin-inline: auto 0;
}

.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1.5em;
  --wp--style--gallery-gap-default: var(--wp--preset--spacing--default);
}
.wp-block-gallery.has-nested-images .wp-block-image {
  display: block;
  margin: 0;
  flex-grow: 0;
}
.wp-block-gallery.has-nested-images .wp-block-image img {
  margin: 0;
}
.wp-block-gallery.has-nested-images .wp-block-image figcaption,
.wp-block-gallery.has-nested-images .wp-block-image .wp-element-caption {
  background: none !important;
  color: #000 !important;
}
.wp-block-gallery.has-nested-images.is-layout-flex {
  align-items: initial;
}
.wp-block-gallery.has-nested-images.is-layout-flex img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/2;
}
.wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 0;
}
.wp-block-gallery.has-nested-images.columns-default {
  gap: var(--wp--style--unstable-gallery-gap, 15px) !important;
}
.wp-block-gallery.has-nested-images.columns-default .wp-block-image:not(#individual-image) {
  width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 15px)) !important;
}
.wp-block-gallery.has-nested-images.columns-1 .wp-block-image:not(#individual-image) {
  width: 100%;
}
.wp-block-gallery.has-nested-images.columns-2 {
  gap: calc(var(--wp--style--unstable-gallery-gap, 15px));
}
.wp-block-gallery.has-nested-images.columns-2 .wp-block-image:not(#individual-image) {
  width: calc(50% - var(--wp--style--unstable-gallery-gap, 15px) * 0.5);
}
.wp-block-gallery.has-nested-images.columns-3 {
  gap: calc(var(--wp--style--unstable-gallery-gap, 15px));
}
.wp-block-gallery.has-nested-images.columns-3 .wp-block-image:not(#individual-image) {
  width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 15px) * 0.66667);
}
@media only screen and (max-width: 640px) {
  .wp-block-gallery.has-nested-images.columns-3 {
    gap: calc(var(--wp--style--unstable-gallery-gap, 15px));
  }
  .wp-block-gallery.has-nested-images.columns-3 .wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 15px) * 0.5);
  }
}
.wp-block-gallery.has-nested-images.columns-4 {
  gap: calc(var(--wp--style--unstable-gallery-gap, 15px));
}
.wp-block-gallery.has-nested-images.columns-4 .wp-block-image:not(#individual-image) {
  width: calc(25% - var(--wp--style--unstable-gallery-gap, 15px) * 0.75);
}
@media only screen and (max-width: 640px) {
  .wp-block-gallery.has-nested-images.columns-4 {
    gap: calc(var(--wp--style--unstable-gallery-gap, 15px));
  }
  .wp-block-gallery.has-nested-images.columns-4 .wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 15px) * 0.5);
  }
}
.wp-block-gallery.alignleft, .wp-block-gallery.wp-block-embed.alignleft {
  max-width: 48%;
  margin-inline: 0 auto;
}
.wp-block-gallery.aligncenter, .wp-block-gallery.wp-block-embed.alignwide {
  max-width: 48%;
  margin-inline: auto;
}
.wp-block-gallery.alignright, .wp-block-gallery.wp-block-embed.alignright {
  max-width: 48%;
  margin-inline: auto 0;
}

.wp-block-group {
  margin-top: 1.5em;
  gap: 0;
}
.wp-block-group.is-content-justification-center {
  display: flex;
  justify-content: center;
}
.wp-block-group.is-content-justification-left {
  display: flex;
  justify-content: flex-start;
}
.wp-block-group.is-content-justification-right {
  display: flex;
  justify-content: flex-end;
}
.wp-block-group.is-vertical {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.wp-block-group.is-vertical > *:first-child {
  margin-top: 0;
}
.wp-block-group.is-vertical > *:last-child {
  margin-bottom: 0;
}
.wp-block-group.is-vertical.is-content-justification-center {
  align-items: center;
}
.wp-block-group.is-vertical.is-content-justification-left {
  align-items: flex-start;
}
.wp-block-group.is-vertical.is-content-justification-right {
  align-items: flex-end;
}

.wp-block-columns {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 2.875rem;
}
@media only screen and (max-width: 960px) {
  .wp-block-columns {
    margin-top: 2rem;
    gap: 1.25rem;
  }
}
.wp-block-columns.is-vertically-aligned-top {
  align-self: start;
}
.wp-block-columns.is-vertically-aligned-center {
  align-self: center;
}
.wp-block-columns.is-vertically-aligned-bottom {
  align-self: end;
}
.wp-block-columns .wp-block-column {
  flex-basis: 0;
  flex-grow: 1;
  align-self: stretch;
}
.wp-block-columns .wp-block-column .wp-block-image img {
  width: 100%;
  object-fit: cover;
}
.wp-block-columns .wp-block-column.is-vertically-aligned-top {
  align-self: start;
}
.wp-block-columns .wp-block-column.is-vertically-aligned-center {
  align-self: center;
}
.wp-block-columns .wp-block-column.is-vertically-aligned-bottom {
  align-self: end;
}
.wp-block-columns .wp-block-column > *:first-child {
  margin-top: 0;
}
.wp-block-columns .wp-block-column > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    flex-wrap: wrap;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column {
    flex-basis: 100% !important;
  }
}

.wp-block-cover {
  position: relative;
  background-position: 50%;
  min-height: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  box-sizing: border-box;
  margin-top: 1.5em;
}
@media only screen and (max-width: 960px) {
  .wp-block-cover {
    min-height: 300px;
  }
}
@media only screen and (max-width: 640px) {
  .wp-block-cover {
    min-height: 200px;
  }
}
.wp-block-cover .wp-block-cover__image-background,
.wp-block-cover video.wp-block-cover__video-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  outline: none;
  border: none;
  box-shadow: none;
}
.wp-block-cover .wp-block-cover__image-background.has-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.wp-block-cover .wp-block-cover__background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0.5;
  background-color: #000;
}
.wp-block-cover .wp-block-cover__background.has-background-dim {
  opacity: 0.5;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-10 {
  opacity: 0.1;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-20 {
  opacity: 0.2;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-30 {
  opacity: 0.3;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-40 {
  opacity: 0.4;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-50 {
  opacity: 0.5;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-60 {
  opacity: 0.6;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-70 {
  opacity: 0.7;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-80 {
  opacity: 0.8;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-90 {
  opacity: 0.9;
}
.wp-block-cover .wp-block-cover__background.has-background-dim-100 {
  opacity: 1;
}
.wp-block-cover .wp-block-cover__inner-container {
  width: 100%;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.wp-block-media-text {
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  box-sizing: border-box;
  margin-top: 2.875rem;
  gap: 5rem;
}
@media only screen and (max-width: 960px) {
  .wp-block-media-text {
    margin-top: 2rem;
    gap: 2rem;
  }
}
.wp-block-media-text .wp-block-media-text__media > *:first-child,
.wp-block-media-text .wp-block-media-text__content > *:first-child {
  margin-top: 0;
}
.wp-block-media-text .wp-block-media-text__media > *:last-child,
.wp-block-media-text .wp-block-media-text__content > *:last-child {
  margin-bottom: 0;
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
@media only screen and (max-width: 640px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text .wp-block-media-text__content {
  align-self: stretch;
}
.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media,
.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content {
  align-self: start;
}
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content {
  align-self: center;
}
.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media,
.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content {
  align-self: end;
}

.wp-block-video {
  margin-top: 1.5em;
}
.wp-block-video.alignleft {
  max-width: 48%;
  margin-inline: 0 auto;
}
.wp-block-video.aligncenter, .wp-block-video.wp-block-embed.alignwide {
  max-width: 48%;
  margin-inline: auto;
}
.wp-block-video.alignright {
  max-width: 48%;
  margin-inline: auto 0;
}
.wp-block-video video {
  max-width: 100%;
}

.wp-block-embed {
  margin-block: 2em;
}
.wp-block-embed .wp-block-embed__wrapper::before {
  content: none !important;
}
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper {
  padding-top: 42.85%;
}
.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper {
  padding-top: 50%;
}
.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper {
  padding-top: 56.25%;
}
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
  padding-top: 75%;
}
.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper {
  padding-top: 100%;
}
.wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper {
  padding-top: 66.66%;
}
.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper {
  padding-top: 200%;
}

.wp-block-embed.aligncenter, .wp-block-embed.alignwide {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-embed.alignleft {
  max-width: initial;
}

.wp-block-embed.alignright {
  max-width: initial;
}

.wp-block-embed.alignwide {
  max-width: initial;
}

.wp-block-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  overflow: hidden;
}

#wp-calendar {
  table-layout: fixed;
}

.wp-block-list {
  list-style-position: outside;
}

.is-style-remarks {
  padding: 2em;
  background: #efefe9;
  border-radius: 6px;
  margin-top: 1em;
}
.is-style-remarks h2,
.is-style-remarks h3,
.is-style-remarks h4,
.is-style-remarks h5,
.is-style-remarks h6 {
  margin-bottom: 1rem;
}
.is-style-remarks p {
  margin-block-start: 1rem;
}
.is-style-remarks *:first-child {
  margin-top: 0;
}
.is-style-remarks *:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
  .is-style-remarks {
    padding: 1em;
  }
}

.wp-block-file__button {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--color--main);
  border: 2px solid var(--color--main);
  border-radius: 4px;
  padding: 1em 1.5em;
  margin-block: 0.25em;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color--white);
  cursor: pointer;
  padding-right: 2.1em;
}
.wp-block-file__button.hover:hover {
  background-color: var(--color--white);
  border-color: var(--color--main);
  color: var(--color--main);
}
.wp-block-file__button::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

.map iframe {
  width: 100%;
}

.wp-block-group-is-layout-constrained {
  width: 100%;
}

.contents-body {
  /* ※※ 公開側では [$txtclass]下で展開されます ※※ */
}
.contents-body > *:first-child {
  margin-top: 0 !important;
}
.contents-body h2 {
  margin-block: 2em 1.2em;
}
.contents-body h3 {
  margin-block: 1.71em 0.5em;
}
.contents-body h4 {
  margin-block: 1.524em 0.762em;
}
.contents-body p,
.contents-body table,
.contents-body ul,
.contents-body ol,
.contents-body img {
  margin-block: 2em 0;
}
.contents-body figure > img {
  margin-block: 0 0;
}
.contents-body p {
  margin-top: 2rem;
  line-height: 2.5;
  font-weight: 500;
}
@media only screen and (max-width: 960px) {
  .contents-body p {
    line-height: 2;
    margin-top: 1.5rem;
  }
}
.contents-body p img:first-child {
  margin-top: 0;
}
.contents-body p.is-style-notes {
  position: relative;
  font-size: 0.875rem;
  color: #666666;
  margin-block: 1.5em 0;
  line-height: 2;
  padding-left: 1.5em;
}
.contents-body p.is-style-notes::before {
  display: inline-block;
  content: "※";
}
.contents-body p.is-style-notes + .is-style-notes {
  margin-top: 1em;
}
.contents-body p a {
  display: inline-flex;
  align-items: baseline;
  color: var(--wp--preset--color--main);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: all 0.35s ease;
  position: relative;
  padding: 0 0 0 2em;
}
.contents-body p a:hover {
  text-decoration: underline;
}
.contents-body p a::before {
  position: absolute;
  display: inline-block !important;
  content: "";
  width: 1.5em;
  height: 1.5em;
  top: 0.625em;
  left: 0;
  margin: auto 0.5em auto 0.3em;
  padding: 0;
  background: url(../img/com/icon_link_arrow.svg) 0 0/cover no-repeat;
}
@media only screen and (max-width: 960px) {
  .contents-body p a::before {
    top: 0.325em;
  }
}
.contents-body p a::after {
  display: none;
}
.contents-body p a[href^="mailto:"] {
  padding-left: 0;
}
.contents-body p a[href^="mailto:"]::before {
  display: none !important;
  content: "";
}
.contents-body p a[target=_blank]::before {
  background-image: url(../img/com/icon_link_blank.svg);
}
.contents-body p a[href$=".pdf"]::before {
  background-image: url(../img/com/icon_link_pdf.svg);
}
.contents-body p a[href$=".doc"]::before, .contents-body p a[href$=".docx"]::before {
  background-image: url(../img/com/icon_link_doc.svg);
}
.contents-body p a[href$=".xls"]::before, .contents-body p a[href$=".xlsx"]::before, .contents-body p a[href$=".xlsm"]::before {
  background-image: url(../img/com/icon_link_xls.svg);
}
.contents-body p a[href$=".ppt"]::before, .contents-body p a[href$=".pptx"]::before {
  background-image: url(../img/com/icon_link_ppt.svg);
}
.contents-body p a[href$=".zip"]::before {
  background-image: url(../img/com/icon_link_zip.svg);
}
.contents-body p a[href$=".txt"]::before {
  background-image: url(../img/com/icon_link_txt.svg);
}
.contents-body p.is-style-notes a {
  display: inline;
  padding-left: 0;
  font-weight: 500;
}
.contents-body p.is-style-notes a::before {
  display: none !important;
}
.contents-body p.is-style-notes a::after {
  display: none !important;
}
.contents-body > *.alignleft:first-child + h1, .contents-body > *.alignleft:first-child + h2, .contents-body > *.alignleft:first-child + h3, .contents-body > *.alignleft:first-child + h4, .contents-body > *.alignleft:first-child + h5, .contents-body > *.alignleft:first-child + h6, .contents-body > *.alignleft:first-child + div, .contents-body > *.alignleft:first-child + p {
  margin-top: 0;
}
.contents-body > *.alignlight:first-child + h1, .contents-body > *.alignlight:first-child + h2, .contents-body > *.alignlight:first-child + h3, .contents-body > *.alignlight:first-child + h4, .contents-body > *.alignlight:first-child + h5, .contents-body > *.alignlight:first-child + h6, .contents-body > *.alignlight:first-child + div, .contents-body > *.alignlight:first-child + p {
  margin-top: 0;
}
.contents-body div > *.alignleft:first-child + h1, .contents-body div > *.alignleft:first-child + h2, .contents-body div > *.alignleft:first-child + h3, .contents-body div > *.alignleft:first-child + h4, .contents-body div > *.alignleft:first-child + h5, .contents-body div > *.alignleft:first-child + h6, .contents-body div > *.alignleft:first-child + div, .contents-body div > *.alignleft:first-child + p,
.contents-body section > *.alignleft:first-child + h1,
.contents-body section > *.alignleft:first-child + h2,
.contents-body section > *.alignleft:first-child + h3,
.contents-body section > *.alignleft:first-child + h4,
.contents-body section > *.alignleft:first-child + h5,
.contents-body section > *.alignleft:first-child + h6,
.contents-body section > *.alignleft:first-child + div,
.contents-body section > *.alignleft:first-child + p,
.contents-body article > *.alignleft:first-child + h1,
.contents-body article > *.alignleft:first-child + h2,
.contents-body article > *.alignleft:first-child + h3,
.contents-body article > *.alignleft:first-child + h4,
.contents-body article > *.alignleft:first-child + h5,
.contents-body article > *.alignleft:first-child + h6,
.contents-body article > *.alignleft:first-child + div,
.contents-body article > *.alignleft:first-child + p {
  margin-top: 0;
}
.contents-body div > *.alignlight:first-child + h1, .contents-body div > *.alignlight:first-child + h2, .contents-body div > *.alignlight:first-child + h3, .contents-body div > *.alignlight:first-child + h4, .contents-body div > *.alignlight:first-child + h5, .contents-body div > *.alignlight:first-child + h6, .contents-body div > *.alignlight:first-child + div, .contents-body div > *.alignlight:first-child + p,
.contents-body section > *.alignlight:first-child + h1,
.contents-body section > *.alignlight:first-child + h2,
.contents-body section > *.alignlight:first-child + h3,
.contents-body section > *.alignlight:first-child + h4,
.contents-body section > *.alignlight:first-child + h5,
.contents-body section > *.alignlight:first-child + h6,
.contents-body section > *.alignlight:first-child + div,
.contents-body section > *.alignlight:first-child + p,
.contents-body article > *.alignlight:first-child + h1,
.contents-body article > *.alignlight:first-child + h2,
.contents-body article > *.alignlight:first-child + h3,
.contents-body article > *.alignlight:first-child + h4,
.contents-body article > *.alignlight:first-child + h5,
.contents-body article > *.alignlight:first-child + h6,
.contents-body article > *.alignlight:first-child + div,
.contents-body article > *.alignlight:first-child + p {
  margin-top: 0;
}
.contents-body h2 {
  font-size: clamp(1.313rem, 0.483rem + 2.074vw, 2.5rem);
  line-height: 1.4;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 1.75rem;
}
@media only screen and (max-width: 960px) {
  .contents-body h2 {
    line-height: 1.52;
    padding-left: 1.25rem;
  }
}
.contents-body h2::before {
  position: absolute;
  display: flex;
  content: "";
  width: 0.625rem;
  height: calc(100% - 0.3em);
  top: 0.15em;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--wp--preset--color--main);
  border-radius: 0.9375rem;
}
@media only screen and (max-width: 960px) {
  .contents-body h2::before {
    width: 0.375rem;
  }
}
.contents-body h3 {
  font-size: clamp(1.125rem, 0.679rem + 1.116vw, 1.75rem);
  font-weight: bold;
  line-height: 1.57142857;
  color: var(--wp--preset--color--main);
  position: relative;
  display: flex;
  align-items: flex-start;
  border-bottom: 2px solid var(--wp--preset--color--main);
  padding-bottom: 0.625rem;
}
@media only screen and (max-width: 960px) {
  .contents-body h3 {
    line-height: 1.5555555556;
  }
}
.contents-body h3::before {
  position: relative;
  display: block;
  content: "";
  min-width: 0.625rem;
  height: 1em;
  top: 0.43em;
  background: no-repeat center center;
  background-image: url(/assets/img/com/arrow_right.svg);
  filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(2819%) hue-rotate(354deg) brightness(87%) contrast(103%);
  background-size: 0.5em auto;
  margin-right: 0.625rem;
}
@media only screen and (max-width: 960px) {
  .contents-body h3::before {
    top: 0.275em;
  }
}
.contents-body h4 {
  line-height: 1.52;
  font-size: clamp(1rem, 0.777rem + 0.558vw, 1.313rem);
}
@media only screen and (max-width: 960px) {
  .contents-body h4 {
    line-height: 1.5;
  }
}
.contents-body div.has-background,
.contents-body p.has-background,
.contents-body ul.has-background,
.contents-body ol.has-background {
  padding: 0.5em 1em;
}
.contents-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contents-body ul li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.contents-body ul li::marker {
  content: none;
}
.contents-body ul li {
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}
@media only screen and (max-width: 960px) {
  .contents-body ul li {
    align-items: first baseline;
  }
}
.contents-body ul li + li {
  margin-top: 0.9375rem;
}
.contents-body ul li::before {
  content: "";
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.625rem 0 0.375rem;
  min-width: 0.375rem;
  min-height: 0.375rem;
  background-color: var(--wp--preset--color--main);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.625rem;
}
.contents-body ul li a {
  color: #4b96e6;
}
.contents-body ol {
  list-style: none;
  counter-reset: number;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contents-body ol li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.contents-body ol li::marker {
  content: none;
}
.contents-body ol li {
  display: flex;
  line-height: 1.6;
}
.contents-body ol li + li {
  margin-top: 0.9375rem;
}
.contents-body ol li::before {
  counter-increment: number;
  content: counter(number) ".";
  display: inline-block;
  margin-right: 0.3125rem;
}
.contents-body ul,
.contents-body ol {
  margin-top: 2rem;
}
.contents-body ul ul,
.contents-body ul ol,
.contents-body ol ul,
.contents-body ol ol {
  margin-block: 0;
}
.contents-body table tr {
  height: auto !important;
}
.contents-body table tr th {
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  width: 25%;
}
.contents-body table.w100 {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .contents-body table.w100 tr,
  .contents-body table.w100 th,
  .contents-body table.w100 td {
    display: block;
    float: none;
    width: 100%;
    border: none;
  }
  .contents-body table.w100 th,
  .contents-body table.w100 td {
    padding-top: 0.25em;
    padding-bottom: 0.25em;
  }
  .contents-body table.w100 th {
    font-weight: bold;
    border-bottom: 1px solid var(--wp--preset--color--border);
  }
  .contents-body table.w100 td {
    padding-bottom: 1.5em;
  }
}
.contents-body figure {
  position: relative;
}
.contents-body hr {
  display: block;
  width: 100%;
  max-width: 13.125rem;
  height: 0.375rem;
  background-image: radial-gradient(circle, #df180b 3px, transparent 3px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 14px 6px;
  border: none;
  margin-left: auto;
  margin-right: auto;
  margin-block: 4rem;
}
@media only screen and (max-width: 960px) {
  .contents-body hr {
    max-width: 8.75rem;
  }
}
@media screen and (max-width: 768px) {
  .contents-body hr {
    margin-block: 2.5rem;
  }
}
.contents-body .wp-block-button {
  width: 18.4375rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wp--preset--color--main);
  position: relative;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .wp-block-button {
    width: 100%;
    max-width: 18.4375rem;
    height: 2.75rem;
  }
}
.contents-body .wp-block-button:hover::before {
  transition: background 0.3s ease-in-out;
  background-position: 0 0;
}
.contents-body .wp-block-button:hover .wp-block-button__link {
  background-color: transparent;
  color: var(--wp--preset--color--white);
}
.contents-body .wp-block-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/assets/img/com/button_arrow.png) no-repeat 100% 0;
  transition: background 0.3s ease-in-out;
  background-color: var(--wp--preset--color--white);
  border-radius: 0.25rem;
  background-repeat: repeat-x;
  background-size: 200% 100%;
  z-index: 2;
  pointer-events: none;
}
.contents-body .wp-block-button .wp-block-button__link {
  padding: 0;
  background-color: transparent;
  margin: 0;
  font-weight: bold;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.5rem;
}
.contents-body .wp-block-button .wp-block-button__link::before {
  display: none;
}
.contents-body .wp-block-button.is-style-btn__outline {
  border: 2px solid var(--wp--preset--color--main);
  background-color: var(--wp--preset--color--white);
}
.contents-body .wp-block-button.is-style-btn__outline::before {
  background: url(/assets/img/com/button_arrow-w.png) no-repeat 100% 0;
  background-color: var(--wp--preset--color--main);
  background-repeat: repeat-x;
  background-size: 200% 100%;
}
.contents-body .wp-block-button.is-style-btn__outline:hover::before {
  transition: background 0.3s ease-in-out;
  background-position: 0 0;
}
.contents-body .wp-block-button.is-style-btn__outline:hover .wp-block-button__link {
  background-color: transparent;
  color: var(--wp--preset--color--main);
  font-weight: bold;
}
.contents-body .wp-block-button.is-style-btn__outline .wp-block-button__link {
  color: var(--wp--preset--color--main);
  font-weight: bold;
  border: none;
}
.contents-body .wp-block-button.is-style-btn__reset {
  background-color: var(--wp--preset--color--palegray);
}
.contents-body .wp-block-button.is-style-btn__reset .wp-block-button__link {
  border: none;
}
.contents-body .wp-block-button.is-style-btn__reset::before {
  background: url(/assets/img/com/button_arrow-g.png) no-repeat 100% 0;
  background-color: var(--wp--preset--color--white);
  background-repeat: repeat-x;
  background-size: 200% 100%;
}
.contents-body .wp-block-button.is-style-btn__reset:hover::before {
  transition: background 0.3s ease-in-out;
  background-position: 0 0;
}
.contents-body .wp-block-button.is-style-btn__reset:hover .wp-block-button__link {
  background-color: transparent;
  color: var(--wp--preset--color--white);
}
.contents-body .wp-block-button.is-style-btn__green {
  background-color: var(--wp--preset--color--green) !important;
}
.contents-body .wp-block-button.is-style-btn__green .wp-block-button__link {
  border: none;
}
.contents-body .wp-block-button.is-style-btn__green::before {
  background: url(/assets/img/com/button_arrow-gr.png) no-repeat 100% 0;
  background-color: var(--wp--preset--color--white);
  background-repeat: repeat-x;
  background-size: 200% 100%;
}
.contents-body .wp-block-button.is-style-btn__green:hover::before {
  transition: background 0.3s ease-in-out;
  background-position: 0 0;
}
.contents-body .wp-block-button.is-style-btn__green:hover .wp-block-button__link {
  background-color: transparent;
  color: var(--wp--preset--color--white);
}
.contents-body .is-style-numbers {
  font-family: "Alegreya Sans", sans-serif;
  font-size: clamp(4rem, 3.193rem + 3.445vw, 6.5rem);
  text-align: center;
  font-weight: bold;
  font-style: italic;
  color: var(--wp--preset--color--main);
  line-height: 1;
  margin-block: 9rem 4rem;
}
@media screen and (max-width: 768px) {
  .contents-body .is-style-numbers {
    margin-block: 4rem 2rem;
  }
}
.contents-body .is-style-media-text,
.contents-body .is-style-media-text-reverse {
  display: grid;
  gap: 2.5rem;
}
.contents-body .is-style-media-text picture,
.contents-body .is-style-media-text-reverse picture {
  position: sticky;
  top: 100px;
  text-align: center;
}
.contents-body .is-style-media-text picture img,
.contents-body .is-style-media-text-reverse picture img {
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contents-body .is-style-media-text picture img,
  .contents-body .is-style-media-text-reverse picture img {
    width: 100%;
  }
}
.contents-body .is-style-media-text {
  grid-template-columns: 1fr max(45.5%, 460px);
}
@media screen and (max-width: 768px) {
  .contents-body .is-style-media-text {
    grid-template-columns: 1fr;
  }
  .contents-body .is-style-media-text > *:first-child {
    order: 2;
  }
}
.contents-body .is-style-media-text-reverse {
  grid-template-columns: max(45.5%, 460px) 1fr;
}
@media screen and (max-width: 768px) {
  .contents-body .is-style-media-text-reverse {
    grid-template-columns: 1fr;
  }
}
.contents-body .is-style-media-text-reverse > *:first-child {
  order: 2;
}
.contents-body .is-style-shadow-box {
  border-radius: 0.5em;
  background-color: var(--wp--preset--color--white);
  border-radius: 1.5em;
  padding: min(6vw, 100px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.contents-body .is-style-shadow-box + .is-style-shadow-box {
  margin-top: 4rem;
}
.contents-body .is-style-column-reverse > *:first-child {
  order: 2;
}
@media screen and (max-width: 800px) {
  .contents-body .is-style-column-reverse > *:first-child {
    order: initial;
  }
}
.contents-body .page-nav {
  margin-bottom: 3.75rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .page-nav {
    margin-bottom: 2.5rem;
  }
}
.contents-body .page-nav .page-nav-item {
  margin-top: 0;
  padding-left: 0;
}
.contents-body .page-nav .page-nav-item::before {
  content: none;
}
.contents-body .page-nav .page-nav-item i img {
  margin: 0;
}

.breadcrumb {
  padding-top: 2rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
}
@media only screen and (max-width: 960px) {
  .breadcrumb {
    padding-bottom: 1.25rem;
  }
}
.breadcrumb .breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.1875rem;
  flex-wrap: wrap;
  margin-top: 0;
  overflow: hidden;
}
.breadcrumb .breadcrumb__list li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.breadcrumb .breadcrumb__list li::marker {
  content: none;
}
@media only screen and (max-width: 960px) {
  .breadcrumb .breadcrumb__list {
    flex-wrap: nowrap;
    padding-bottom: 0.9375rem;
  }
}

.breadcrumb__item {
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}
.news-single .breadcrumb__item {
  color: var(--wp--preset--color--white);
}
.breadcrumb__item::before {
  display: none !important;
}
.breadcrumb__item::after {
  display: none !important;
}
.breadcrumb__item:last-of-type {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
}

.breadcrumb__link {
  text-decoration: none;
  color: #b4b4b4;
  display: flex;
  white-space: nowrap;
  align-items: center;
}
.news-single .breadcrumb__link {
  color: var(--wp--preset--color--white);
}
.news-single .breadcrumb__link:hover {
  color: var(--wp--preset--color--white);
}
.news-single .breadcrumb__link::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7480%) hue-rotate(352deg) brightness(116%) contrast(99%);
}
.breadcrumb__link:hover {
  color: var(--wp--preset--color--main);
  text-decoration: underline;
}
.breadcrumb__link::after {
  display: inline-block;
  content: "";
  min-width: 1rem;
  height: 0.625rem;
  background-image: url(/assets/img/com/arrow_right.svg);
  filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(2819%) hue-rotate(354deg) brightness(87%) contrast(103%);
  background-size: contain;
  background-position: center;
  margin-left: 0.1875rem;
  background-repeat: no-repeat;
}

/*******************************
 * page-hero-title
 *******************************/
.page-hero-title {
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 17.5rem;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}
@media screen and (max-width: 1440px) {
  .page-hero-title {
    min-height: auto;
    padding: 5.75% 3.125em;
  }
}
@media only screen and (max-width: 640px) {
  .page-hero-title {
    padding: 8.614% 2em;
  }
}

.page-hero-title__main {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 1.968rem + 4.403vw, 6.25rem);
  line-height: 0.85;
  text-align: center;
}

.page-hero-title__sub {
  margin-top: 0.625rem;
  font-weight: bold;
  line-height: 0.9;
  font-size: clamp(0.875rem, 0.677rem + 0.847vw, 1.5rem);
}

.page-content {
  position: relative;
  z-index: 4;
  background-color: var(--wp--preset--color--white);
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  padding: 4rem 7.85%;
}
@media only screen and (max-width: 640px) {
  .page-content {
    padding: 2.25rem 1.25rem;
  }
}
.page-content > *:first-child {
  margin-top: 0;
}

.page-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 960px) {
  .page-nav-list {
    flex-direction: column;
    padding-inline: 1.25rem;
  }
}
.page-nav-list .page-nav-item {
  width: 17.5rem;
  height: 4rem;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .page-nav-list .page-nav-item {
    width: 100%;
    max-width: 22.5rem;
    height: 3rem;
  }
}
.page-nav-list .page-nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  border-radius: 2.25rem;
  border: 2px solid var(--wp--preset--color--main);
  background: #fff;
}
.page-nav-list .page-nav-item a.hover:hover {
  background: #fef3f2;
}
.page-nav-list .page-nav-text {
  font-weight: bold;
  font-size: 1rem;
  line-height: 2.25;
  color: var(--wp--preset--color--text);
}
.page-nav-list .page-nav-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.3125rem;
}
.page-nav-list .page-nav-icon img {
  display: block;
  width: 1rem;
  height: 0.625rem;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(290deg) brightness(103%) contrast(101%);
}

.page-nav-splide .splide__slide {
  height: 4rem;
}
@media only screen and (max-width: 960px) {
  .page-nav-splide .splide__slide {
    height: 3rem;
  }
}
.page-nav-splide .splide__slide a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  border-radius: 2.25rem;
  border: 2px solid var(--wp--preset--color--main);
  background: #fff;
}
.page-nav-splide .splide__slide a.hover:hover {
  background: #fef3f2;
}
.page-nav-splide .page-nav-text {
  font-weight: bold;
  font-size: 1rem;
  line-height: 2.25;
  color: var(--wp--preset--color--text);
}
.page-nav-splide .page-nav-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.3125rem;
}
.page-nav-splide .page-nav-icon img {
  display: block;
  width: 1rem;
  height: 0.625rem;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(290deg) brightness(103%) contrast(101%);
}

/*******************************
 *お知らせ一覧
 *******************************/
.news-category {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
}

.news-category-title {
  font-size: 1rem;
  font-weight: bold;
}

.news-category-select {
  position: relative;
  width: 11rem;
  height: 2.5rem;
  background: var(--wp--preset--color--white) url(../img/com/select_arrow.svg) calc(100% - 0.5em) 50%/1.5em 1.5em no-repeat;
  padding-inline: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  appearance: none;
  border-color: var(--wp--preset--color--palegray);
}

.news-archive-inner {
  margin-top: 4rem;
}
@media only screen and (max-width: 960px) {
  .news-archive-inner {
    margin-top: 2.5rem;
  }
}

.news-archive-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 4.5rem;
  grid-column-gap: 2.5rem;
}
@media screen and (max-width: 1440px) {
  .news-archive-list {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 4.5rem;
    grid-column-gap: 2.5rem;
  }
}
@media only screen and (max-width: 960px) {
  .news-archive-list {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 1.9375rem;
    grid-column-gap: 2rem;
  }
}
@media only screen and (max-width: 640px) {
  .news-archive-list {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 2rem;
    grid-column-gap: 1.25rem;
  }
}

.news-archive-link {
  display: block;
  text-decoration: none;
}
.news-archive-link.hover:hover {
  opacity: 0.7;
}
.news-archive-link.hover:hover .news-archive-content__date {
  color: var(--wp--preset--color--main);
}

.news-archive-thmbnail img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 960px) {
  .news-archive-thmbnail img {
    border-radius: 1rem;
  }
}

.news-archive-content {
  padding: 1.125rem 0 0;
}

.news-archive-content__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-archive-content__cate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  padding: 0rem 0.375rem;
  line-height: 2;
}

.news-archive-content__date {
  font-size: 0.875rem;
  font-weight: bold;
}

.news-archive-content__title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.857;
  color: var(--wp--preset--color--text);
  margin-top: 0.3125rem;
}

/*******************************
 * お知らせ詳細
 *******************************/
.news-single {
  position: relative;
}
.news-single::before {
  content: "";
  width: 100vw;
  height: 25rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--wp--preset--color--main);
}
@media only screen and (max-width: 960px) {
  .news-single::before {
    height: 18em;
  }
}
@media screen and (max-width: 768px) {
  .news-single::before {
    height: 15em;
  }
}
@media only screen and (max-width: 640px) {
  .news-single::before {
    height: 12em;
  }
}

.news-single-content {
  box-shadow: none;
  padding-bottom: 0;
}
.news-single-content .back-link {
  padding-bottom: 0;
}

.news-single-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.news-single-info__cate {
  min-width: 8.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  line-height: 1.85;
  font-weight: bold;
  padding: 0rem 0.375rem;
}
@media only screen and (max-width: 960px) {
  .news-single-info__cate {
    min-width: 6.25rem;
    font-size: 0.875rem;
  }
}

.news-single-info__date {
  margin-left: 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  color: var(--wp--preset--color--main);
}
@media only screen and (max-width: 960px) {
  .news-single-info__date {
    margin-left: 1rem;
    font-size: 0.875rem;
  }
}

.news-single-title {
  position: relative;
  font-size: clamp(1.313rem, 0.894rem + 1.78vw, 2.5rem);
  font-weight: bold;
  line-height: 1.6;
  margin-top: 0.9em;
  margin-bottom: 2.45em;
}
@media only screen and (max-width: 960px) {
  .news-single-title {
    margin-bottom: 2.5rem;
  }
}
.news-single-title::after {
  content: "";
  display: block;
  width: 22.875rem;
  height: 0.375rem;
  background-image: radial-gradient(circle, #df180b 3px, transparent 3px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 14px 6px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
}
@media only screen and (max-width: 960px) {
  .news-single-title::after {
    width: 100%;
    max-width: 22.875rem;
  }
}

/*******************************
 * 一覧へ戻る
 *******************************/
.back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 3.875rem;
  padding-bottom: 1.3125rem;
  gap: 1.25rem;
  text-decoration: none;
}
@media only screen and (max-width: 960px) {
  .back-link {
    margin-top: 3.75rem;
    padding-bottom: 2.625rem;
  }
}

.back-link__text {
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--wp--preset--color--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  position: relative;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.625rem;
}
.back-link__text:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
}
.back-link__text::after {
  display: block;
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.125rem;
  background-color: var(--wp--preset--color--main);
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}

/*******************************
 * ページャー
 *******************************/
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6.25rem 0 0;
  padding-bottom: 5.625rem;
}
.pager__inner {
  width: 590px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}
.pager__list {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pager__list li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.pager__list li::marker {
  content: none;
}
@media only screen and (max-width: 960px) {
  .pager__list {
    gap: 0.5rem;
  }
}
.pager__item {
  margin: 0 0.3125rem;
}
.pager__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  text-decoration: none;
  color: #333;
  text-decoration: none;
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
  border: 2px solid var(--wp--preset--color--main);
  border-radius: 0.375rem;
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  .pager__link {
    width: 2rem;
    height: 2rem;
    font-size: 1.125rem;
  }
}
.pager__link--active {
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
}
.pager__link:hover {
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
}
.pager__button {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--wp--preset--color--white);
}
.pager__button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
  border: 2px solid var(--wp--preset--color--main);
  border-radius: 0.375rem;
}
.pager__button__link img {
  transition: filter 0.35s ease-in;
  display: block;
  width: 1.8125rem;
  height: 1.1875rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(2819%) hue-rotate(354deg) brightness(87%) contrast(103%);
}
@media only screen and (max-width: 960px) {
  .pager__button__link img {
    width: 1.375rem;
    height: 0.9375rem;
  }
}
.pager__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
  border: 2px solid var(--wp--preset--color--main);
  border-radius: 0.375rem;
}
.pager__button a:hover {
  background-color: var(--wp--preset--color--main);
}
.pager__button a:hover img {
  transition: filter 0.35s ease-in-out;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(288deg) brightness(108%) contrast(101%);
}
.pager__button a img {
  transition: filter 0.35s ease-in-out;
  display: block;
  width: 1.8125rem;
  height: 1.1875rem;
  object-fit: contain;
}
@media only screen and (max-width: 960px) {
  .pager__button a img {
    width: 1.375rem;
    height: 0.9375rem;
  }
}
@media only screen and (max-width: 960px) {
  .pager__button {
    width: 2rem;
    height: 2rem;
  }
}
.pager__button.disabled {
  opacity: 0.5;
  cursor: default;
}

.home .bg-beige {
  background: var(--wp--preset--color--sub);
  padding-block: 4em;
}
.home .section-title:has(+ *) {
  margin-bottom: 3em;
}
@media only screen and (max-width: 640px) {
  .home .section-title:has(+ *) {
    margin-bottom: 1.5em;
  }
}
.home .section-title .section-title__en {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--wp--preset--color--main);
}
@media only screen and (max-width: 960px) {
  .home .section-title .section-title__en {
    font-size: clamp(3rem, 0.176rem + 7.06vw, 4.5rem);
  }
}
@media only screen and (max-width: 640px) {
  .home .section-title .section-title__en {
    font-size: 3rem;
  }
}
.home .section-title .section-title__jp {
  font-weight: 900;
  font-size: 1.25rem;
  margin-top: 0.2em;
}
@media only screen and (max-width: 960px) {
  .home .section-title .section-title__jp {
    font-size: clamp(0.875rem, 0.169rem + 1.76vw, 1.25rem);
  }
}
@media only screen and (max-width: 640px) {
  .home .section-title .section-title__jp {
    font-size: 0.875rem;
  }
}
.home .header-link a,
.home .header-link span {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding-left: 2em;
}
.home .header-link a::before,
.home .header-link span::before {
  position: absolute;
  font-size: 0.75rem;
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  padding: 0.5em;
  border-radius: 0.25em;
  width: 2em;
  height: 2em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.home .header-link a.hover:hover,
.home .header-link span.hover:hover {
  color: var(--wp--preset--color--main);
  text-decoration: underline;
}
.home .btn_w {
  position: relative;
  display: block;
  border: 2px solid var(--wp--preset--color--main);
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  padding: 1.35em;
  width: 100%;
  max-width: 18.5em;
  border-radius: 0.5em;
}
@media only screen and (max-width: 640px) {
  .home .btn_w {
    font-size: 0.875rem;
  }
}
.home .btn_w::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--wp--preset--color--main) url(../img/com/button_arrow-w.png) 100% 0/200% 100% repeat-x;
  transition: background 0.3s ease-in-out;
  border-radius: 0.25rem;
  right: 1em;
  margin: auto;
}
.home .btn_w.hover:hover {
  opacity: 1;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
}
.home .btn_w.hover:hover::after {
  background-position: 0 0;
}
.home .splide__arrow {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  top: -5.25em;
  right: initial;
  bottom: initial;
  left: initial;
  background: var(--wp--preset--color--main);
  transform: initial;
  margin-top: 0;
  border-radius: 2em;
  opacity: 1;
}
@media only screen and (max-width: 960px) {
  .home .splide__arrow {
    width: clamp(2rem, 1.5rem + 1.25vw, 2.5rem);
    height: clamp(2rem, 1.5rem + 1.25vw, 2.5rem);
  }
}
@media only screen and (max-width: 640px) {
  .home .splide__arrow {
    width: 2em;
    height: 2em;
  }
}
.home .splide__arrow:hover {
  opacity: 0.5;
}
.home .splide__arrow::before {
  color: #fff;
}
.home .splide__arrow svg {
  display: none;
}
.home .splide__arrow--prev::before {
  content: "\e903";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home .splide__arrow--next::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #visual {
  width: 100%;
  padding: 3em 0;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .home #visual {
    padding: 1.5em 0 3em;
  }
}
.home #visual .visual-splide {
  width: 100%;
}
.home #visual .splide__slide a {
  display: block;
  width: 100%;
  overflow: hidden;
}
.home #visual .splide__slide a[target=_blank]::before {
  display: none;
  content: "";
}
.home #visual .splide__slide img {
  width: 100%;
  aspect-ratio: 840/473;
  border-radius: 1.5em;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .home #visual .splide__slide img {
    aspect-ratio: 295/360;
    border-radius: 1em;
  }
}
.home #visual .splide__pagination {
  position: static;
  margin: 1em 0 0;
  gap: 1em;
}
.home #visual .splide__pagination .presentation {
  margin: 0;
}
.home #visual .splide__pagination .splide__pagination__page {
  opacity: 0.1;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--wp--preset--color--btn_gray);
  opacity: 1;
  margin: 0;
  padding: 0;
}
.home #visual .splide__pagination .splide__pagination__page.is-active {
  background-color: var(--wp--preset--color--link);
  transform: scale(1);
}
.home #pickup {
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .home #pickup {
    padding: 1.5em 0;
  }
}
.home #pickup .pickup-splide .splide__track {
  overflow: visible;
}
.home #pickup .splide__slide a {
  display: block;
}
.home #pickup .splide__slide a img {
  width: 100%;
  border-radius: 1.5em;
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 640px) {
  .home #pickup .splide__slide a img {
    border-radius: 1em;
  }
}
.home #pickup .splide__arrows {
  position: absolute;
  top: -4.875em;
  right: 0;
  display: flex;
  justify-content: flex-end;
  gap: 1.25em;
}
@media only screen and (max-width: 640px) {
  .home #pickup .splide__arrows {
    top: -4em;
    gap: 0.5em;
  }
}
.home .store-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 1.5em 0 0;
  gap: 0.5em;
}
.home .store-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.home .store-items li::marker {
  content: none;
}
.home .store-items .item a {
  font-size: 0.8125rem;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
  border: 1px solid var(--wp--preset--color--main);
  padding: 0.45em 0.625em;
  border-radius: 0.3em;
}
@media only screen and (max-width: 960px) {
  .home .store-items .item a {
    font-size: clamp(0.625rem, 0.438rem + 0.47vw, 0.813rem);
  }
}
@media only screen and (max-width: 640px) {
  .home .store-items .item a {
    font-size: 0.625rem;
  }
}
.home .store-items .item a::before {
  content: "\e906";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
  margin-right: 2px;
}
.home .store-items .item a.hover:hover {
  background: var(--wp--preset--color--main);
  color: #fff;
}
.home #shop {
  padding: 5em 0 0;
}
@media only screen and (max-width: 640px) {
  .home #shop {
    padding: 3.5em 0 0;
  }
}
.home .shop-area {
  display: grid;
  grid-template-columns: 19.375em 1fr;
  background: var(--wp--preset--color--sub);
  overflow: hidden;
  border-radius: 1.5em;
}
@media screen and (max-width: 1280px) {
  .home .shop-area {
    display: flex;
    flex-direction: column;
  }
}
.home .shop-area .shop-area-header {
  display: flex;
  flex-direction: column;
  background: var(--wp--preset--color--main);
  padding: 5em 18.71%;
}
@media screen and (max-width: 1280px) {
  .home .shop-area .shop-area-header {
    padding: 3em 0 0;
    text-align: center;
  }
}
.home .shop-area .section-title .section-title__en {
  color: var(--wp--preset--color--white);
}
.home .shop-area .section-title .section-title__jp {
  color: var(--wp--preset--color--white);
}
.home .shop-area .shop-area-content {
  padding: 2.75em;
}
@media screen and (max-width: 1280px) {
  .home .shop-area .shop-area-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 640px) {
  .home .shop-area .shop-area-content {
    padding: 1.25em;
  }
}
.home .shop-header-link {
  margin-top: auto;
}
@media screen and (max-width: 1280px) {
  .home .shop-header-link {
    display: none;
  }
}
.home .shop-header-link a {
  color: var(--wp--preset--color--white);
  display: inline-block;
}
.home .shop-header-link a::before {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
}
.home .shop-header-link a.hover:hover {
  color: var(--wp--preset--color--white);
}
.home .shop-footer-link {
  display: none;
  margin: 2em 0 0;
}
@media screen and (max-width: 1280px) {
  .home .shop-footer-link {
    display: inline-block;
  }
}
@media only screen and (max-width: 640px) {
  .home .shop-footer-link a {
    font-size: 0.75rem;
  }
}
.home .shop-footer-link a::before {
  font-size: 0.625rem;
}
.home .pref-items {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 52.375em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2em;
}
.home .pref-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.home .pref-items li::marker {
  content: none;
}
@media only screen and (max-width: 960px) {
  .home .pref-items {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
.home .pref-items > .item {
  background: var(--wp--preset--color--white);
  width: 100%;
  padding: 1.5em;
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1);
}
.home .pref-items .item-title {
  font-size: 1.125rem;
  background: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  font-weight: bold;
  text-align: center;
  line-height: 2.11;
  padding: 0.29em;
  border-radius: 0.444em;
}
@media only screen and (max-width: 960px) {
  .home .pref-items .item-title {
    font-size: clamp(0.938rem, 0.585rem + 0.88vw, 1.125rem);
  }
}
@media only screen and (max-width: 640px) {
  .home .pref-items .item-title {
    font-size: 0.9375rem;
  }
}
.home .shop-items {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 0.75em 0 0;
}
.home .shop-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.home .shop-items li::marker {
  content: none;
}
@media only screen and (max-width: 960px) {
  .home .shop-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.5em;
  }
}
@media only screen and (max-width: 640px) {
  .home .shop-items {
    gap: 0 1em;
  }
}
.home .shop-items > .item a {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--wp--preset--color--btn_gray);
  text-decoration: none;
  padding: 0.825em 2em 0.825em 0;
  color: var(--wp--preset--color--text);
}
@media only screen and (max-width: 960px) {
  .home .shop-items > .item a {
    font-size: clamp(0.875rem, 0.64rem + 0.59vw, 1rem);
  }
}
@media only screen and (max-width: 640px) {
  .home .shop-items > .item a {
    font-size: 0.875rem;
  }
}
.home .shop-items > .item a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--wp--preset--color--main) url(../img/com/button_arrow-w.png) 100% 0/200% 100% repeat-x;
  transition: background 0.3s ease-in-out;
  border-radius: 0.25rem;
  right: 0;
  margin: auto;
}
.home .shop-items > .item a.hover:hover::after {
  background-position: 0 0;
}
.home #feature {
  padding: 5em 0 0;
}
@media only screen and (max-width: 640px) {
  .home #feature {
    padding: 3.375em 0 0;
  }
}
.home .feature-header {
  display: flex;
  justify-content: flex-end;
  gap: 6em;
}
@media screen and (max-width: 1536px) {
  .home .feature-header {
    gap: 6.380208vw;
  }
}
@media screen and (max-width: 1488px) {
  .home .feature-header {
    width: 100%;
    padding-left: 2.25em;
  }
}
@media only screen and (max-width: 960px) {
  .home .feature-header {
    justify-content: center;
    flex-direction: column-reverse;
  }
}
.home .feature-header .feature-ring {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 25.25em;
  margin: 1.75em 0 0;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 960px) {
  .home .feature-header .feature-ring {
    margin-inline: auto;
    transform: translateX(-1.125em);
  }
}
@media only screen and (max-width: 960px) {
  .home .feature-header .feature-ring {
    width: clamp(10.625rem, -16.904rem + 68.82vw, 25.25rem);
    height: clamp(10.625rem, -16.904rem + 68.82vw, 25.25rem);
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-header .feature-ring {
    width: 10.625em;
    height: 10.625em;
    margin: 0 auto;
  }
}
.home .feature-header .feature-ring .section-title {
  text-align: center;
}
.home .feature-header .feature-ring::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/home/feature-ring.png) 50% 50%/contain no-repeat;
  animation-name: kurukuru;
  animation-duration: 50s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.home .feature-header .feature-exterior {
  width: calc(50% + 11.375em);
}
@media screen and (max-width: 1488px) {
  .home .feature-header .feature-exterior {
    width: calc(100% - 25.25em);
  }
}
@media only screen and (max-width: 960px) {
  .home .feature-header .feature-exterior {
    width: 100%;
  }
}
.home .feature-header .feature-exterior img {
  width: 100%;
  height: 23.75em;
  object-fit: cover;
  object-position: 0 50%;
  border-radius: 4em 0 0 0;
}
@media only screen and (max-width: 960px) {
  .home .feature-header .feature-exterior img {
    height: auto;
    aspect-ratio: 335/134;
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-header .feature-exterior img {
    border-radius: 1.75em 0 0 0;
  }
}
.home .feature-inner {
  margin-top: 7.375em;
}
@media screen and (max-width: 1440px) {
  .home .feature-inner {
    margin-top: 8.194vw;
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-inner {
    margin-top: 5.5vw;
  }
}
.home .feature-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
}
@media screen and (max-width: 1440px) {
  .home .feature-items {
    gap: 2.78vw;
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-items {
    gap: 1.375em 0.9375em;
  }
}
.home .feature-items .item {
  position: relative;
  width: calc((100% - 17.5em) / 2);
  background: var(--wp--preset--color--sub);
  padding: 0.625em;
  display: flex;
  align-items: center;
  text-decoration: none;
}
@media screen and (max-width: 1440px) {
  .home .feature-items .item {
    width: calc((100% - 19.45vw) / 2);
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-items .item {
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-items .item:nth-of-type(even) {
    width: calc(100% - 5.9375em);
  }
}
.home .feature-items .item:hover {
  background: rgba(223, 24, 11, 0.05);
}
.home .feature-items .item .item-numb {
  position: absolute;
  font-size: 4rem;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 900;
  font-style: italic;
  color: var(--wp--preset--color--main);
  top: 0;
  left: 0.3125em;
  transform: translateY(-50%);
}
@media screen and (max-width: 1440px) {
  .home .feature-items .item .item-numb {
    font-size: 4.444vw;
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-items .item .item-numb {
    font-size: 2rem;
  }
}
.home .feature-items .item .item-inner {
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 1.5em;
}
@media screen and (max-width: 1440px) {
  .home .feature-items .item .item-inner {
    grid-template-columns: 5.56vw 1fr;
    gap: 1.67vw;
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-items .item .item-inner {
    grid-template-columns: 3.125em 1fr;
    gap: 0.5em;
  }
}
.home .feature-items .item .item-inner figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .feature-items .item .item-inner figure img {
  width: 100%;
}
.home .feature-items .item .item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.home .feature-items .item .item-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--wp--preset--color--main);
  line-height: 1.42857143;
}
@media screen and (max-width: 1440px) {
  .home .feature-items .item .item-title {
    font-size: 1.527778vw;
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-items .item .item-title {
    font-size: 0.9375rem;
  }
}
.home .feature-items .item .item-read {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--wp--preset--color--text);
}
@media screen and (max-width: 1440px) {
  .home .feature-items .item .item-read {
    font-size: 1.225vw;
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-items .item .item-read {
    font-size: 0.8125rem;
  }
}
.home .feature-items .item .item-read span {
  display: inline-block;
}
.home .feature-items .item-tile {
  width: 12.5em;
}
@media screen and (max-width: 1440px) {
  .home .feature-items .item-tile {
    width: 13.89vw;
  }
}
@media only screen and (max-width: 640px) {
  .home .feature-items .item-tile {
    width: 5em;
  }
}
.home .feature-items .item-tile img {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .home .feature-items .feature-item07 {
    order: 1;
  }
}
.home .feature-items.ice .feature-item {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s, transform 0.5s;
}
.home .feature-items.ice .feature-item01 {
  transition-delay: 0.1s, 0.1s;
}
.home .feature-items.ice .feature-item02 {
  transition-delay: 0.2s, 0.2s;
}
.home .feature-items.ice .feature-item03 {
  transition-delay: 0.3s, 0.3s;
}
.home .feature-items.ice .feature-item04 {
  transition-delay: 0.4s, 0.4s;
}
.home .feature-items.ice .feature-item05 {
  transition-delay: 0.5s, 0.5s;
}
.home .feature-items.ice .feature-item06 {
  transition-delay: 0.6s, 0.6s;
}
.home .feature-items.ice .feature-item07 {
  transition-delay: 0.7s, 0.7s;
}
.home .feature-items.ice .feature-item08 {
  transition-delay: 0.8s, 0.8s;
}
.home .feature-items.ice .feature-item09 {
  transition-delay: 0.9s, 0.9s;
}
.home .feature-items.ice.ice-animation .feature-item {
  opacity: 1;
  transform: scale(1);
}
.home .marquee {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  margin: 3em 0 0;
}
.home .marquee .marquee-inner {
  display: flex;
  animation: loop-text 60s linear infinite;
}
.home .marquee .marquee-content {
  display: inline-block;
  font-family: "Alegreya Sans", sans-serif;
  white-space: nowrap;
  font-size: 11.25rem;
  font-weight: 900;
  color: var(--wp--preset--color--main);
  opacity: 0.05;
}
@media only screen and (max-width: 960px) {
  .home .marquee .marquee-content {
    font-size: clamp(4rem, -9.647rem + 34.12vw, 11.25rem);
  }
}
@media only screen and (max-width: 640px) {
  .home .marquee .marquee-content {
    font-size: 4rem;
  }
}
.home #service {
  padding: 5em 0 10em;
}
@media only screen and (max-width: 640px) {
  .home #service {
    padding: 2.5em 0 7.5em;
  }
}
.home #service .service-inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 960px) {
  .home #service .service-inner {
    flex-direction: column;
    gap: 2em;
  }
}
.home #service .service-header {
  width: 40.625%;
}
@media only screen and (max-width: 960px) {
  .home #service .service-header {
    width: 100%;
  }
}
.home #service .service-header .btn-area {
  margin-top: 2.375em;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 960px) {
  .home #service .service-header .btn-area {
    display: none;
  }
}
.home #service .section-read {
  font-weight: 500;
}
@media only screen and (max-width: 640px) {
  .home #service .section-read {
    font-size: 0.8125rem;
  }
}
.home #service .service-title {
  background: var(--wp--preset--color--main);
  padding: 4em 0;
  border-radius: 0 5.5em 0 0;
}
@media only screen and (max-width: 640px) {
  .home #service .service-title {
    padding: 2.5em 0;
  }
}
.home #service .service-title .section-title__en,
.home #service .service-title .section-title__jp {
  text-align: center;
  color: var(--wp--preset--color--white);
}
.home #service .service-content {
  width: 50.78125%;
}
@media only screen and (max-width: 960px) {
  .home #service .service-content {
    width: 100%;
  }
}
.home #service .service-content-title {
  position: relative;
  font-size: 1.3125rem;
  text-align: center;
  line-height: 1.9047619;
  padding: 0 0 1em;
}
@media only screen and (max-width: 640px) {
  .home #service .service-content-title {
    font-size: 0.9375rem;
  }
}
.home #service .service-content-title span {
  display: inline-block;
}
.home #service .service-content-title::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 13.125rem;
  height: 0.375rem;
  background-image: radial-gradient(circle, #df180b 3px, transparent 3px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 14px 6px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}
@media only screen and (max-width: 960px) {
  .home #service .service-content-title::after {
    max-width: 8.75rem;
  }
}
.home #service .service-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.125em;
  margin: 2.625em 0 0;
}
.home #service .service-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.home #service .service-items li::marker {
  content: none;
}
@media screen and (max-width: 1440px) {
  .home #service .service-items {
    gap: 3.472222vw;
  }
}
@media only screen and (max-width: 960px) {
  .home #service .service-items {
    gap: 5.208vw;
  }
}
@media only screen and (max-width: 640px) {
  .home #service .service-items {
    gap: 8.53vw 3.46666667vw;
  }
}
.home #service .service-items .item {
  position: relative;
}
.home #service .service-items .item:nth-child(even) {
  transform: translateY(50%);
}
.home #service .service-items .item .service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  background: rgba(223, 24, 11, 0.05);
  font-size: 6.25rem;
  color: var(--wp--preset--color--main);
  line-height: 1;
  border-radius: 0.24em;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s, transform 0.5s;
}
@media screen and (max-width: 1440px) {
  .home #service .service-items .item .service-icon {
    font-size: 6.944444vw;
  }
}
@media only screen and (max-width: 960px) {
  .home #service .service-items .item .service-icon {
    font-size: 10.417vw;
  }
}
@media only screen and (max-width: 640px) {
  .home #service .service-items .item .service-icon {
    font-size: 10.66666667vw;
  }
}
.home #service .service-items .item .service-icon::before {
  font-size: 5rem;
}
@media screen and (max-width: 1440px) {
  .home #service .service-items .item .service-icon::before {
    font-size: 5.5555552vw;
  }
}
@media only screen and (max-width: 960px) {
  .home #service .service-items .item .service-icon::before {
    font-size: 10vw;
  }
}
@media only screen and (max-width: 640px) {
  .home #service .service-items .item .service-icon::before {
    font-size: 10.66666667vw;
  }
}
.home #service .service-items .item p {
  position: absolute;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  left: 50%;
  bottom: -1.625em;
  opacity: 0;
  transform: scale(0.5) translateX(-50%);
  transition: opacity 0.5s, transform 0.5s;
}
@media screen and (max-width: 1440px) {
  .home #service .service-items .item p {
    font-size: 0.972222vw;
  }
}
@media only screen and (max-width: 960px) {
  .home #service .service-items .item p {
    font-size: 1.45833333vw;
  }
}
@media only screen and (max-width: 640px) {
  .home #service .service-items .item p {
    font-size: 2.4vw;
  }
}
.home #service .service-items.ice .item:nth-child(1) .service-icon,
.home #service .service-items.ice .item:nth-child(1) p {
  transition-delay: 0.1s, 0.1s;
}
.home #service .service-items.ice .item:nth-child(2) .service-icon,
.home #service .service-items.ice .item:nth-child(2) p {
  transition-delay: 0.2s, 0.2s;
}
.home #service .service-items.ice .item:nth-child(3) .service-icon,
.home #service .service-items.ice .item:nth-child(3) p {
  transition-delay: 0.3s, 0.3s;
}
.home #service .service-items.ice .item:nth-child(4) .service-icon,
.home #service .service-items.ice .item:nth-child(4) p {
  transition-delay: 0.4s, 0.4s;
}
.home #service .service-items.ice .item:nth-child(5) .service-icon,
.home #service .service-items.ice .item:nth-child(5) p {
  transition-delay: 0.5s, 0.5s;
}
.home #service .service-items.ice .item:nth-child(6) .service-icon,
.home #service .service-items.ice .item:nth-child(6) p {
  transition-delay: 0.6s, 0.6s;
}
.home #service .service-items.ice .item:nth-child(7) .service-icon,
.home #service .service-items.ice .item:nth-child(7) p {
  transition-delay: 0.7s, 0.7s;
}
.home #service .service-items.ice .item:nth-child(8) .service-icon,
.home #service .service-items.ice .item:nth-child(8) p {
  transition-delay: 0.8s, 0.8s;
}
.home #service .service-items.ice .item:nth-child(9) .service-icon,
.home #service .service-items.ice .item:nth-child(9) p {
  transition-delay: 0.9s, 0.9s;
}
.home #service .service-items.ice .item:nth-child(10) .service-icon,
.home #service .service-items.ice .item:nth-child(10) p {
  transition-delay: 1s, 1s;
}
.home #service .service-items.ice .item:nth-child(11) .service-icon,
.home #service .service-items.ice .item:nth-child(11) p {
  transition-delay: 1.1s, 1.1s;
}
.home #service .service-items.ice .item:nth-child(12) .service-icon,
.home #service .service-items.ice .item:nth-child(12) p {
  transition-delay: 1.2s, 1.2s;
}
.home #service .service-items.ice .item:nth-child(13) .service-icon,
.home #service .service-items.ice .item:nth-child(13) p {
  transition-delay: 1.3s, 1.3s;
}
.home #service .service-items.ice .item:nth-child(14) .service-icon,
.home #service .service-items.ice .item:nth-child(14) p {
  transition-delay: 1.4s, 1.4s;
}
.home #service .service-items.ice .item:nth-child(15) .service-icon,
.home #service .service-items.ice .item:nth-child(15) p {
  transition-delay: 1.5s, 1.5s;
}
.home #service .service-items.ice .item:nth-child(16) .service-icon,
.home #service .service-items.ice .item:nth-child(16) p {
  transition-delay: 1.6s, 1.6s;
}
.home #service .service-items.ice.ice-animation .item .service-icon {
  opacity: 1;
  transform: scale(1);
}
.home #service .service-items.ice.ice-animation .item p {
  opacity: 1;
  transform: scale(1) translateX(-50%);
}
.home #service .icon_freeservice01::before {
  content: "\e91b";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_freeservice02::before {
  content: "\e91c";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_freeservice03::before {
  content: "\e91d";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_nonfood17::before {
  content: "\e910";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_paidservice03::before {
  content: "\e924";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_paidservice04::before {
  content: "\e925";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_paidservice02::before {
  content: "\e923";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_other01::before {
  content: "\e940";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_paidservice08::before {
  content: "\e929";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_paidservice09::before {
  content: "\e92a";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_etc08::before {
  content: "\e937";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_etc11::before {
  content: "\e921";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #service .icon_paidservice12::before {
  content: "\e92f";
  font-family: "shimaya_icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.home #news {
  position: relative;
  width: 100%;
  padding-block: 4em 2.5em;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .home #news {
    padding-block: 2.5em;
  }
}
.home #news .news-area {
  display: flex;
  width: 100%;
  gap: 2.5em;
}
@media only screen and (max-width: 960px) {
  .home #news .news-area {
    flex-direction: column;
  }
}
.home #news .news-area .news-header {
  position: relative;
  width: 15.625em;
  z-index: 3;
}
@media only screen and (max-width: 960px) {
  .home #news .news-area .news-header {
    width: 100%;
    z-index: 1;
  }
}
.home #news .news-header-link {
  display: inline-block;
  margin: 1em 0 0 auto;
}
.home #news .news-header-link a.hover:hover {
  opacity: 0.5;
}
.home .news-content {
  position: relative;
  width: calc(100% - 18.125em);
  padding: 0 0 4em;
  z-index: 1;
}
@media only screen and (max-width: 960px) {
  .home .news-content {
    width: 100%;
    padding: 0;
  }
}
.home .news-content-box {
  text-align: right;
  width: 100%;
  background: var(--wp--preset--color--white);
  border-radius: 1em;
  padding: 2.625em 2em;
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1);
}
.home .news-content-box .news-items {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 0;
  border-top: 2px solid var(--wp--preset--color--verylightgray);
}
.home .news-content-box .news-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.home .news-content-box .news-items li::marker {
  content: none;
}
.home .news-content-box .news-item {
  margin: 0;
  border-bottom: 2px solid var(--wp--preset--color--verylightgray);
}
.home .news-content-box .news-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  width: 100%;
  margin: 0;
  padding: 1.5em 0;
  text-decoration: none;
}
@media only screen and (max-width: 640px) {
  .home .news-content-box .news-item-inner {
    flex-wrap: wrap;
  }
}
.home .news-content-box .news-item-inner.hover:hover {
  text-decoration: none;
}
.home .news-content-box .news-item-inner.hover:hover .item-title {
  text-decoration: underline;
}
.home .news-content-box .item-cate {
  font-size: 0.8125rem;
  width: 6.92307692em;
  text-align: center;
  background: var(--wp--preset--color--main);
  font-weight: 700;
  color: var(--wp--preset--color--white);
  line-height: 1;
  padding: 0.4em;
  white-space: nowrap;
}
.home .news-content-box .item-date {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  padding-top: 0.325em;
  color: var(--wp--preset--color--main);
}
.home .news-content-box .item-title {
  font-size: 0.875rem;
  width: auto;
  color: var(--wp--preset--color--text);
  font-weight: 500;
  line-height: 1.85714286;
  margin: 0;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .home .news-content-box .item-title {
    width: 100%;
  }
}
.home .splide__track {
  overflow: visible;
}
.home .news-splide {
  width: 100%;
}
.home .news-splide .splide__arrows {
  position: absolute;
  display: flex;
  right: 0;
  bottom: -4em;
  gap: 1.25em;
}
@media only screen and (max-width: 960px) {
  .home .news-splide .splide__arrows {
    top: -4em;
    bottom: auto;
  }
}
@media only screen and (max-width: 640px) {
  .home .news-splide .splide__arrows {
    gap: 0.5em;
  }
}
.home .news-items .item {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.home .news-items .item .item-inner {
  display: block;
  width: 100%;
  background: var(--wp--preset--color--white);
  overflow: hidden;
  border-radius: 1.5em;
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
@media only screen and (max-width: 640px) {
  .home .news-items .item .item-inner {
    border-radius: 1em;
  }
}
.home .news-items .item .item-content {
  padding: 1.125em;
}
.home .news-items .item .item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .news-items .item .item-cate {
  font-size: 0.8125rem;
  background: var(--wp--preset--color--main);
  font-weight: 700;
  color: var(--wp--preset--color--white);
  line-height: 1;
  padding: 0.4em;
}
.home .news-items .item .item-date {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
}
.home .news-items .item .item-title {
  font-size: 0.875rem;
  color: var(--wp--preset--color--text);
  font-weight: 500;
  line-height: 1.85714286;
  margin: 0.7143em 0 0;
}
.home #banners {
  padding: 5em 0;
}
@media only screen and (max-width: 640px) {
  .home #banners {
    padding: 2em 0;
  }
}
.home #banners .banner {
  max-width: 67.5em;
  margin-inline: auto;
}
.home .line-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background: var(--wp--preset--color--green);
  border-radius: 1.5em;
  text-decoration: none;
}
@media only screen and (max-width: 640px) {
  .home .line-area {
    direction: rtl;
    grid-template-columns: 48.14% 1fr;
    padding-right: 1em;
    border-radius: 0.5em;
  }
}
.home .line-area .line-header {
  text-align: center;
  padding: 1.75em 0 2em;
}
@media only screen and (max-width: 640px) {
  .home .line-area .line-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5em 0 1.25em;
  }
}
.home .line-area .line-header .line-title {
  position: relative;
  padding-bottom: 2em;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 640px) {
  .home .line-area .line-header .line-title {
    padding-bottom: 1.5em;
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 640px) {
  .home .line-area .line-header .line-title .section-title__jp {
    font-size: 1.25rem;
  }
}
.home .line-area .line-header .line-title::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  max-width: 6em;
  height: 0.375rem;
  background-image: radial-gradient(circle, #fff 3px, transparent 3px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 14px 6px;
  margin-top: 1rem;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.home .line-area .line-header .section-title__en,
.home .line-area .line-header .section-title__jp {
  color: var(--wp--preset--color--white);
}
@media only screen and (max-width: 640px) {
  .home .line-area .line-header .section-title__en {
    display: none;
  }
}
.home .line-area .section-content {
  width: 50%;
}
@media only screen and (max-width: 640px) {
  .home .line-area .section-content {
    width: 48.14%;
  }
}
.home .line-area .line-header-link {
  display: inline-block;
  font-size: 1rem;
}
@media only screen and (max-width: 640px) {
  .home .line-area .line-header-link {
    font-size: 0.75rem;
  }
}
.home .line-area .line-header-link span {
  color: var(--wp--preset--color--white);
}
.home .line-area .line-header-link span::before {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--green);
  font-size: 0.5625rem;
}
.home .line-area .line-header-link span.hover:hover {
  color: var(--wp--preset--color--white);
  opacity: 0.5;
}
.home .line-area .line-content {
  display: flex;
  align-items: flex-end;
}
.home .line-area .line-content img {
  width: 100%;
}
.home .line-area.hover:hover {
  opacity: 0.5;
}
.home #instagram {
  background: var(--wp--preset--color--main);
  border-radius: 4.5em;
  padding: 4.25em 0;
  overflow: hidden;
}
@media only screen and (max-width: 960px) {
  .home #instagram {
    border-radius: clamp(2.25rem, -2.25rem + 11.25vw, 4.5rem);
  }
}
@media only screen and (max-width: 640px) {
  .home #instagram {
    padding-block: 1.5em 7em;
  }
}
.home #instagram .insta-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media only screen and (max-width: 960px) {
  .home #instagram .insta-area {
    display: flex;
    flex-direction: column;
    gap: 3em;
  }
}
@media only screen and (max-width: 960px) {
  .home #instagram .insta-area {
    gap: 1.5em;
  }
}
.home #instagram .insta-header {
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  .home #instagram .insta-header .insta-title {
    margin: 0;
  }
}
.home #instagram .insta-header .insta-illust {
  position: absolute;
  width: 9.0625em;
  bottom: -6.5em;
  left: 0;
}
@media screen and (max-width: 1280px) {
  .home #instagram .insta-header .insta-illust {
    display: none;
  }
}
.home #instagram .insta-header .btn-area {
  margin-top: 3.5em;
}
@media only screen and (max-width: 960px) {
  .home #instagram .insta-header .btn-area {
    display: none;
  }
}
.home #instagram .insta-read {
  position: relative;
  font-size: 1.3125rem;
  font-weight: 700;
  margin-bottom: 1em;
  padding-bottom: 0.75em;
}
@media only screen and (max-width: 960px) {
  .home #instagram .insta-read {
    font-size: clamp(0.875rem, -0.188rem + 2.5vw, 1.313rem);
    margin-bottom: 0.75em;
    padding-bottom: 0.75em;
  }
}
.home #instagram .insta-read::after {
  position: absolute;
  display: block;
  content: "";
  width: 6.125em;
  border-bottom: 6px dotted var(--wp--preset--color--white);
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.home #instagram .insta-read,
.home #instagram .section-title__en,
.home #instagram .section-title__jp {
  color: var(--wp--preset--color--white);
}
.home #instagram .insta-btn {
  display: inline-block;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--text);
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  max-width: 18em;
  line-height: 1.6;
  padding: 1.45em 1em;
  border-radius: 2.5em;
}
@media only screen and (max-width: 640px) {
  .home #instagram .insta-btn {
    padding: 0.75em;
  }
}
.home #instagram .insta-btn::before {
  display: none;
}
.home #instagram .insta-btn::after {
  display: none;
}
.home #instagram .insta-btn.hover:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 960px) {
  .home #instagram .insta-content {
    width: 100%;
  }
}
.home #instagram .insta-content .insta-conetnt-bottom {
  position: relative;
  display: none;
  padding: 3em 5em 0;
}
@media only screen and (max-width: 960px) {
  .home #instagram .insta-content .insta-conetnt-bottom {
    display: flex;
    justify-content: center;
    padding: 3em 0 0;
  }
}
@media only screen and (max-width: 640px) {
  .home #instagram .insta-content .insta-conetnt-bottom {
    justify-content: flex-end;
    padding: 1.5em 0 0;
  }
}
@media only screen and (max-width: 640px) {
  .home #instagram .insta-content .insta-conetnt-bottom .btn-area {
    padding-top: 0.5em;
    display: flex;
    width: calc((100% - 1em) / 3 * 2);
    justify-content: center;
  }
}
.home #instagram .insta-content .insta-conetnt-bottom .insta-btn {
  width: 100%;
  min-width: 18em;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .home #instagram .insta-content .insta-conetnt-bottom .insta-btn {
    font-size: 0.8125rem;
    max-width: 12em;
    min-width: 7em;
  }
}
.home #instagram .insta-content .insta-conetnt-bottom .insta-illust {
  position: absolute;
}
@media only screen and (max-width: 960px) {
  .home #instagram .insta-content .insta-conetnt-bottom .insta-illust {
    width: 5em;
    top: 1.5em;
    left: calc(50% - 14em);
  }
}
@media only screen and (max-width: 640px) {
  .home #instagram .insta-content .insta-conetnt-bottom .insta-illust {
    width: 30%;
    max-width: 7em;
    left: 7%;
  }
}
.home #instagram .insta-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
.home #instagram .insta-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.home #instagram .insta-items li::marker {
  content: none;
}
.home #instagram .insta-items .item {
  margin: 0;
  padding: 0;
}
.home #instagram .insta-items .item a::before, .home #instagram .insta-items .item a::after {
  display: none;
}
.home #instagram .insta-items .item a img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: opacity 0.3s;
}
.home #instagram .insta-items .item a.hover:hover img {
  opacity: 0.5;
}
.home #about {
  padding-block: 5em 10em;
}
@media only screen and (max-width: 640px) {
  .home #about {
    padding-block: 2.5em;
  }
}
.home #about .about-title {
  text-align: center;
}
.home #about .about-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3.5em 2.5em;
}
.home #about .about-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.home #about .about-items li::marker {
  content: none;
}
@media only screen and (max-width: 640px) {
  .home #about .about-items {
    gap: 1em;
  }
}
.home #about .about-items .item {
  position: relative;
  width: calc(50% - 1.25em);
  border-radius: 1.5em;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .home #about .about-items .item {
    width: 100%;
    border-radius: clamp(0.5rem, -1.5rem + 5vw, 1.5rem);
  }
}
.home #about .about-items .item .item-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 100%;
  min-height: 9.75em;
  text-decoration: none;
  color: var(--wp--preset--color--white);
  padding: 1em 0;
}
@media only screen and (max-width: 640px) {
  .home #about .about-items .item .item-inner {
    min-height: 5.4em;
    gap: 0;
    padding: 0.5em 0;
  }
}
.home #about .about-items .item .item-inner::before {
  display: none;
}
.home #about .about-items .item .item-inner::after {
  display: none;
}
.home #about .about-items .item .item-inner .item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s;
}
.home #about .about-items .item .item-inner.hover:hover .item-bg {
  transform: scale(1.1);
}
.home #about .about-items .item .item-title {
  position: relative;
  z-index: 2;
  text-align: center;
}
.home #about .about-items .item .item-title .item-title__en {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 960px) {
  .home #about .about-items .item .item-title .item-title__en {
    font-size: clamp(0.75rem, 0.25rem + 1.25vw, 1rem);
  }
}
.home #about .about-items .item .item-title .item-title__jp {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
@media only screen and (max-width: 960px) {
  .home #about .about-items .item .item-title .item-title__jp {
    font-size: clamp(1.313rem, -0.063rem + 3.44vw, 2rem);
  }
}
.home #about .about-items .item .header-link {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 960px) {
  .home #about .about-items .item .about-header-link span {
    font-size: clamp(0.75rem, 0.25rem + 1.25vw, 1rem);
  }
}
.home #about .about-items .item .about-header-link span::before {
  content: "\e900";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
  font-size: 1.125rem;
  width: 1.25em;
  height: 1.25em;
  padding: 0.125em;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--palegray);
}
@media only screen and (max-width: 960px) {
  .home #about .about-items .item .about-header-link span::before {
    font-size: clamp(0.75rem, 1.88vw, 1.125rem);
  }
}
.home #about .about-items .item.full-size {
  width: 100%;
}
.home #about .about-items .item.full-size .item-inner {
  height: 19.375em;
}
@media only screen and (max-width: 640px) {
  .home #about .about-items .item.full-size .item-inner {
    height: auto;
    padding: 2.7em 0;
  }
}
.home #about .about-items .item.full-size .item-inner .item-title .item-title__en {
  font-size: 1.3125rem;
}
@media only screen and (max-width: 640px) {
  .home #about .about-items .item.full-size .item-inner .item-title .item-title__en {
    font-size: clamp(0.75rem, -0.375rem + 2.81vw, 1.313rem);
  }
}
.home #about .about-items .item.full-size .item-inner .item-title .item-title__jp {
  font-size: 2.5rem;
}
@media only screen and (max-width: 640px) {
  .home #about .about-items .item.full-size .item-inner .item-title .item-title__jp {
    font-size: clamp(1.313rem, -1.063rem + 5.94vw, 2.5rem);
  }
}
.home #about .sub-title {
  font-size: 1.75rem;
  text-align: center;
  margin: 2.43em 0 1.25em;
}
@media screen and (max-width: 1440px) {
  .home #about .sub-title {
    font-size: clamp(1rem, 0.143rem + 1.79vw, 1.75rem);
  }
}
.home #recruit {
  padding-block: 3.125em 8.25em;
}
@media screen and (max-width: 768px) {
  .home #recruit {
    padding-block: 3.125em;
  }
}
@media only screen and (max-width: 640px) {
  .home #recruit {
    padding-block: 2.5em;
  }
}
.home #recruit .recruit-title {
  text-align: center;
}
.home #recruit .recruit-title .section-title__en,
.home #recruit .recruit-title .section-title__jp {
  text-align: center;
}
.home #recruit .recruit-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125%;
}
.home #recruit .recruit-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.home #recruit .recruit-items li::marker {
  content: none;
}
@media screen and (max-width: 768px) {
  .home #recruit .recruit-items {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 30em;
    margin: 0 auto;
    gap: 2.5em;
  }
}
@media only screen and (max-width: 640px) {
  .home #recruit .recruit-items {
    gap: 2em;
  }
}
.home #recruit .recruit-items .item {
  display: flex;
  flex-direction: column;
  background: var(--wp--preset--color--white);
}
.home #recruit .recruit-items .item .item-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4em;
  background: var(--wp--preset--color--main);
  color: #fff;
  text-align: center;
  font-size: 1.75rem;
  padding: 0.75em 0.5em;
  line-height: 1.28571429;
}
@media screen and (max-width: 1440px) {
  .home #recruit .recruit-items .item .item-title {
    font-size: clamp(1.125rem, 0.411rem + 1.49vw, 1.75rem);
  }
}
@media screen and (max-width: 768px) {
  .home #recruit .recruit-items .item .item-title {
    font-size: 1.3125rem;
  }
}
.home #recruit .recruit-items .item .item-title span {
  font-size: 1.125rem;
}
@media screen and (max-width: 1440px) {
  .home #recruit .recruit-items .item .item-title span {
    font-size: clamp(0.875rem, 0.675rem + 0.5vw, 1.125rem);
  }
}
@media screen and (max-width: 768px) {
  .home #recruit .recruit-items .item .item-title span {
    font-size: 0.875rem;
  }
}
.home #recruit .recruit-items .item .item-content {
  display: flex;
  flex-direction: column;
  padding: 1.5em 8%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .home #recruit .recruit-items .item .item-content {
    padding: 1.5em 2em;
  }
}
@media screen and (max-width: 1440px) {
  .home #recruit .recruit-items .item .item-content p {
    font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
  }
}
.home #recruit .recruit-items .item .recruit-header-link {
  margin-top: 1em;
  color: var(--wp--preset--color--link);
}
.home #recruit .recruit-items .item .recruit-header-link a.hover:hover {
  opacity: 0.5;
}
.home #recruit .recruit-items .item .btn-area {
  margin-top: auto;
  padding-top: 2em;
}
.home #recruit .recruit-items .item .btn-area .btn_w {
  margin: 0 auto;
}
.home #recruit .btn_recruit {
  font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
}
.home #recruit .btn_recruit.hover:hover {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
}
.home #contact {
  margin: 5em 0;
  padding: 0;
}
@media only screen and (max-width: 640px) {
  .home #contact {
    margin: 2.5em 0;
  }
}
.home #contact .contact-area {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 67.5em;
  margin: 0 auto;
  padding: 4.5em 0;
  background: var(--wp--preset--color--main);
  border-radius: 1.5em;
}
@media screen and (max-width: 768px) {
  .home #contact .contact-area {
    flex-direction: column;
    gap: 1.25em;
  }
}
@media only screen and (max-width: 640px) {
  .home #contact .contact-area {
    padding: 2em 0;
  }
}
.home #contact .contact-area .contact-header {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home #contact .contact-area .contact-header {
    width: 100%;
  }
}
.home #contact .contact-area .contact-header .section-title__en,
.home #contact .contact-area .contact-header .section-title__jp {
  color: var(--wp--preset--color--white);
}
.home #contact .contact-area .contact-content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .home #contact .contact-area .contact-content {
    width: 100%;
  }
}
.home #contact .btn-area {
  display: flex;
  justify-content: center;
}
.home #contact .btn_w {
  background: var(--wp--preset--color--white);
}
.home #contact .btn_w.hover:hover {
  color: var(--wp--preset--color--main);
}

.sb_instagram_header {
  display: none;
}

#sb_instagram #sbi_load {
  display: none;
}

#sbi_images .sbi_photo::before {
  display: none;
}

.shop main {
  padding-bottom: 0;
}

/*******************************
 * 店舗情報・チラシ
 *******************************/
.shop-content {
  width: 100vw;
  background-color: var(--wp--preset--color--sub);
  margin: 3.625rem calc(50% - 50vw) 0;
  border-radius: 0 7.5rem 0 0;
  padding-top: 4.875rem;
  padding-bottom: calc(4.875rem + 5.625em);
}
@media only screen and (max-width: 640px) {
  .shop-content {
    padding-bottom: calc(4.875rem + 3em);
  }
}

.shop-content-inner {
  padding-inline: 7.85%;
}
@media only screen and (max-width: 640px) {
  .shop-content-inner {
    padding-inline: 1.25em;
  }
}

.shop-card {
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  border-radius: 1.5rem;
  background-color: var(--wp--preset--color--white);
  display: grid;
  grid-template-columns: 35.7% repeat(2, auto) 11.25rem;
  grid-template-rows: auto 1fr auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 768px) {
  .shop-card {
    display: grid;
    grid-template-columns: 52.5% 47.5%;
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 640px) {
  .shop-card {
    padding: 1.125rem 1.25rem 1.6rem;
  }
}
.shop-card + .shop-card {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .shop-card + .shop-card {
    margin-top: 2em;
  }
}
@media only screen and (max-width: 640px) {
  .shop-card + .shop-card {
    margin-top: 1.25em;
  }
}

.shop-card-thumbnail {
  width: fit-content;
  grid-area: 1/1/4/2;
  margin-right: 1.8125rem;
}
.shop-card-thumbnail img {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .shop-card-thumbnail {
    margin-right: 0.9375rem;
    grid-area: 2/1/3/2;
  }
}

.shop-card-texts {
  width: calc(100% - 25rem);
}

.shop-card-head {
  grid-area: 1/2/2/5;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.25em;
}
@media screen and (max-width: 768px) {
  .shop-card-head {
    grid-area: 1/1/2/3;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column-reverse;
    text-align: left;
  }
}
@media only screen and (max-width: 640px) {
  .shop-card-head {
    margin-bottom: 1.5em;
  }
}
.shop-card-head .shop-card-title {
  margin-top: 0;
  font-size: clamp(1.125rem, 1.004rem + 0.517vw, 1.5rem);
  margin-bottom: 0;
  padding-bottom: 0.375em;
}
@media screen and (max-width: 768px) {
  .shop-card-head .shop-card-title {
    padding-right: 0rem;
  }
}
.shop-card-head .shop-card-title a {
  text-decoration: none;
}

.shop-card-address {
  grid-area: 2/2/4/4;
  margin-top: 1.25rem;
  line-height: 1.5;
  padding-right: 1.25rem;
  font-size: clamp(0.75rem, 0.511rem + 1.018vw, 1rem);
}
@media screen and (max-width: 1200px) {
  .shop-card-address {
    grid-area: 2/2/3/5;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .shop-card-address {
    grid-area: 3/1/4/3;
    line-height: 2;
    padding-right: 0;
  }
}

.shop-card-address__detail {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1em 0.625em;
  font-size: 0.875rem;
}
@media only screen and (max-width: 640px) {
  .shop-card-address__detail {
    gap: 0 0.25rem;
  }
}

.shop-card-address__detail__title {
  width: 5rem;
  font-style: normal;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .shop-card-address__detail__title {
    width: 4rem;
  }
}

.shop-card-address__detail__text {
  width: calc(100% - 5.625rem);
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .shop-card-address__detail__text {
    width: calc(100% - 4.625rem);
  }
}

.shop-card-address__info {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-left: auto;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.5em;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .shop-card-address__info {
    position: static;
    top: -1.625rem;
  }
}
.shop-card-address__info img {
  width: 1.5em;
  margin-top: 0;
}

.shop-card-buttons {
  grid-area: 2/4/4/5;
  margin-top: 1.75rem;
}

.shop-card-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  width: 100%;
  min-height: 3.75rem;
  background-color: var(--wp--preset--color--main);
  border: 2px solid var(--wp--preset--color--main);
  border-radius: 0.5rem;
  font-weight: bold;
  padding: 0.625rem 0.75rem;
  color: var(--wp--preset--color--white);
  gap: 0.25rem;
  font-size: 0.8125rem;
  position: relative;
}
.shop-card-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.875rem;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--wp--preset--color--white) url(/assets/img/com/button_arrow.png) 100% 0/200% 100% no-repeat;
  transition: background 0.3s ease-in-out;
  border-radius: 0.25rem;
}
.shop-card-button[target=_blank]::before {
  display: none;
}
.shop-card-button[target=_blank]::after {
  background: #fff url(/assets/img/com/button_blank.svg) 100% 0/200% 100% repeat-x;
}
.shop-card-button[target=_blank].hover:hover::after {
  background-position: 0 0;
}
.shop-card-button:hover {
  color: var(--wp--preset--color--white);
}
.shop-card-button:hover::after {
  transition: background 0.3s ease-in-out;
  background-position: 0 0;
}
.shop-card-button__outline {
  color: var(--wp--preset--color--main);
  background-color: var(--wp--preset--color--white);
}
.shop-card-button__outline::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.875rem;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--wp--preset--color--main) url(/assets/img/com/button_arrow-w.png) 100% 0/200% 100% no-repeat;
  transition: background 0.3s ease-in-out;
  border-radius: 0.25rem;
}
.shop-card-button__outline:hover {
  color: var(--wp--preset--color--main);
}
.shop-card-button__outline:hover::after {
  transition: background 0.3s ease-in-out;
  background-position: 0 0;
}

.shop-card-button__icon--flyer {
  display: flex;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
}
@media only screen and (max-width: 640px) {
  .shop-card-button__icon--flyer {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.shop-card-button__icon--flyer img {
  height: 100%;
  background-color: var(--wp--preset--color--white);
  object-fit: contain;
}
@media only screen and (max-width: 640px) {
  .shop-card-button__icon--flyer img {
    width: 1rem;
    height: 1.25rem;
  }
}
.shop-card-button__icon--store {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
@media only screen and (max-width: 640px) {
  .shop-card-button__icon--store {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.shop-card-button__icon--store img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(97%) saturate(2877%) hue-rotate(354deg) brightness(87%) contrast(103%);
  object-fit: cover;
}
@media only screen and (max-width: 640px) {
  .shop-card-button__icon--store img {
    width: 1.125rem;
    height: 1rem;
  }
}
.shop-card-button__icon img {
  margin-top: 0;
}

.shop-card .shop-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media screen and (max-width: 1200px) {
  .shop-card .shop-card-buttons {
    flex-direction: row;
    grid-area: 3/2/4/5;
    margin-top: 0;
    display: flex;
    gap: 1em;
    padding: 1.5em 0 0;
  }
}
@media screen and (max-width: 768px) {
  .shop-card .shop-card-buttons {
    grid-area: 2/2/3/3;
    margin-top: 0;
    flex-direction: column;
    padding: 0;
    gap: 0.875em;
  }
}
@media screen and (max-width: 800px) {
  .shop-card .shop-card-button {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 640px) {
  .shop-card .shop-card-button {
    padding: 0.5em;
    height: auto;
    gap: 0.25rem;
  }
}
@media screen and (max-width: 960px) {
  .shop-card .shop-card-button::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .shop-card .shop-card-button::after {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .shop-card .shop-card-button::after {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .shop-card .shop-card-button__outline::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .shop-card .shop-card-button__outline::after {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .shop-card .shop-card-button__outline::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .shop-card .shop-card-button__text {
    width: calc(100% - 1.125rem);
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .shop-card .shop-card-button__text {
    text-align: center;
    font-size: 0.8125rem;
  }
}

.shop.single {
  background: var(--wp--preset--color--sub);
}
.shop.single .single-content-wrap {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid red;
  border: 0;
  border-radius: 1.5em;
  padding: 0 0 5.5em;
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 640px) {
  .shop.single .single-content-wrap {
    padding: 0 0 1.75em;
  }
}
.shop.single .single-content-wrap::before {
  position: absolute;
  display: block;
  content: "";
  width: 12.5em;
  height: 0.5em;
  background: var(--wp--preset--color--main);
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media only screen and (max-width: 640px) {
  .shop.single .single-content-wrap::before {
    height: 0.25em;
  }
}
.shop.single .contents-body .page-title {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.6;
  padding: 0.625em 0;
  border-bottom: 3px solid #f0f0f0;
}
@media screen and (max-width: 1440px) {
  .shop.single .contents-body .page-title {
    font-size: clamp(1.125rem, -1.625rem + 6.88vw, 2.5rem);
    padding: 1em 0;
  }
}
@media only screen and (max-width: 960px) {
  .shop.single .contents-body .page-title {
    padding: 1.5em 0 1.25em;
  }
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .page-title {
    padding: 1.25em 0 0.75em;
  }
}
.shop.single .contents-body .is-shop-columns {
  display: grid;
  grid-template-columns: 25em 1fr;
  gap: 6.296296%;
}
@media screen and (max-width: 1280px) {
  .shop.single .contents-body .is-shop-columns {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    width: 100%;
    max-width: 32.5em;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .is-shop-columns {
    margin-top: 1.625em;
    gap: 0.625em;
  }
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .is-shop-columns .wp-block-media-text__media {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .is-shop-columns figure {
    width: 81.356%;
    margin: 0 auto;
  }
}
.shop.single .contents-body .shop-card-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
@media screen and (max-width: 1200px) {
  .shop.single .contents-body .shop-card-buttons {
    margin-top: 1.5em;
  }
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .shop-card-buttons .shop-card-button {
    gap: 0;
  }
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .shop-card-buttons .shop-card-button .shop-card-button__text {
    font-size: 0.8125rem;
  }
}
.shop.single .contents-body .shop-card-buttons .shop-card-button + .shop-card-button {
  margin-top: 0;
}
.shop.single .contents-body .is-style-shopinfo {
  margin: 0;
}
.shop.single .contents-body .is-style-shopinfo th,
.shop.single .contents-body .is-style-shopinfo td {
  padding: 0.25em 0;
  border: 0;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .is-style-shopinfo th,
  .shop.single .contents-body .is-style-shopinfo td {
    font-size: 0.75rem;
  }
}
.shop.single .contents-body .is-style-shopinfo th > *,
.shop.single .contents-body .is-style-shopinfo td > * {
  margin: 0;
}
.shop.single .contents-body .is-style-shopinfo th {
  width: 5.5em;
  vertical-align: top;
  text-align: left;
  color: var(--wp--preset--color--text);
  background: transparent;
  font-weight: 700;
}
.shop.single .contents-body .is-style-shopinfo th * {
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .is-style-shopinfo td p {
    display: flex;
    flex-direction: column;
  }
}
.shop.single .contents-body .is-style-shopinfo + .shop-card-address__info {
  margin: 0.5em 0 0;
  font-size: 1rem;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .is-style-shopinfo + .shop-card-address__info {
    font-size: 0.75rem;
  }
}
.shop.single .contents-body a.is-style-maplink {
  vertical-align: middle;
  border: 0;
  margin: 0 0 0 1em;
  padding: 0;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body a.is-style-maplink {
    margin: 0.25em 0 0;
  }
}
.shop.single .contents-body a.is-style-maplink img {
  margin-top: 0.15em;
}
.shop.single .contents-body a.is-style-maplink::before {
  display: none !important;
}
.shop.single .contents-body a.is-style-maplink.hover:hover {
  opacity: 0.5;
}
.shop.single .contents-body .shop-card-button {
  position: relative;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .shop-card-button {
    height: auto;
    padding: 3.25em 0.5em 0.5em;
    justify-content: center;
  }
}
.shop.single .contents-body .shop-card-button[target=_blank]::before {
  display: none;
}
.shop.single .contents-body .shop-card-button[target=_blank]::after {
  background: #fff url(/assets/img/com/button_blank.svg) 100% 0/200% 100% repeat-x;
}
.shop.single .contents-body .shop-card-button[target=_blank].hover:hover::after {
  background-position: 0 0;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .shop-card-button .shop-card-button__icon {
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 0.625em;
    right: 0;
    left: 0;
    margin: auto;
    justify-content: center;
  }
}
.shop.single .contents-body .shop-card-button .shop-card-button__icon img {
  width: auto;
  height: 2em;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .shop-card-button::after {
    position: static;
    transform: scale(0.7);
  }
}
.shop.single .contents-body .service-items {
  grid-template-columns: repeat(6, 1fr);
  gap: 1em;
}
@media screen and (max-width: 1280px) {
  .shop.single .contents-body .service-items {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (max-width: 960px) {
  .shop.single .contents-body .service-items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .shop.single .contents-body .service-items {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .service-items {
    grid-template-columns: repeat(4, 1fr);
  }
}
.shop.single .contents-body .service-items .item .item-icon {
  aspect-ratio: 1/1;
  border-radius: 1em;
}
.shop.single .contents-body .service-items .item .item-icon img {
  width: 66.7%;
}
.shop.single .contents-body .service-items .item .item-title {
  font-size: 0.625rem;
  font-weight: bold;
  line-height: 1.6;
}
.shop.single .contents-body .splide__arrow {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  top: -5.25em;
  right: initial;
  bottom: initial;
  left: initial;
  background: var(--wp--preset--color--main);
  transform: initial;
  margin-top: 0;
  border-radius: 2em;
  opacity: 1;
}
@media only screen and (max-width: 960px) {
  .shop.single .contents-body .splide__arrow {
    width: clamp(2rem, 1.5rem + 1.25vw, 2.5rem);
    height: clamp(2rem, 1.5rem + 1.25vw, 2.5rem);
  }
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .splide__arrow {
    width: 2em;
    height: 2em;
  }
}
.shop.single .contents-body .splide__arrow::before {
  color: #fff;
}
.shop.single .contents-body .splide__arrow svg {
  display: none;
}
.shop.single .contents-body .splide__arrow--prev::before {
  content: "\e903";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
.shop.single .contents-body .splide__arrow--next::before {
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .pickup-splide {
    padding-bottom: 3em;
  }
}
.shop.single .contents-body .pickup-splide .splide__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop.single .contents-body .pickup-splide .splide__list li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.shop.single .contents-body .pickup-splide .splide__list li::marker {
  content: none;
}
.shop.single .contents-body .pickup-splide .splide__slide {
  margin-top: 0 !important;
}
.shop.single .contents-body .pickup-splide .splide__slide::before {
  display: none !important;
}
.shop.single .contents-body .pickup-splide .splide__slide a {
  display: block;
}
.shop.single .contents-body .pickup-splide .splide__slide a img {
  width: 100%;
  border-radius: 1.5em;
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1);
  margin: 0 !important;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .pickup-splide .splide__slide a img {
    border-radius: 1em;
  }
}
.shop.single .contents-body .pickup-splide .splide__arrows {
  position: absolute;
  top: -4.875em;
  right: 0;
  display: flex;
  justify-content: flex-end;
  gap: 1.25em;
}
@media only screen and (max-width: 640px) {
  .shop.single .contents-body .pickup-splide .splide__arrows {
    top: auto;
    bottom: 0;
    gap: 0.5em;
  }
}
.shop.single .line-area {
  display: grid;
  width: 100%;
  background: var(--wp--preset--color--green);
  text-decoration: none;
  grid-template-columns: 48% 1fr;
  margin-top: 2em;
  border-radius: 0.5em;
}
@media only screen and (max-width: 640px) {
  .shop.single .line-area {
    padding-right: 1em;
  }
}
.shop.single .line-area::before {
  display: none;
}
.shop.single .line-area .line-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em 0 1.25em;
}
.shop.single .line-area .line-header .line-title {
  position: relative;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
@media only screen and (max-width: 640px) {
  .shop.single .line-area .line-header .line-title {
    padding-bottom: 0.75em;
    margin-bottom: 0.625em;
  }
}
.shop.single .line-area .line-header .line-title .section-title__jp {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (max-width: 640px) {
  .shop.single .line-area .line-header .line-title .section-title__jp {
    font-size: 1rem;
    line-height: 1.3125;
  }
}
.shop.single .line-area .line-header .line-title .section-title__jp span {
  display: inline-block;
}
.shop.single .line-area .line-header .line-title::after {
  position: absolute;
  display: block;
  content: "";
  width: 6em;
  border-bottom: dotted 6px var(--wp--preset--color--white);
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media only screen and (max-width: 640px) {
  .shop.single .line-area .line-header .line-title::after {
    border-bottom: dotted 3px var(--wp--preset--color--white);
  }
}
.shop.single .line-area .line-header .section-title__jp {
  color: var(--wp--preset--color--white);
}
.shop.single .line-area .section-content {
  width: 48.14%;
}
.shop.single .line-area .line-link {
  display: inline-block;
}
@media only screen and (max-width: 640px) {
  .shop.single .line-area .line-link {
    font-size: 0.75rem;
  }
}
.shop.single .line-area .line-link span {
  color: var(--wp--preset--color--white);
  font-weight: 700;
  display: flex;
  gap: 0.25em;
  align-items: center;
}
.shop.single .line-area .line-link span::before {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--green);
  content: "\e904";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.25em;
  font-size: 0.75rem;
}
@media only screen and (max-width: 640px) {
  .shop.single .line-area .line-link span::before {
    font-size: 0.5625rem;
    border-radius: 0.25em;
  }
}
.shop.single .line-area .line-content {
  display: flex;
  align-items: flex-end;
}
.shop.single .line-area .line-content img {
  width: 100%;
  margin: 0;
}
.shop.single .label-gasoline {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--wp--preset--color--main);
  line-height: 1.85714286;
  font-weight: bold;
  border: 2px solid var(--wp--preset--color--main);
  margin-top: 1em;
  padding: 0.125em 0.25em;
}
@media only screen and (max-width: 640px) {
  .shop.single .label-gasoline {
    font-size: 0.625rem;
    margin-top: 2.2em;
  }
}
.shop.single .label-gasoline span {
  display: inline-block;
}

.is-shop-colums {
  position: relative;
  gap: 3.5em;
}
.is-shop-colums > .wp-block-column:first-child {
  position: relative;
}
.is-shop-colums > .wp-block-column:first-child::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: calc(100% - 3.5em);
  bottom: 0;
  right: -1.75em;
  background: #f0f0f0;
}
@media only screen and (max-width: 640px) {
  .is-shop-colums > .wp-block-column:first-child::after {
    display: none;
  }
}

.payment {
  border: 4px solid #f0f0f0;
  border-radius: 1.5em;
  margin: 5em 0 0;
  padding: 2em 1.5em;
}
@media only screen and (max-width: 640px) {
  .payment {
    padding: 2em 2.5%;
  }
}
.payment .payment-title {
  font-size: 1.3125rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--wp--preset--color--text);
}
.payment .payment-title::before {
  display: none;
}
.payment .pay-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin: 1.5em 0 0;
  padding: 0;
  justify-content: center;
}
.payment .pay-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.payment .pay-items li::marker {
  content: none;
}
@media screen and (max-width: 768px) {
  .payment .pay-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.payment .pay-items .item {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .payment .pay-items .item {
    position: relative;
    padding: 0.8em 0;
  }
}
@media screen and (max-width: 768px) {
  .payment .pay-items .item:nth-child(odd) figure {
    border: 0;
  }
}
@media screen and (max-width: 768px) {
  .payment .pay-items .item:first-child {
    border: 0;
  }
}
@media screen and (max-width: 768px) {
  .payment .pay-items .item:first-child::before {
    display: none !important;
  }
}
.payment .pay-items .item:first-child figure {
  border: 0;
}
.payment .pay-items .item figure {
  display: block;
  margin: 0;
  padding: 0 1.5em;
  border-left: 2px solid #f0f0f0;
}
@media screen and (max-width: 1280px) {
  .payment .pay-items .item figure {
    padding: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .payment .pay-items .item figure {
    display: flex;
    justify-content: center;
    padding: 0 5%;
  }
}
.payment .pay-items .item figure img {
  height: 7em;
  object-fit: contain;
}
@media only screen and (max-width: 640px) {
  .payment .pay-items .item figure img {
    width: 100%;
    aspect-ratio: 130/84;
  }
}
.payment .pay-items .item::before {
  display: none;
}
.payment .pay-items .item p {
  margin: 0.5em 0 0;
  text-align: center;
  line-height: 1.6;
  color: var(--wp--preset--color--gray);
}
@media screen and (max-width: 1440px) {
  .payment .pay-items .item p {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 640px) {
  .payment .pay-items .item p {
    font-size: 0.6875rem;
  }
}
.payment .pay-items .item p span {
  display: inline-block;
}

.feature .contents-body .feature-visual,
.feature.contents-body .feature-visual {
  width: 100%;
  min-height: 530px;
  padding: 3.5em 6.9444444444vw;
  border-top-left-radius: 2.25em;
  border-top-right-radius: 2.25em;
  overflow: hidden;
}
@media only screen and (max-width: 960px) {
  .feature .contents-body .feature-visual,
  .feature.contents-body .feature-visual {
    padding-top: 2em;
    padding-bottom: 250px;
    border-radius: 1em;
  }
}
@media only screen and (max-width: 640px) {
  .feature .contents-body .feature-visual,
  .feature.contents-body .feature-visual {
    border-radius: 0.5em;
  }
}
.feature .contents-body .feature-visual .wp-block-cover__background,
.feature.contents-body .feature-visual .wp-block-cover__background {
  background: none !important;
}
.feature .contents-body .feature-visual .wp-block-cover__image-background,
.feature.contents-body .feature-visual .wp-block-cover__image-background {
  width: 1280px;
  object-position: left bottom;
  background: #c5ceef;
}
@media only screen and (max-width: 640px) {
  .feature .contents-body .feature-visual .wp-block-cover__image-background,
  .feature.contents-body .feature-visual .wp-block-cover__image-background {
    object-fit: contain;
  }
}
.feature .contents-body .feature-visual .wp-block-cover__inner-container,
.feature.contents-body .feature-visual .wp-block-cover__inner-container {
  width: 60%;
  max-width: 840px;
  margin-left: 35%;
  color: #245474;
}
.feature .contents-body .feature-visual .wp-block-cover__inner-container > *:first-child,
.feature.contents-body .feature-visual .wp-block-cover__inner-container > *:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 960px) {
  .feature .contents-body .feature-visual .wp-block-cover__inner-container,
  .feature.contents-body .feature-visual .wp-block-cover__inner-container {
    width: 100%;
    margin-inline: auto;
  }
}
.feature .contents-body .feature-visual .wp-block-cover__inner-container p,
.feature.contents-body .feature-visual .wp-block-cover__inner-container p {
  font-size: clamp(0.813rem, 0.547rem + 1.13vw, 1rem);
}
.feature .contents-body .feature-page-navs-title,
.feature.contents-body .feature-page-navs-title {
  position: relative;
  margin-top: 4.375rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: clamp(1rem, 0.677rem + 1.378vw, 2rem);
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width: 960px) {
  .feature .contents-body .feature-page-navs-title,
  .feature.contents-body .feature-page-navs-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}
.feature .contents-body .feature-page-navs-title::after,
.feature.contents-body .feature-page-navs-title::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 13.125rem;
  height: 0.375rem;
  background-image: radial-gradient(circle, #df180b 3px, transparent 3px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 14px 6px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}
@media only screen and (max-width: 960px) {
  .feature .contents-body .feature-page-navs-title::after,
  .feature.contents-body .feature-page-navs-title::after {
    max-width: 8.75rem;
  }
}
.feature .contents-body .feature-page-navs-list,
.feature.contents-body .feature-page-navs-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25em;
  margin-top: 2.5em;
}
@media screen and (max-width: 1080px) {
  .feature .contents-body .feature-page-navs-list,
  .feature.contents-body .feature-page-navs-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5em;
    margin-top: 1.5em;
  }
}
@media only screen and (max-width: 640px) {
  .feature .contents-body .feature-page-navs-list,
  .feature.contents-body .feature-page-navs-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature .contents-body .feature-page-navs-list .feature-page-nav,
.feature.contents-body .feature-page-navs-list .feature-page-nav {
  display: flex;
}
.feature .contents-body .feature-page-navs-list .feature-page-nav__link,
.feature.contents-body .feature-page-navs-list .feature-page-nav__link {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  gap: 0.5em;
  text-decoration: none;
  background: var(--wp--preset--color--sub);
  padding: 1.25em 0.5em;
  border-radius: 1em;
}
@media only screen and (max-width: 640px) {
  .feature .contents-body .feature-page-navs-list .feature-page-nav__link,
  .feature.contents-body .feature-page-navs-list .feature-page-nav__link {
    gap: 0.15em;
    padding-block: 0.5em 0.8125em;
  }
}
.feature .contents-body .feature-page-navs-list .feature-page-nav__link::after,
.feature.contents-body .feature-page-navs-list .feature-page-nav__link::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0.5em auto 0;
  background: url(/assets/img/com/button_arrow-w.png) no-repeat 100% 0;
  background-color: var(--wp--preset--color--main);
  background-repeat: repeat-x;
  background-size: 200% 100%;
  transform: rotate(90deg);
  border-radius: 4px;
}
@media screen and (max-width: 1080px) {
  .feature .contents-body .feature-page-navs-list .feature-page-nav__link::after,
  .feature.contents-body .feature-page-navs-list .feature-page-nav__link::after {
    width: 1.25em;
    height: 1.25em;
  }
}
@media only screen and (max-width: 640px) {
  .feature .contents-body .feature-page-navs-list .feature-page-nav__link::after,
  .feature.contents-body .feature-page-navs-list .feature-page-nav__link::after {
    margin-top: 0.25em;
    width: 1em;
    height: 1em;
  }
}
.feature .contents-body .feature-page-navs-list .feature-page-nav__link:hover,
.feature.contents-body .feature-page-navs-list .feature-page-nav__link:hover {
  color: var(--wp--preset--color--main);
}
.feature .contents-body .feature-page-navs-list .feature-page-nav__link:hover::after,
.feature.contents-body .feature-page-navs-list .feature-page-nav__link:hover::after {
  transition: background-position 0.3s ease-in-out;
  background-position: 0 0;
}
.feature .contents-body .feature-page-navs-list .feature-page-nav__no,
.feature.contents-body .feature-page-navs-list .feature-page-nav__no {
  font-size: clamp(1.75rem, -0.333rem + 3.472vw, 3rem);
  font-weight: bold;
  font-family: "Alegreya Sans", sans-serif;
  font-style: italic;
}
.feature .contents-body .feature-page-navs-list .feature-page-nav__title,
.feature.contents-body .feature-page-navs-list .feature-page-nav__title {
  text-align: center;
  font-size: clamp(0.938rem, 0.197rem + 1.096vw, 1.25rem);
  font-weight: bold;
  line-height: 1.6;
  color: var(--wp--preset--color--text);
  margin-bottom: auto;
}
@media screen and (max-width: 1080px) {
  .feature .contents-body .feature-page-navs-list .feature-page-nav__title,
  .feature.contents-body .feature-page-navs-list .feature-page-nav__title {
    font-size: clamp(0.813rem, 0.176rem + 1.591vw, 1.25rem);
  }
}

.contents-body .service-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.75em;
}
.contents-body .service-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.contents-body .service-items li::marker {
  content: none;
}
@media only screen and (max-width: 960px) {
  .contents-body .service-items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .contents-body .service-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 640px) {
  .contents-body .service-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3125em;
  }
}
.contents-body .service-items .item::before {
  display: none;
}
.contents-body .service-items .item .item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 220/154;
  background: rgba(223, 24, 11, 0.05);
  border-radius: 1.5em;
}
@media only screen and (max-width: 640px) {
  .contents-body .service-items .item .item-icon {
    border-radius: 1em;
  }
}
.contents-body .service-items .item .item-icon img {
  width: 45.45%;
  aspect-ratio: 1/1;
  overflow: hidden;
  object-fit: contain;
}
.contents-body .service-items .item .item-title {
  font-size: 1.125rem;
  line-height: 1.56;
  margin: 0.825em 0 0;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  .contents-body .service-items .item .item-title {
    font-size: clamp(0.813rem, 0.188rem + 1.56vw, 1.125rem);
  }
}
.contents-body .service-items .item .item-desc {
  margin: 0.75em 0 0;
  line-height: 2;
}
@media only screen and (max-width: 960px) {
  .contents-body .service-items .item .item-desc {
    font-size: clamp(0.75rem, 0.25rem + 1.25vw, 1rem);
  }
}
.contents-body .service-items .item p {
  font-size: 14px;
  line-height: 2;
}
.contents-body .wp-block-buttons {
  gap: 1em;
}
.contents-body .wp-block-buttons .wp-block-button {
  max-width: 17.5rem;
}
.contents-body .wp-block-buttons .wp-block-button:has(.wp-block-button__link[href^="#"]) {
  background: transparent;
  height: auto;
}
.contents-body .wp-block-buttons .wp-block-button:has(.wp-block-button__link[href^="#"])::before {
  border-radius: 1em;
  background: url(../img/com/button_arrow-w.png) 100% 0 repeat-x;
  background-size: 200% 100%;
  background-color: var(--wp--preset--color--main);
  transform: translateY(-50%) rotate(90deg);
}
.contents-body .wp-block-buttons .wp-block-button:has(.wp-block-button__link[href^="#"].hover:hover)::before {
  background-color: var(--wp--preset--color--main) !important;
  background-position: 0 0;
}
.contents-body .wp-block-buttons .wp-block-button .wp-block-button__link[href^="#"] {
  position: static;
  border-radius: 4em;
  overflow: hidden;
  color: var(--wp--preset--color--main);
  padding-block: 1.226em;
  height: auto;
  color: var(--wp--preset--color--text);
  background: #fff;
  transition: background 0.3s;
}
.contents-body .wp-block-buttons .wp-block-button .wp-block-button__link[href^="#"].hover:hover {
  background: rgba(223, 24, 11, 0.05);
}

.tenant-content-wrapper + .tenant-content-wrapper {
  margin-top: 6.75rem;
}
@media only screen and (max-width: 960px) {
  .tenant-content-wrapper + .tenant-content-wrapper {
    margin-top: 5em;
  }
}
@media screen and (max-width: 768px) {
  .tenant-content-wrapper + .tenant-content-wrapper {
    margin-top: 4em;
  }
}
@media only screen and (max-width: 640px) {
  .tenant-content-wrapper + .tenant-content-wrapper {
    margin-top: 3em;
  }
}

.tenant-content {
  margin-top: 3.3125rem !important;
}
@media only screen and (max-width: 960px) {
  .tenant-content {
    margin-top: 1.875rem !important;
  }
}
.tenant-content .wp-block-columns .tenant-content__left-column {
  width: 50%;
  flex-basis: auto;
  align-self: flex-start;
}
.tenant-content .wp-block-columns .tenant-content__right-column {
  padding-top: 2.3125rem;
  padding-bottom: 2.9375rem;
  flex-basis: auto;
  padding-left: 3.8%;
  padding-right: 3.8%;
  align-self: flex-start;
  width: 50%;
  border-radius: 1.5rem;
  box-sizing: border-box;
  background-color: var(--wp--preset--color--sub);
}
@media only screen and (max-width: 960px) {
  .tenant-content .wp-block-columns .tenant-content__right-column {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.tenant-content .wp-block-columns .tenant-content__location-info {
  margin-top: 0.875rem;
}
.tenant-content .wp-block-columns .tenant-content__heading {
  font-size: clamp(1.125rem, 1.064rem + 0.258vw, 1.313rem);
  color: var(--wp--preset--color--main);
  font-weight: bold;
}
.tenant-content .wp-block-columns .tenant-content__divider {
  display: block;
  width: 100%;
  height: 0.375rem;
  background-image: radial-gradient(circle, #df180b 3px, transparent 3px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 16px 6px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.375rem;
  margin-bottom: 2rem;
  border: none;
}
@media only screen and (max-width: 960px) {
  .tenant-content .wp-block-columns .tenant-content__divider {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.tenant-content .wp-block-columns .tenant-content__description {
  margin-top: 0.1875rem;
}
.tenant-content .wp-block-columns .tenant-content__text {
  margin-top: 0.1875rem;
}
.tenant-content .wp-block-columns .tenant-content__feature-list {
  margin-top: 1.25rem;
}
.tenant-content .wp-block-columns .tenant-content__feature-list li {
  padding-left: 1.5625rem;
}
.tenant-content .wp-block-columns .tenant-content__feature-list li::before {
  min-width: 0.25rem;
  min-height: 0.25rem;
}
.tenant-content .wp-block-columns .tenant-content__contact {
  margin-top: 2.0625rem;
  justify-content: center;
  text-align: center;
}

.contents-body .company-philosophy-wrapper {
  padding-right: 6.25rem;
  padding-left: 6.25rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .company-philosophy-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.contents-body .company-philosophy__contents {
  padding-top: 4.25rem;
  padding-bottom: 3.5625rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border: 6px solid var(--wp--preset--color--main);
}
@media only screen and (max-width: 960px) {
  .contents-body .company-philosophy__contents {
    border: 3px solid var(--wp--preset--color--main);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.contents-body .company-philosophy__title {
  font-weight: bold;
  text-align: center;
  color: var(--wp--preset--color--main);
  font-size: clamp(1.125rem, 0.923rem + 0.861vw, 1.75rem);
  line-height: 1.857;
}
.contents-body .company-philosophy__title span {
  display: inline-block;
}
.contents-body .company-philosophy__title::after {
  content: "";
  display: block;
  width: 13.125rem;
  height: 0.375rem;
  background-image: radial-gradient(circle, #df180b 3px, transparent 3px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 16px 6px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border: none;
}
@media only screen and (max-width: 960px) {
  .contents-body .company-philosophy__title::after {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.contents-body .company-philosophy__text {
  text-align: center;
}
.contents-body .company-philosophy__text span {
  display: inline-block;
}
.contents-body .company-message-wrapper {
  display: flex;
  margin-top: 3.4375rem;
  align-items: flex-start;
  gap: 2.5rem 7.5rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .company-message-wrapper {
    gap: 3.75rem;
  }
}
@media only screen and (max-width: 640px) {
  .contents-body .company-message-wrapper {
    display: block;
  }
}
.contents-body .company-message-wrapper::after {
  display: none !important;
}
.contents-body .company-message-image {
  width: 26.0416666667vw;
  max-width: 400px;
  margin: 0;
}
.contents-body .company-message-image img {
  width: 100%;
}
@media only screen and (max-width: 960px) {
  .contents-body .company-message-image {
    min-width: 20.8333333333vw;
    width: 20.8333333333vw;
  }
}
@media only screen and (max-width: 640px) {
  .contents-body .company-message-image {
    min-width: auto;
    width: 100%;
  }
}
.contents-body .company-message-texts {
  width: calc(100% - 400px);
}
@media only screen and (max-width: 960px) {
  .contents-body .company-message-texts {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 640px) {
  .contents-body .company-message-texts {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }
}
.contents-body .company-message-texts > p:first-of-type {
  margin-top: 0;
}
.contents-body .company-message-name {
  margin-top: 4.0625rem !important;
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .contents-body .company-message-name {
    text-align: center;
    margin-top: 1.875rem !important;
  }
}
.contents-body .company-overview {
  padding: 0;
  margin-top: 6.5625rem;
}
.contents-body .company-overview-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem 9.375%;
}
@media only screen and (max-width: 960px) {
  .contents-body .company-overview-inner {
    display: block !important;
  }
}
.contents-body .company-overview-inner h2 {
  margin-top: 0;
  width: clamp(11.25rem, 3.958rem + 12.153vw, 15.625rem);
}
@media only screen and (max-width: 960px) {
  .contents-body .company-overview-inner h2 {
    width: 100%;
  }
}
.contents-body .company-overview-wrapper {
  padding-top: 0.1875rem;
  width: calc(100% - clamp(11.25rem, 3.958rem + 12.153vw, 15.625rem));
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
}
@media only screen and (max-width: 960px) {
  .contents-body .company-overview-wrapper {
    width: 100%;
  }
}
.contents-body .company-overview-content {
  display: flex;
  gap: 2.5rem;
}
@media only screen and (max-width: 640px) {
  .contents-body .company-overview-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
  }
}
.contents-body .company-overview-content + .company-overview-content {
  margin-top: 2.4375rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .company-overview-content + .company-overview-content {
    margin-top: 1.5rem;
  }
}
.contents-body .compnay-overview-title {
  width: 8.75rem;
  font-weight: bold;
  color: var(--wp--preset--color--main);
  border-bottom: 3px solid #fce7e6;
  padding-bottom: 1.375rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
}
@media only screen and (max-width: 640px) {
  .contents-body .compnay-overview-title {
    padding-bottom: 0.75rem;
    width: fit-content;
    display: inline-block;
    min-width: 6em;
    width: 15rem;
  }
}
.contents-body .company-overview-text {
  border-bottom: 3px solid #f0f0f0;
  padding-bottom: 1.375rem;
  width: calc(100% - 8.75rem - 2.5rem);
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  margin-top: 0;
}
@media only screen and (max-width: 640px) {
  .contents-body .company-overview-text {
    padding-bottom: 0.75rem;
    width: fit-content;
    display: inline-block;
    margin-top: 0.75rem !important;
    border-bottom: 0;
  }
}
.contents-body .company-overview-text > *:first-child {
  margin-top: 0;
}
.contents-body .company-overview-text > *:last-child {
  margin-bottom: 0;
}
.contents-body .company-history {
  width: 100vw !important;
  margin: 0 calc(50% - 50vw);
  background-color: var(--wp--preset--color--sub);
  margin-top: 6.25rem;
  padding-top: 4.5625rem;
  padding-bottom: 7.5625rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .company-history {
    padding-top: 1.25rem;
    padding-bottom: 3.75rem;
    margin-top: 3.75rem;
  }
}
.contents-body .company-history-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem 10.15625%;
}
@media only screen and (max-width: 960px) {
  .contents-body .company-history-inner {
    display: block;
  }
}
.contents-body .company-history-left {
  width: clamp(15.625rem, 1.042rem + 24.306vw, 24.375rem);
}
@media only screen and (max-width: 960px) {
  .contents-body .company-history-left {
    width: 100%;
  }
}
.contents-body .company-history-images {
  margin-top: clamp(6.25rem, -5rem + 18.75vw, 13rem);
}
@media only screen and (max-width: 960px) {
  .contents-body .company-history-images {
    display: none;
  }
}
.contents-body .compnay-history-right {
  width: calc(100% - clamp(15.625rem, 1.042rem + 24.306vw, 24.375rem) - 8.125rem);
  margin-top: 4.5625rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .compnay-history-right {
    width: 100%;
    margin-top: 2.5rem;
  }
}
.contents-body .company-history-item {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
}
@media only screen and (max-width: 640px) {
  .contents-body .company-history-item {
    display: block;
  }
}
.contents-body .company-history-item + .company-history-item {
  margin-top: 2.0625rem;
}
.contents-body .company-history-title {
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.75rem;
  margin-top: 0 !important;
}
@media only screen and (max-width: 640px) {
  .contents-body .company-history-title {
    width: 100%;
    padding: 1rem 1.25rem;
  }
}
.contents-body .company-history-text {
  padding: 1rem 1.25rem;
  background-color: var(--wp--preset--color--white);
  width: calc(100% - 8.75rem - 2.5rem);
  line-height: 2;
  margin-top: 0 !important;
}
@media only screen and (max-width: 640px) {
  .contents-body .company-history-text {
    width: 100%;
  }
}
.contents-body .company-history-text p {
  line-height: 2;
  margin-top: 0;
}
.contents-body .compnay-links {
  margin-top: 7.75rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .compnay-links {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 640px) {
  .contents-body .compnay-links {
    margin-top: 3.75rem;
  }
}
.contents-body .compnay-links .compnay-links-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3.5em 2.5em;
}
.contents-body .compnay-links .compnay-links-items li {
  margin-top: 0;
  padding-left: 0;
  text-indent: 0;
  list-style: none;
}
.contents-body .compnay-links .compnay-links-items li::marker {
  content: none;
}
@media only screen and (max-width: 640px) {
  .contents-body .compnay-links .compnay-links-items {
    gap: 1em;
  }
}
.contents-body .compnay-links .company-link {
  position: relative;
  width: calc(50% - 1.25em);
  border-radius: 1.5em;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .contents-body .compnay-links .company-link {
    width: 100%;
    border-radius: clamp(0.5rem, -1.5rem + 5vw, 1.5rem);
  }
}
.contents-body .compnay-links .company-link::before {
  display: none;
}
.contents-body .compnay-links .company-link::after {
  display: none;
}
.contents-body .compnay-links .company-link .company-link-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 100%;
  min-height: 9.75em;
  text-decoration: none;
  color: var(--wp--preset--color--white);
  padding: 1em 0;
}
.contents-body .compnay-links .company-link .company-link-inner:hover .company-link-bg {
  transform: scale(1.1);
}
.contents-body .compnay-links .company-link.full-size {
  width: 100%;
}
.contents-body .compnay-links .company-link.full-size .company-link-inner {
  height: 19.375em;
}
@media only screen and (max-width: 640px) {
  .contents-body .compnay-links .company-link.full-size .company-link-inner {
    height: auto;
    padding: 2.7em 0;
  }
}
.contents-body .compnay-links .company-link.full-size .company-link-inner .company-link-title .company-link-title__en {
  font-size: 1.3125rem;
}
@media only screen and (max-width: 640px) {
  .contents-body .compnay-links .company-link.full-size .company-link-inner .company-link-title .company-link-title__en {
    font-size: clamp(0.75rem, -0.375rem + 2.81vw, 1.313rem);
  }
}
.contents-body .compnay-links .company-link.full-size .company-link-inner .company-link-title .company-link-title__jp {
  font-size: 2.5rem;
}
@media only screen and (max-width: 640px) {
  .contents-body .compnay-links .company-link.full-size .company-link-inner .company-link-title .company-link-title__jp {
    font-size: clamp(1.313rem, -1.063rem + 5.94vw, 2.5rem);
  }
}
.contents-body .compnay-links .company-link-inner::before {
  display: none;
}
.contents-body .compnay-links .company-link-title {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contents-body .compnay-links .company-link-title__en {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 960px) {
  .contents-body .compnay-links .company-link-title__en {
    font-size: clamp(0.75rem, 0.25rem + 1.25vw, 1rem);
  }
}
.contents-body .compnay-links .company-link-title__jp {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
@media only screen and (max-width: 960px) {
  .contents-body .compnay-links .company-link-title__jp {
    font-size: clamp(1.313rem, -0.063rem + 3.44vw, 2rem);
  }
}
.contents-body .compnay-links .header-link {
  position: relative;
  z-index: 2;
}
.contents-body .compnay-links .header-link span {
  position: relative;
}
@media only screen and (max-width: 960px) {
  .contents-body .compnay-links .header-link span {
    font-size: clamp(0.75rem, 0.25rem + 1.25vw, 1rem);
  }
}
.contents-body .compnay-links .header-link span::before {
  content: "\e900";
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
  font-size: 1.125rem;
  margin-right: 0.625rem;
  width: 1.25em;
  height: 1.25em;
  padding: 0.125em;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--palegray);
}
@media only screen and (max-width: 960px) {
  .contents-body .compnay-links .header-link span::before {
    font-size: clamp(0.75rem, 1.88vw, 1.125rem);
  }
}
.contents-body .compnay-links .company-link-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s;
  margin-top: 0;
}
.contents-body .action-plan {
  padding: 0;
  margin-top: 5rem;
}
.contents-body .action-plan-inner {
  gap: 2.5rem 9.375%;
}
@media only screen and (max-width: 960px) {
  .contents-body .action-plan-inner {
    display: block;
  }
}
.contents-body .action-plan-inner h2 {
  margin-top: 0;
  width: clamp(12.5rem, -8.333rem + 34.722vw, 25rem);
}
@media only screen and (max-width: 960px) {
  .contents-body .action-plan-inner h2 {
    width: 100%;
  }
}
.contents-body .action-plan-inner .company-overview-wrapper {
  width: 100%;
}
.contents-body .action-plan-inner .compnay-overview-title {
  width: 17.5rem;
  max-width: 100%;
}
@media only screen and (max-width: 640px) {
  .contents-body .action-plan-inner .compnay-overview-title {
    width: 15rem;
  }
}
.contents-body .action-plan-inner .company-overview-text {
  width: calc(100% - 17.5rem - 2.5rem);
}
@media only screen and (max-width: 640px) {
  .contents-body .action-plan-inner .company-overview-text {
    width: 100%;
  }
}

:where(.editor-styles-wrapper) .contents-body .company-history {
  margin-left: auto;
  margin-right: auto;
}

.sustenability main {
  background-color: var(--wp--preset--color--sub);
}

.contents-body {
  /*******************************
  * お問い合わせ
  *******************************/
}
.contents-body .form-tabs {
  display: flex;
  margin-top: 4.75rem;
}
@media only screen and (max-width: 640px) {
  .contents-body .form-tabs {
    margin-top: 3em;
  }
}
.contents-body .form-tabs + .form-content {
  border-radius: 0 0 1.5rem 1.5rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-tabs + .form-content {
    border-radius: 0 0 1rem 1rem;
  }
}
.contents-body .form-tab {
  display: block;
  width: 50%;
  background-color: var(--wp--preset--color--palegray);
  color: var(--wp--preset--color--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3125rem;
  height: 5.5rem;
  font-weight: bold;
  line-height: 1.85;
  cursor: pointer;
  text-decoration: none;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-tab {
    font-size: 1rem;
    height: 3.75rem;
  }
}
.contents-body .form-tab:first-of-type {
  border-radius: 1.5rem 0 0 0;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-tab:first-of-type {
    border-radius: 1rem 0 0 0;
  }
}
.contents-body .form-tab:last-of-type {
  border-radius: 0 1.5rem 0 0;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-tab:last-of-type {
    border-radius: 0 1rem 0 0;
  }
}
.contents-body .form-tab.is-active {
  background-color: var(--wp--preset--color--main);
}
.contents-body .form-tab.hover:hover {
  opacity: 0.5;
  color: var(--wp--preset--color--white);
}
.contents-body .form-head *:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 640px) {
  .contents-body .form-head p {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 640px) {
  .contents-body .form-head .form-head-list li {
    font-size: 0.875rem;
  }
}
.contents-body .form-content-thanks {
  margin-top: 3.75rem;
}
.contents-body .form-steps {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 3.625rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-steps {
    margin-top: 1.9375rem;
  }
}
.contents-body .form-steps__item {
  position: relative;
  width: 33.3333%;
  text-align: center;
  padding: 13px 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.375rem;
  gap: 0.3125rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-steps__item {
    height: 3.75rem;
  }
}
@media only screen and (max-width: 640px) {
  .contents-body .form-steps__item {
    height: 2.5em;
  }
}
.contents-body .form-steps__item::before {
  width: 100%;
  height: 2.1875rem;
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  transform: skew(32deg);
  z-index: 1;
  background-color: #b4b4b4;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-steps__item::before {
    height: 1.875rem;
  }
}
@media only screen and (max-width: 640px) {
  .contents-body .form-steps__item::before {
    height: 1.26em;
  }
}
.contents-body .form-steps__item::after {
  width: 100%;
  height: 2.1875rem;
  content: "";
  position: absolute;
  bottom: 0px;
  left: -30px;
  z-index: 1;
  transform: skew(-32deg);
  background-color: #b4b4b4;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-steps__item::after {
    height: 1.875rem;
  }
}
@media only screen and (max-width: 640px) {
  .contents-body .form-steps__item::after {
    height: 1.28em;
  }
}
.contents-body .form-steps__item:first-of-type::before {
  width: calc(100% + 1.625rem);
  z-index: 2;
  left: -27px;
}
.contents-body .form-steps__item:first-of-type::after {
  width: calc(100% + 1.625rem);
  z-index: 2;
  left: -27px;
}
.contents-body .form-steps__item:nth-of-type(2)::before {
  width: 97%;
  left: 6px;
}
.contents-body .form-steps__item:nth-of-type(2)::after {
  width: 97%;
  left: 6px;
}
.contents-body .form-steps__item:last-of-type::before {
  width: calc(100% + 1.625rem);
  z-index: 2;
  left: 2px;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-steps__item:last-of-type::before {
    left: 7px;
  }
}
.contents-body .form-steps__item:last-of-type::after {
  width: calc(100% + 1.625rem);
  z-index: 2;
  left: 2px;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-steps__item:last-of-type::after {
    left: 7px;
  }
}
.contents-body .form-steps__item--active {
  z-index: 1;
  color: #fff;
}
.contents-body .form-steps__item--active::before {
  background-color: var(--wp--preset--color--main);
}
.contents-body .form-steps__item--active::after {
  background-color: var(--wp--preset--color--main);
}
.contents-body .form-steps__item--active .form-steps__number {
  background: #fff;
  color: var(--wp--preset--color--main);
}
.contents-body .form-steps__item--active:not(:last-child)::after {
  border-left-color: #0070bd;
}
.contents-body .form-steps__item--active:not(:last-child)::before {
  border-left: none;
}
.contents-body .form-steps__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #999999;
  color: #fff;
  font-size: 0.75rem;
  z-index: 3;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-steps__number {
    display: none;
  }
}
.contents-body .form-steps__label {
  font-size: 16px;
  font-weight: bold;
  color: var(--wp--preset--color--white);
  z-index: 3;
}
@media only screen and (max-width: 640px) {
  .contents-body .form-steps__label {
    font-size: 0.875rem;
  }
}
.contents-body .form-steps__line {
  display: none;
}
.contents-body .form-title {
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.contents-body .form-title p {
  margin-top: 0;
}
.contents-body .form-radio-wrapper .wpcf7-list-item {
  margin-left: 0;
}
.contents-body .form-radio-wrapper p {
  margin-top: 0;
}
.contents-body .form-recuid {
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  font-size: 0.8125rem;
  margin-left: 0.625rem;
  line-height: 1.38;
  padding: 0.125rem 0.25rem 0.25rem;
}
.contents-body .form-content-retrun {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 6.5625rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-content-retrun {
    margin-top: 3.75rem;
  }
}
.contents-body .form-content-retrun a {
  text-decoration: none;
}
.contents-body .form-content-retrun a:hover {
  text-decoration: none;
}
.contents-body .form-group {
  margin-top: 3.5rem;
}
.contents-body .form-group + .form-group {
  margin-top: 2.8125rem;
}
.contents-body .form-group .form-radio {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 1400px) {
  .contents-body .form-group .form-radio {
    flex-direction: column;
  }
}
.contents-body .form-group .form-radio label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contents-body .form-group .form-radio .wpcf7-list-item-label {
  margin-left: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.contents-body .form-group .form-radio input[type=radio] {
  margin: 0;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--wp--preset--color--btn_gray);
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group .form-radio input[type=radio] {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.contents-body .form-group .form-radio input[type=radio]:checked {
  border: 2px solid var(--wp--preset--color--main);
}
.contents-body .form-group .form-radio input[type=radio]:checked::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: var(--wp--preset--color--main);
  content: "";
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group .form-radio input[type=radio]:checked::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.contents-body .form-group .form-radio-note {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: var(--wp--preset--color--text);
  margin-top: 1.25rem;
  border: 3px solid #fce7e6;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group .form-radio-note {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }
}
.contents-body .form-group .form-radio-note__text {
  line-height: 2;
}
.contents-body .form-group .form-radio-note p {
  line-height: 1.3;
}
.contents-body .form-group .form-radio-note a {
  display: inline-flex;
  align-items: center;
  color: #4b96e6;
  text-decoration: none;
  padding-left: 0;
  line-height: 1.2;
  margin-left: 1rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group .form-radio-note a {
    margin-left: 0.5rem;
  }
}
.contents-body .form-group .form-radio-note a::before {
  content: "\e900";
  width: auto;
  height: auto;
  position: static;
  padding-top: 0.125rem;
  background-image: none;
  font-size: 1.25rem;
  margin-right: 0.125rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group .form-radio-note a::before {
    padding-top: 0rem;
  }
}
.contents-body .form-group .form-group-select {
  width: 32.5rem;
  height: 4.5rem;
  position: relative;
}
.contents-body .form-group .form-group-select::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-image: url(/assets/img/com/arrow_bottom.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  right: 1rem;
  filter: brightness(0) saturate(100%) invert(86%) sepia(0%) saturate(252%) hue-rotate(137deg) brightness(85%) contrast(89%);
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group .form-group-select {
    width: 100%;
    height: 3.75rem;
  }
}
.contents-body .form-group .form-group-select select {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem !important;
}
.contents-body .form-group .form-group-select::after {
  display: none;
}
.contents-body .form-group-textarea__note {
  font-weight: 500;
  color: #666666;
  margin-bottom: 2.375rem;
  line-height: 2.5;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group-textarea__note {
    line-height: 2;
    margin-bottom: 1.25rem;
  }
}
.contents-body .form-group-textarea textarea {
  width: 100%;
  height: 21.375rem;
  border-radius: 0.5rem !important;
  background-color: var(--wp--preset--color--white) !important;
  resize: vertical;
  border: 1px solid #b4b4b4;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group-textarea textarea {
    height: 15rem;
  }
}
.contents-body .form-group-content {
  display: flex;
  gap: 2.5rem;
}
.contents-body .form-group-content p {
  width: 100%;
  margin-top: 0;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group-content {
    flex-direction: column;
    gap: 1rem;
  }
}
.contents-body .form-group-content .wpcf7-form-control-wrap {
  width: 100%;
}
.contents-body .form-group-content .form-input {
  width: 100%;
  height: 4.5rem;
  border: 1px solid var(--wp--preset--color--palegray);
  border-radius: 0.5rem !important;
  background-color: var(--wp--preset--color--white) !important;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group-content .form-input {
    height: 3.75rem;
  }
}
.contents-body .form-group-content .form-input-narrow {
  width: 100%;
  height: 4.5rem;
  border: 1px solid var(--wp--preset--color--palegray);
  border-radius: 0.5rem !important;
  background-color: var(--wp--preset--color--white) !important;
}
@media only screen and (max-width: 960px) {
  .contents-body .form-group-content .form-input-narrow {
    height: 3.75rem;
  }
}
.contents-body .form-content-retrun__link {
  width: 18.4375rem;
  height: 3.5rem;
  background-color: var(--wp--preset--color--main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  text-decoration: none;
  position: relative;
  padding: 1rem;
  border: 2px solid var(--wp--preset--color--main);
}
.contents-body .form-content-retrun__link:hover {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
}
.contents-body .form-content-retrun__link:hover .form-content-retrun__text {
  color: var(--wp--preset--color--main);
}
.contents-body .form-content-retrun__link:hover .form-content-retrun__icon {
  background-color: var(--wp--preset--color--main);
}
.contents-body .form-content-retrun__link:hover .form-content-retrun__icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7420%) hue-rotate(159deg) brightness(94%) contrast(119%);
}
.contents-body .form-content-retrun__text {
  font-size: 0.875rem;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  color: var(--wp--preset--color--white);
}
.contents-body .form-content-retrun__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  transition: 0.3s ease-in-out;
  background-color: var(--wp--preset--color--white);
}
.contents-body .form-content-retrun__icon img {
  width: 0.875rem;
  height: 0.625rem;
  margin-top: 0;
  transition: 0.3s ease-in-out;
  filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(2835%) hue-rotate(351deg) brightness(105%) contrast(113%);
}
.contents-body .privacy-consent__checkbox {
  text-align: center;
}
.contents-body .privacy-consent__checkbox {
  margin-top: 5.4375rem;
}
@media only screen and (max-width: 960px) {
  .contents-body .privacy-consent__checkbox {
    margin-top: 3.75rem;
  }
}
.contents-body .privacy-consent__label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .contents-body .privacy-consent__label {
    font-size: 0.75rem;
  }
}
.contents-body .privacy-consent__check label input[type=checkbox] {
  display: none;
}
.contents-body .privacy-consent__check label input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  border-left: 2px solid #b4b4b4;
  border-bottom: 2px solid #b4b4b4;
}
.contents-body .privacy-consent__check .wpcf7-list-item-label {
  display: flex;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .contents-body .privacy-consent__check .wpcf7-list-item-label {
    line-height: 2;
  }
}
.contents-body .privacy-consent__check .wpcf7-list-item-label::before {
  content: "";
  display: block;
  margin-right: 0.625rem;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border: 1px solid #b4b4b4;
  border-radius: 4px;
}
@media only screen and (max-width: 960px) {
  .contents-body .privacy-consent__check .wpcf7-list-item-label::before {
    margin-right: 0.3125rem;
  }
}
.contents-body .privacy-consent__check .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #f5f5f5;
  border-bottom: 2px solid #f5f5f5;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.2s;
}
.contents-body .privacy-consent__check a {
  color: #4b96e6;
}
.contents-body .privacy-consent__check a::before {
  display: none;
}
.contents-body .privacy-consent__label:hover .privacy-consent__check-icon {
  border-color: #999999;
}
.contents-body .privacy-consent__text a {
  color: #4b96e6;
}
.contents-body .privacy-consent__text a::before {
  content: "";
  display: none;
}
.contents-body .form-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 1.25rem;
}
.contents-body .form-buttons .form-button {
  width: 18.4375rem;
  height: 3.5rem;
  position: relative;
}
.contents-body .form-buttons .form-button__confirm::before {
  background-image: url(/assets/img/com/button_arrow.png);
}
.contents-body .form-buttons .form-button img {
  width: 0.875rem;
  height: 0.625rem;
  filter: brightness(0) saturate(100%) invert(86%) sepia(0%) saturate(252%) hue-rotate(137deg) brightness(85%) contrast(89%);
  margin-top: 0;
}
.contents-body .form-buttons .form-button .form-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--wp--preset--color--white);
  border-radius: 0.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  pointer-events: none;
}
.contents-body .form-buttons .wpcf7-submit {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 1rem;
  margin: 0;
  cursor: pointer;
  pointer-events: all;
}
.contents-body .form-buttons .wpcf7-submit:disabled {
  background-color: var(--wp--preset--color--main);
  border: 2px solid var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  pointer-events: none;
}
.contents-body .form-buttons .wpcf7-submit:hover {
  background-color: var(--wp--preset--color--main);
  border: 2px solid var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
}
.contents-body .form-buttons .wpcf7-previous {
  width: 100%;
  height: 100%;
  background-color: var(--wp--preset--color--palegray);
  border: 2px solid var(--wp--preset--color--palegray);
  color: var(--wp--preset--color--white);
  display: flex;
  align-items: center;
  position: relative;
  padding: 1rem;
  margin: 0;
  cursor: pointer;
  pointer-events: all;
}
.contents-body .form-buttons .wpcf7-previous:hover {
  background-color: var(--wp--preset--color--palegray);
  border: 2px solid var(--wp--preset--color--palegray);
  color: var(--wp--preset--color--white);
}
.contents-body .wpcf7-not-valid-tip {
  margin-top: 1rem;
}

.confirm .contents-body .form-group-select::after {
  display: none;
}
.confirm .contents-body .wp-block-button.is-style-btn__reset::before {
  right: auto;
  left: 1rem;
  transform: rotate(180deg) translateY(50%);
}

.line main {
  background-color: var(--wp--preset--color--sub);
}

.line-benefits {
  border-radius: 1.5rem;
}

.line-benefits__hero {
  background-color: var(--wp--preset--color--green);
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 3rem 13% 0;
}
@media screen and (max-width: 800px) {
  .line-benefits__hero {
    padding-right: 1em;
    padding-left: 3em;
  }
}
@media only screen and (max-width: 640px) {
  .line-benefits__hero {
    padding: 1em 3.125rem 0;
  }
}
.line-benefits__hero .line-benefits__hero-title {
  color: var(--wp--preset--color--white);
}
.line-benefits__hero .line-benefits__hero-title::before {
  display: none;
}
.line-benefits__hero .wp-block-columns {
  gap: 0;
}
@media screen and (max-width: 800px) {
  .line-benefits__hero .wp-block-columns {
    flex-wrap: nowrap;
    margin-top: 1em;
  }
}
@media only screen and (max-width: 640px) {
  .line-benefits__hero .wp-block-columns {
    flex-wrap: wrap;
  }
}

.wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column.line-benefits__hero-content {
  padding-bottom: 3em;
}
@media only screen and (max-width: 960px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column.line-benefits__hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 800px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column.line-benefits__hero-content {
    flex-basis: auto !important;
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 800px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column.line-benefits__hero-badge {
    flex-basis: 30% !important;
  }
}
@media only screen and (max-width: 640px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column.line-benefits__hero-badge {
    flex-basis: 50% !important;
  }
}
@media screen and (max-width: 800px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column.line-benefits__hero-image {
    flex-basis: 35% !important;
  }
}

.line-benefits__hero-title-image {
  padding-top: 50px;
  padding-right: 11%;
}
@media only screen and (max-width: 960px) {
  .line-benefits__hero-title-image {
    padding-top: 0rem;
    padding-right: 0rem;
  }
}

.line-benefits__hero-badge-image {
  padding-top: 0.1875rem;
  padding-left: 1.0625rem;
  margin-right: -0.625rem;
}
@media only screen and (max-width: 960px) {
  .line-benefits__hero-badge-image {
    margin-right: 0;
    padding-top: 0 !important;
    padding-left: 25%;
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 640px) {
  .line-benefits__hero-badge-image {
    margin-right: 0;
    padding-left: 0;
    padding-right: 10%;
  }
}

.line-benefits__mobile-image {
  padding-top: 0.9375rem;
}
@media only screen and (max-width: 960px) {
  .line-benefits__mobile-image {
    padding-top: 0;
  }
}

.line-benefits__features {
  background-color: var(--wp--preset--color--white);
  margin: 0;
  padding-top: 3.625rem;
  padding-bottom: 4.875rem;
  border-radius: 0 0 1.5rem 1.5rem;
  padding-inline: 7.8125%;
}
@media only screen and (max-width: 640px) {
  .line-benefits__features {
    padding-inline: 1.25em;
  }
}
.line-benefits__features .line-benefits__feature-image {
  border: 2px solid #f0f0f0;
}
.line-benefits__features .wp-block-columns {
  margin-top: 0;
  gap: 2.5rem 8.203125%;
}
@media screen and (max-width: 800px) {
  .line-benefits__features .wp-block-columns {
    flex-wrap: nowrap;
    gap: 2.5rem 5%;
  }
}
@media only screen and (max-width: 640px) {
  .line-benefits__features .wp-block-columns {
    flex-wrap: wrap;
  }
}
.line-benefits__features .line-benefits__feature-text {
  line-height: 2;
}

@media screen and (max-width: 800px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) .line-benefits__feature-column {
    flex-basis: auto !important;
  }
}

.line-benefits__feature-title {
  text-align: center;
  margin-top: 1.375rem !important;
}
.line-benefits__feature-title::after {
  content: "";
  display: block;
  width: 7.6875rem;
  height: 0.375rem;
  background-image: radial-gradient(circle, #df180b 3px, transparent 3px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 16px 6px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  border: none;
}

.line-cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.125rem 2.5rem;
}
@media only screen and (max-width: 640px) {
  .line-cards-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.line-card {
  background-color: var(--wp--preset--color--white);
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
}
@media only screen and (max-width: 960px) {
  .line-card {
    border-radius: 1rem;
    padding: 2.5rem 1.25rem;
  }
}

.line-card__wrapper {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .line-card__wrapper {
    margin-top: 0;
  }
}

.line-card__button-group {
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .line-card__button-group {
    margin-top: 0;
    margin-bottom: 0 !important;
  }
}

.line-card__title {
  text-align: center;
  margin-bottom: 1.6875rem !important;
}
@media only screen and (max-width: 960px) {
  .line-card__title {
    margin-bottom: 1rem !important;
  }
}
@media only screen and (max-width: 640px) {
  .line-card__title {
    margin-top: 0 !important;
  }
}

/************************************
 * Form
 ***********************************/
form .form-inner {
  width: 100%;
}
form .form-inner dl {
  border-left: 1px solid var(--wp--preset--color--lightgray);
  border-top: 1px solid var(--wp--preset--color--lightgray);
  display: flex;
  flex-wrap: wrap;
  line-height: 0;
}
form .form-inner dt, form .form-inner dd {
  border-bottom: 1px solid var(--wp--preset--color--lightgray);
  border-right: 1px solid var(--wp--preset--color--lightgray);
  padding: 2em;
}
form .form-inner dt {
  align-items: center;
  background-color: rgba(50, 148, 223, 0.1);
  display: flex;
  font-weight: 700;
  line-height: 1.2;
  width: 17em;
}
form .form-inner dd {
  line-height: 1.2;
  width: calc(100% - 17em);
}
form .required {
  font-size: 0.625rem;
  background-color: var(--wp--preset--color--red);
  color: #fff;
  border-radius: 3px;
  display: inline-block;
  margin-left: auto;
  padding: 0.3em 0.4em;
}
form .form-message {
  padding-top: 35px;
  padding-bottom: 35px;
}
@media only screen and (max-width: 960px) {
  form .form-message {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 640px) {
  form .form-message {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
form .form-message:first-child {
  padding-top: 0;
}
@media only screen and (max-width: 640px) {
  form .form-message {
    text-align: left;
    font-size: 0.9722222222vw;
    text-indent: -1em;
    padding-left: 1em;
  }
}
@media only screen and (max-width: 640px) and (max-width: 1440px) {
  form .form-message {
    font-size: 14px;
  }
}

.add-swiper-bullet {
  padding-bottom: 40px;
}

.swiper-slide {
  text-align: center;
}
.swiper-slide img {
  margin: auto;
}
.swiper-slide p {
  line-height: 1.8;
}

.swiper-pagination {
  bottom: 0;
}

.swiper-pagination-bullet {
  border-radius: 0;
  margin: 0 8px;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.swiper-pagination-bullet-active {
  background: #000;
}

.modaal-wrapper .modaal-container {
  margin: 0;
  max-height: 100%;
  border-bottom: none;
  background: #fff;
  width: 100%;
  max-width: 37.5em;
  padding: 3.125em !important;
  border-radius: 1.5em;
  box-shadow: 0 0 0.625em rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 640px) {
  .modaal-wrapper .modaal-container {
    padding: 1.5em !important;
    border-radius: 1em;
  }
}
.modaal-wrapper .modaal-close {
  position: absolute;
  background: #666666;
  top: -1.5em;
  right: -1.5em;
}
@media only screen and (max-width: 640px) {
  .modaal-wrapper .modaal-close {
    position: fixed;
    top: 1em;
    right: 1em;
  }
}
.modaal-wrapper .modaal-close:hover {
  background: #df180b;
}
.modaal-wrapper .modaal-close:hover::before, .modaal-wrapper .modaal-close:hover::after {
  background: #fff;
}

.modaal-overlay {
  background: #fffbeb !important;
  opacity: 0.9 !important;
}

@keyframes fade {
  0% {
    opacity: 0;
    z-index: -1;
  }
  100% {
    opacity: 1;
    z-index: 1;
  }
}
@keyframes slideLtoR {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes slideRtoL {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@keyframes resizeWidth {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes kurukuru {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*# sourceMappingURL=style.css.map */
