/*
Theme Name: イランイラン
Theme URI: https://ylg2.jp/wpwb/
Description: This is our original theme
Author: KABA'S DESIGN
Author URI: https://kaba-design.jp/

	KABAS DESIGN
	 https://kaba-design.jp

	This theme was designed and built by KABAS DESIGN,
	whose blog you will find at https://kaba-design.jp/
	The CSS, XHTML and design is released under GPL:
	http://www.opensource.org/licenses/gpl-license.php
*/

@charset "UTF-8";

:root {
  --color-main-01: #2c2c2c;
  --color-main-02: #464343;
  --color-text-01: #464343;
  --font-serif: "Shippori Mincho", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HiraMinProN-W3", serif;
  --font-serif-02: "Cardo", serif;
}

/* mixin
========================================================= */
/* =========================================================
 全ページ共通
========================================================= */
/* リセット
------------------------------------- */
/*!
 * ress.css • v3.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }

  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

ul,
dl,
figure {
  margin: 0;
  padding: 0;
}

dt {
  font-weight: normal;
}

ul,
li {
  list-style: none;
}

img,
iframe {
  vertical-align: bottom;
  max-width: 100%;
}

img {
  height: auto;
}

button {
  outline: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.7;
}

/* 基本設定
========================================================= */
body {
  font-family: "Helvetica Neue", Arial, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Noto Sans CJK JP", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-01);
  font-size: 16px;
}

p+p {
  margin-top: 1.5em;
}

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

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

/* リンク
-------------------------------------- */
a {
  text-decoration: none;
  color: var(--color-text-01);
  transition: .3s;
}

a:hover {
  opacity: 0.8;
}

/* =========================================================
 utility
========================================================= */
/* 表示・非表示
----------------------------------------------- */
.u-hidden {
  display: none !important;
}

@media (min-width: 601px) {
  .u-hidden-tab {
    display: none !important;
  }
}

@media (min-width: 961px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media (min-width: 480px) {
  .u-visible-small {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .u-visible-tab {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .u-visible-pc {
    display: none !important;
  }
}

/* マージン調整
-------------------------------------- */
.u-mt-01 {
  margin-top: 80px !important;
}

@media (min-width: 961px) {
  .u-mt-01 {
    margin-top: 160px !important;
  }
}

.u-mt-02 {
  margin-top: 60px !important;
}

@media (min-width: 961px) {
  .u-mt-02 {
    margin-top: 120px !important;
  }
}

.u-mt-03 {
  margin-top: 50px !important;
}

@media (min-width: 961px) {
  .u-mt-03 {
    margin-top: 100px !important;
  }
}

.u-pt-01 {
  padding-top: 80px !important;
}

@media (min-width: 961px) {
  .u-pt-01 {
    padding-top: 160px !important;
  }
}

.u-pt-02 {
  padding-top: 60px !important;
}

@media (min-width: 961px) {
  .u-pt-02 {
    padding-top: 120px !important;
  }
}

.u-pt-03 {
  padding-top: 50px !important;
}

@media (min-width: 961px) {
  .u-pt-03 {
    padding-top: 100px !important;
  }
}

.u-pb-03 {
  padding-bottom: 50px !important;
}

@media (min-width: 961px) {
  .u-pb-03 {
    padding-bottom: 100px !important;
  }
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

/* 文字
-------------------------------------- */
.u-text-left {
  text-align: left !important;
}

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

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

/* =========================================================
 component
========================================================= */
.c-inner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  box-sizing: content-box;
}

@media (min-width: 601px) {
  .c-inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

/* flex
-------------------------------------- */
.c-flex {
  display: flex;
}

.c-flex--wrap {
  flex-wrap: wrap;
}

.c-flex--center {
  justify-content: center;
}

.c-flex--between {
  justify-content: space-between;
}

.c-flex--top {
  align-items: flex-start;
}

.c-flex--middle {
  align-items: center;
}

.c-flex--bottom {
  align-items: flex-end;
}

/* grid
-------------------------------------- */
.c-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 100px;
}

.c-grid>* {
  width: 100%;
  box-sizing: border-box;
}

.c-grid--2>* {
  width: 50%;
}

.c-grid--3>* {
  width: calc(100% / 3.001);
}

@media (min-width: 601px) {
  .c-grid--tab2>* {
    width: 50%;
  }
}

@media (min-width: 601px) {
  .c-grid--tab3>* {
    width: calc(100% / 3.001);
  }
}

@media (min-width: 961px) {
  .c-grid--pc2>* {
    width: 50%;
  }
}

@media (min-width: 961px) {
  .c-grid--pc3>* {
    width: calc(100% / 3.001);
  }
}

@media (min-width: 961px) {
  .c-grid--pc4>* {
    width: 25%;
  }
}

/* section
-------------------------------------- */
/* title
-------------------------------------- */
.c-title--section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.3;
}

.c-title--section span {
  font-weight: 500;
  font-style: italic;
  font-family: var(--font-serif-02);
  font-size: 48px;
  font-size: 3rem;
}

@media (min-width: 961px) {
  .c-title--section span {
    font-size: 68px;
    font-size: 4.25rem;
  }
}

.c-title--section small {
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-main-02);
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 5px;
}

.c-title--section small.u-color-white {
  color: #FFFFFF;
}

/* btn
-------------------------------------- */
.c-btn--more {
  display: block;
  position: relative;
  width: 170px;
  margin-top: 3em;
  padding-bottom: 0.7em;
  border-bottom: 1px solid;
  font-family: var(--font-serif-02);
  font-weight: 600;
}

@media (min-width: 601px) {
  .c-btn--more {
    width: 200px;
  }
}

.c-btn--more::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  transform-origin: right bottom;
  transform: rotate(45deg);
  width: 20px;
  height: 1px;
  background: var(--color-text-01);
  content: '';
}

/* table
-------------------------------------- */
/* list
-------------------------------------- */
/* =========================================================
 layout
========================================================= */
/* main
-------------------------------------- */
/* header
-------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 21;
  transition: 0.3s transform;
}

@media (max-width: 960px) {
  .l-header {
    height: 60px;
  }
}

@media (max-width: 600px) {
  .l-header {
    position: relative;
    height: 0;
  }
}

@media (max-width: 959px) {
  body.is-menuOpen .l-header {
    transform: translateX(-280px);
  }
}

.l-header__inner {
  display: flex;
  align-items: flex-start;
  max-width: none;
  padding-right: 0;
}

@media (max-width: 960px) {
  .l-header__inner {
    padding-left: 0;
  }
}

@media (min-width: 961px) {
  .l-header__inner {
    padding-left: min(240/1400*100vw, 240px);
  }
}

.l-header__logo {
  position: absolute;
  top: 0;
  left: 0;
}

.l-header__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  box-sizing: border-box;
  background: #F1F1F1;
  font-size: 10px;
  font-size: 0.625rem;
}

@media (min-width: 601px) {
  .l-header__logo a {
    width: min(180/1400*100vw, 180px);
    height: min(180/1400*100vw, 180px);
  }
}

.l-header__snsLinks {
  height: 80px;
}

.l-header__contact {
  display: flex;
  align-items: center;
  height: 80px;
  margin-left: min(37/1400*100vw, 37px);
}

.l-header__contactBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  width: 130px;
  height: 80px;
  padding-top: 20px;
}

@media (min-width: 1401px) {
  .l-header__contactBtn {
    width: 150px;
  }
}

.l-header__contactBtn--tel {
  background: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-size: 1rem;
}

.l-header__contactBtn--tel img {
  margin-bottom: 0.3em;
}

.l-header__contactBtn--email {
  background: var(--color-main-02);
  color: #fff;
  font-size: 14px;
}

.l-header__contactBtn--email img {
  margin-bottom: 0.3em;
}

.l-header__menuBtn {
  position: fixed;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  margin-left: 20px;
  padding-top: 3.8em;
  box-sizing: border-box;
  z-index: 101;
  background: var(--color-main-02);
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
}

body.is-menuOpen .l-header__menuBtn {
  transform: translateX(280px);
  background: #E8E2DC;
  color: #E8E2DC;
}

.l-header__menuBtn span {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 26px;
  height: 3px;
  margin: -1px 0 0 -13px;
  background: #fff;
  transition: .4s;
}

body.is-menuOpen .l-header__menuBtn span {
  width: 32px;
  margin-left: -16px;
  top: 50%;
  background: #000000;
}

.l-header__menuBtn span:nth-of-type(1) {
  transform: translateY(-8px);
}

body.is-menuOpen .l-header__menuBtn span:nth-of-type(1) {
  transform: rotate(-45deg);
}

body.is-menuOpen .l-header__menuBtn span:nth-of-type(2) {
  opacity: 0;
}

.l-header__menuBtn span:nth-of-type(3) {
  transform: translateY(8px);
}

body.is-menuOpen .l-header__menuBtn span:nth-of-type(3) {
  transform: rotate(45deg);
}

@media (max-width: 600px) {
  .l-header__menuBtn {
    position: absolute;
  }
}

/* gnav
-------------------------------------- */
.l-gnav {
  flex: 1;
  display: flex;
  align-items: center;
  height: 80px;
  font-size: 14.5px;
  font-size: 0.90625rem;
}

.l-gnav li {
  margin-right: 25px;
}

@media (min-width: 1401px) {
  .l-gnav li {
    margin-right: max(50/1400*100vw, 50px);
  }
}

.l-gnav a {
  text-align: center;
  line-height: 1.4;
}

.l-gnav a small {
  display: block;
  color: var(--color-main-02);
  font-weight: bold;
  font-size: 10px;
  font-size: 0.625rem;
}

/* spMenu
-------------------------------------- */
.l-spMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  transform: translateX(100%);
  background: #F8F6F4;
  overflow: auto;
  pointer-events: none;
  max-height: 100vh;
  overflow: auto;
  z-index: 20;
  transition: .3s;
  font-size: 18px;
  font-size: 1.125rem;
}

body.is-menuOpen .l-spMenu {
  transform: translateX(0%);
  pointer-events: auto;
  z-index: 20;
}

.l-spMenuOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 19;
  opacity: 0;
  transition: .3s;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.85);
}

body.is-menuOpen .l-spMenuOverlay {
  opacity: 1;
  pointer-events: initial;
}

.l-spMenu__inner {
  padding: 70px 15px;
}

.l-spMenu__list {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}

.l-spMenu__list li {
  margin-bottom: 0.5em;
  padding-top: 1em;
}

.l-spMenu__list li+li {
  border-top: 1px solid #D1D1D1;
}

.l-spMenu__list a {
  display: block;
  position: relative;
  line-height: 1.4;
}

.l-spMenu__list a::after {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 8px;
  height: 14px;
  background: url(assets/images/spmenu_arrow.svg) no-repeat center/contain;
  content: '';
}

.l-spMenu__list small {
  display: block;
  font-weight: 700;
  color: var(--color-main-02);
  font-size: 10px;
  font-size: 0.625rem;
}

.l-spMenu__snsLinks {
  margin-top: 30px;
  justify-content: center;
}

.l-spMenu__contact {
  margin-top: 20px;
}

.l-spMenu__contactBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  height: 43px;
  padding-right: 0.5em;
}

.l-spMenu__contactBtn img {
  margin-right: 0.8em;
}

.l-spMenu__contactBtn--tel {
  background: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-size: 1rem;
}

.l-spMenu__contactBtn--email {
  margin-top: 6px;
  background: var(--color-main-02);
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
}

/* footer
-------------------------------------- */
.l-footer {
  position: relative;
  padding: 60px 0 25px;
  background: #464343 url(assets/images/footer_bg.webp) no-repeat center;
  background-size: cover;
  color: #fff;
}

@media (min-width: 961px) {
  .l-footer {
    padding: 90px 0 25px;
  }
}

.l-footer__logo {
  width: 130px;
  margin: auto;
}

@media (min-width: 961px) {
  .l-footer__logo {
    width: 190px;
  }
}

.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
  opacity: 0.5;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media (min-width: 961px) {
  .l-footer__nav {
    margin-top: 50px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.l-footer__nav li {
  margin: 0 1em;
}

@media (min-width: 961px) {
  .l-footer__nav li {
    margin: 0 40px;
  }
}

.l-footer__nav a {
  color: #fff;
}

.l-footer__snsLinks {
  margin-top: 40px;
}

@media (min-width: 961px) {
  .l-footer__snsLinks {
    margin-top: 90px;
  }
}

.l-footer__snsLinks p {
  margin-bottom: 0.5em;
  text-align: center;
  font-family: var(--font-serif-02);
  font-size: 16px;
  font-size: 1rem;
}

.l-footer__snsLinks ul {
  justify-content: center;
  opacity: 0.5;
}

.l-footer__pagetop {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 50px;
}

@media (min-width: 961px) {
  .l-footer__pagetop {
    width: 96px;
  }
}

.l-footer__pagetop img {
  width: 100%;
}

.l-footer__lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-serif);
  font-weight: 300;
}

.l-footer__copy {
  display: block;
  margin-top: 50px;
  text-align: center;
  font-family: var(--font-serif-02);
  font-size: 13px;
  font-size: 0.8125rem;
}

@media (min-width: 961px) {
  .l-footer__copy {
    margin-top: 120px;
  }
}

.l-footer__instagram {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
}

.l-footer__instagram img {
  margin-right: 8px;
}

/* =========================================================
 project
========================================================= */
/* snsLinks
-------------------------------------- */
.p-snsLinks {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
}

.p-snsLinks li {
  margin: 0 9px;
}

.p-snsLinks a {
  display: block;
}

/* kv
-------------------------------------- */
.p-kv {
  position: relative;
  height: 95svh;
  padding-top: 60px;
  background: #FFF;
}

@media (min-width: 961px) {
  .p-kv {
    height: 100vh;
    padding-top: 80px;
  }
}

@media (max-width: 600px) {
  .p-kv {
    padding-top: 0;
  }
}

.p-kv::after {
  position: absolute;
  right: 0;
  left: -12px;
  bottom: -3px;
  height: 65px;
  background: url(./assets/images/kv_text.svg) no-repeat 0 bottom/auto 65px;
  content: '';
}

.index2.p-kv::after {
  display: none;
}

@media (min-width: 961px) {
  .p-kv::after {
    left: -23px;
    bottom: -5px;
    height: 155px;
    background-size: auto;
  }
}

.p-kv__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  top: 38%;
  left: 3%;
  font-family: var(--font-serif);
  letter-spacing: 0.12em;
  font-size: clamp(16px, 6vw, 24px);
}

@media (min-width: 961px) {
  .p-kv__copy {
    left: 9vw;
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (min-width: 601px) {
  .p-kv__copy {
    top: 45%;
  }
}

.p-kv__copy span {
  padding: 0.2em 0.5em;
  background: rgb(51 51 51 / 90%);
  color: #fff;
}

.p-kv__copy span:last-child {
  margin: 0.2em 0 0 0.6em;
}

.p-kv__title {
  font-family: "Shippori Mincho", serif;
  position: absolute;
  font-size: 16px;
  text-align: center;
  bottom: 40px;
  left: 0;
  right: 0;
  margin-inline: auto;
  padding-inline: 16px;
  z-index: 1;
}


@media (min-width: 601px) {
  .p-kv__title {
    bottom: 50px;
  }
}

.p-kv__text {
  position: absolute;
  top: 50%;
  left: 2em;
  transform-origin: left bottom;
  transform: rotate(90deg) translateX(-50%);
  font-family: var(--font-serif-02);
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-kv__img {
  width: 90%;
  height: calc(100svh - 140px);
  margin-left: auto;
}

@media (min-width: 961px) {
  .p-kv__img {
    width: 88.5714285714vw;
    height: calc(100vh - 200px);
  }
}

.p-kv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-kv__news {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 85%;
  max-width: 360px;
  padding: 0.8em 1.5em;
  background: rgba(70, 67, 67, 0.8);
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
}

@media (min-width: 961px) {
  .p-kv__news {
    bottom: 149px;
    width: 360px;
  }
}

.p-kv__news dt {
  margin-right: 1em;
  font-family: var(--font-serif-02);
  font-weight: 600;
}

.p-kv__news dd {
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.p-kv__news a {
  color: #fff;
}

/* concept
-------------------------------------- */
.p-concept {
  overflow: hidden;
  padding: 50px 0 60px;
  background: #F1F1F1;
}

@media (min-width: 961px) {
  .p-concept {
    padding: 90px 0 120px;
    margin-bottom: 0;
  }
}

.p-concept__title {
  margin-bottom: 40px;
}

@media (min-width: 961px) {
  .p-concept__title {
    margin-bottom: 50px;
  }
}

.p-concept__inner {
  max-width: 1200px;
}

@media (min-width: 961px) {
  .p-concept__box {
    display: flex;
  }
}

.p-concept__box+.p-concept__box {
  margin-top: 50px;
}

@media (min-width: 961px) {
  .p-concept__box+.p-concept__box {
    margin-top: 120px;
  }
}

.p-concept__boxContent {
  margin-top: 30px;
}

@media (min-width: 961px) {
  .p-concept__boxContent {
    margin-top: 0;
    align-self: center;
    width: 100%;
    max-width: 45%;
  }
}

.p-concept__boxTitle {
  margin-bottom: 1em;
  font-weight: normal;
  font-family: var(--font-serif);
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 24px;
  font-size: 1.5rem;
}

@media (min-width: 961px) {
  .p-concept__boxTitle {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

.p-concept__boxText {
  letter-spacing: 0.06em;
}

@media (max-width: 960px) {
  .p-concept__boxImg {
    margin-top: 30px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

@media (min-width: 961px) {
  .p-concept__boxImg {
    flex: 1;
  }

  .p-concept__boxImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 961px) {
  .p-concept__boxImg--left {
    order: -1;
    margin-left: calc(50% - 50vw);
    margin-right: 6.6666666667%;
  }
}

@media (min-width: 961px) {
  .p-concept__boxImg--right {
    order: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 6.6666666667%;
  }
}

/* service
-------------------------------------- */
.p-service {
  position: relative;
  padding: 50px 0 60px;
  background: url(assets/images/service_bg.png) repeat;
  color: #fff;
}

@media (min-width: 961px) {
  .p-service {
    padding: 90px 0 120px;
  }
}

.p-service::before,
.p-service::after {
  position: absolute;
  width: 65px;
  height: 65px;
  background: url(assets/images/service_deco.svg) no-repeat center/contain;
  content: '';
}

@media (min-width: 961px) {

  .p-service::before,
  .p-service::after {
    width: min(107/1400*100vw, 130px);
    height: min(107/1400*100vw, 130px);
  }
}

.p-service::before {
  top: 10px;
  left: 10px;
}

@media (min-width: 601px) {
  .p-service::before {
    top: 20px;
    left: 20px;
  }
}

.p-service::after {
  top: 10px;
  right: 10px;
  transform: scale(-1, 1);
}

@media (min-width: 601px) {
  .p-service::after {
    top: 20px;
    right: 20px;
  }
}

.p-service__inner .c-grid {
  justify-content: space-between;
}

@media (min-width: 961px) {
  .p-service__box {
    width: 30.9090909091%;
  }

  .c-grid--pc3 .p-service__box {
    width: 46%;
  }
}

.p-service__boxNumber {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-serif-02);
}

.p-service__boxNumber small {
  margin-bottom: 0.8em;
  border-bottom: 1px solid #E8E2DC;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 961px) {
  .p-service__boxNumber small {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.p-service__boxNumber span {
  padding-right: 0.1em;
  color: #E8E2DC;
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: var(--font-serif-02);
  font-size: 80px;
  font-size: 5rem;
}

@media (min-width: 961px) {
  .p-service__boxNumber span {
    font-size: 120px;
    font-size: 7.5rem;
  }
}

.p-service__boxImg {
  position: relative;
  margin-bottom: 30px;
}

.p-service__boxImg::after {
  position: absolute;
  top: 8px;
  right: -8px;
  bottom: -8px;
  left: 8px;
  border: #E8E2DC 1px solid;
  content: '';
}

.p-service__boxImg img {
  width: 100%;
}

.p-service__boxTitle {
  margin-bottom: 0.5em;
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 24px;
  font-size: 1.5rem;
}

@media (min-width: 961px) {
  .p-service__boxTitle {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (min-width: 601px) {
  .p-service__boxText {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-service__boxMore {
  color: #FFF;
  margin-left: auto;
}

.p-service .c-btn--more::after {
  background: #FFF;
}

/* price
-------------------------------------- */
.p-price {
  padding-top: 50px;
  background: url(assets/images/price_bg.webp) repeat center/105px 150px;
}

@media (min-width: 961px) {
  .p-price {
    padding-top: 90px;
  }
}

.p-price__inner {
  max-width: 1280px;
}

.p-price__title {
  margin-bottom: 30px;
  color: #fff;
}

@media (min-width: 961px) {
  .p-price__title {
    margin-bottom: 40px;
  }
}

.p-price__notice {
  margin-bottom: 2em;
  text-align: center;
  color: #fff;
  letter-spacing: 0.06em;
}

.p-price__container {
  position: relative;
  padding: 30px 20px;
  background: #fff;
}

@media (min-width: 961px) {
  .p-price__container {
    padding: 60px;
  }
}

.p-price__container::before {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border: 1px solid var(--color-main-02);
  content: '';
}

.p-price__containerInner {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

@media (min-width: 961px) {
  .p-price__containerInner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 40px;
  }
}

@media (min-width: 961px) {
  .p-price__box {
    width: 47.2727272727%;
  }
}

@media (max-width: 960px) {
  .p-price__box+.p-price__box {
    margin-top: 40px;
  }
}

.p-price__box--wide {
  width: 100%;
}

@media (min-width: 961px) {
  .p-price__box--wide {
    margin-top: 60px;
  }
}

.p-price__box--wide .p-price__list dd>p {
  min-height: 0;
}

.p-price__boxTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4px;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--color-main-02);
  text-align: center;
  font-weight: unset;
}

.p-price__boxTitle span {
  width: 100%;
  padding-top: 1em;
  background: url(assets/images/price_deco.svg) no-repeat center bottom 0.25em/auto 80%;
  font-family: var(--font-serif-02);
  font-style: italic;
  color: var(--color-main-02);
  line-height: 1;
  font-size: 36px;
  font-size: 2.25rem;
}

@media (min-width: 961px) {
  .p-price__boxTitle span {
    font-size: 48px;
    font-size: 3rem;
  }
}

.p-price__boxTitle small {
  font-family: var(--font-serif);
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 5px;
}

.p-price__list {
  border-top: 1px solid var(--color-main-02);
}

.p-price__list>div {
  padding: 1.6em 0;
  border-bottom: 1px solid var(--color-main-02);
}

.p-price__list dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 0.8em;
}

.p-price__list dt::before {
  position: absolute;
  top: 49%;
  width: 100%;
  height: 2px;
  background: url(assets/images/price_dots.svg) repeat-x center;
  content: '';
}

.p-price__list dt span {
  position: relative;
  background: #fff;
}

.p-price__list dt span:first-child {
  padding-right: 0.6em;
  color: var(--color-main-02);
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 601px) {
  .p-price__list dt span:first-child {
    padding-right: 1em;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-price__list dt span:last-child {
  margin-top: -0.3em;
  padding-left: 0.4em;
  font-family: var(--font-serif-02);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  font-size: 26px;
  font-size: 1.625rem;
}

@media (min-width: 601px) {
  .p-price__list dt span:last-child {
    padding-left: 0.8em;
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.p-price__list dt span:last-child small {
  margin-left: 0.4em;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-price__list dd {
  font-size: 13px;
  font-size: 0.8125rem;
}

@media (min-width: 961px) {
  .p-price__list dd>p {
    min-height: 3.6em;
  }
}

.p-price__trip {
  margin-top: 35px;
  padding: 30px;
  background: rgba(0, 158, 175, 0.1);
  color: #189EAF;
  font-weight: 700;
  box-sizing: border-box;
}

@media (min-width: 601px) {
  .p-price__trip {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 961px) {
  .p-price__trip {
    padding: 60px 11.8181818182%;
  }
}

.p-price__trip p {
  flex: 1;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-price__tripTitle {
  margin-right: 4em;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 961px) {
  .p-price__tripTitle {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-price__img {
  position: relative;
  margin-top: 40px;
}

@media (min-width: 961px) {
  .p-price__img {
    margin-top: 65px;
  }
}

.p-price__img figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.1em 0.5em 0;
  background: hsla(0, 0%, 13%, 0.9);
  letter-spacing: 0.12em;
  color: #fff;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 601px) {
  .p-price__img figcaption {
    font-size: 32px;
    font-size: 2rem;
  }
}

/* access
-------------------------------------- */
.p-access {
  padding: 50px 0 60px;
  background: #F7F7F7;
  line-height: 2;
}

@media (min-width: 961px) {
  .p-access {
    padding: 90px 0 120px;
  }
}

.p-access__title {
  margin-bottom: 1.5em;
}

@media (min-width: 961px) {
  .p-access__text {
    text-align: center;
  }
}

.p-access__map {
  margin-top: 40px;
  padding: 9px;
  background: #fff;
}

@media (min-width: 601px) {
  .p-access__map {
    margin-top: 60px;
  }
}

.p-access__map iframe {
  width: 100%;
  height: 350px;
}

@media (min-width: 601px) {
  .p-access__map iframe {
    height: 460px;
  }
}

.p-access__more {
  text-align: right;
}

.p-access__more .c-btn--more {
  width: 170px;
  margin: 1em 0 0 auto;
  padding-bottom: 0.2em;
  text-align: left;
  font-family: YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-access__grid {
  margin: 20px 0 0 -60px;
}

.p-access__grid>* {
  padding-left: 60px;
}

.p-access__list dt {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.p-access__list dt span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 22px;
  margin-right: 4px;
}

.p-access__list *+dt {
  margin-top: 1.3em;
}

.p-access__list dd {
  line-height: 1.5;
}

@media (max-width: 960px) {
  .p-access__list+.p-access__list {
    margin-top: 1.5em;
  }
}

/* sister
-------------------------------------- */
.p-sister {
  color: #fff;
}

.p-sister .parallax-box {
  clip-path: inset(0);
  padding: 50px 0 60px;
  box-sizing: border-box;
}

.p-sister .parallax-box::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-image: url(assets/images/sister_bg.webp);
  background-size: cover;
  background-position: 100%;
}

@media (min-width: 961px) {
  .p-sister .parallax-box {
    padding: 90px 0 100px;
  }
}

.p-sister__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 961px) {
  .p-sister__title {
    margin-bottom: 50px;
  }
}

.p-sister__title::before {
  width: 151.2px;
  height: 35.2px;
  background: url(assets/images/sister_deco.svg) no-repeat center/contain;
  content: '';
}

@media (min-width: 961px) {
  .p-sister__title::before {
    width: 189px;
    height: 44px;
  }
}

.p-sister__title small {
  margin: 1.1em 0 1em;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 961px) {
  .p-sister__title small {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-sister__title span {
  font-family: var(--font-serif);
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-size: 30px;
  font-size: 1.875rem;
}

@media (min-width: 961px) {
  .p-sister__title span {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

.p-sister__text {
  line-height: 2;
}

@media (min-width: 601px) {
  .p-sister__text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 961px) {
  .p-sister__text {
    text-align: center;
  }
}

.p-sister__more {
  margin: 4em auto 0;
  color: #fff;
}

.p-sister__more::after {
  background: #fff;
}

/* floatMenu
-------------------------------------- */
.l-floatMenu {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1;
  display: none;
}

@media (min-width: 601px) {
  .l-floatMenu {
    display: none;
  }
}

.l-floatMenu ul {
  display: flex;
  align-items: center;
  font-size: 12px;
  background-color: #fff;
  padding: 10px;
  margin: 0;
  list-style: none;
}

.l-floatMenu li {
  flex-basis: 27.5%;
  text-align: center;
}

.l-floatMenu a {
  display: block;
}

.l-floatMenu img {
  width: 16px;
  margin: .3em 0;
}

.l-floatMenu span {
  display: block;
}

.l-floatMenu__contactBtn {
  background: var(--color-main-01);
  font-size: 14px;
  border-radius: 5px;
  flex-basis: 45% !important;
  margin-left: 10px;
}

.l-floatMenu__contactBtn a {
  display: flex;
  justify-content: center;
  color: #fff;
  padding: 12px 0;
}

.l-floatMenu__contactBtn img {
  width: 20px;
  margin: 0 .6em 0 0;
}

.p-price__option {
  width: 100%;
}

.page-wrapper {
  padding: 120px 0;
}

.p-404 {
  padding: 50px 0 60px;
  color: #222222;
  line-height: 2;
}

.p-404 a {
  text-decoration: underline;
}

.p-404__title {
  margin-bottom: 1.5em;
}

@media (min-width: 961px) {
  .p-404 {
    padding: 90px 0 120px;
  }

  .p-404__text {
    text-align: center;
  }
}

/* grid-container
-------------------------------------- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 12px;
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
  }
}

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.lightgallery__link {
  position: relative;
}

.lightgallery__link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.4) url("assets/images/icon_zoom.svg") no-repeat center;
  opacity: 0;
  content: '';
  transition: 0.3s;
}

.lightgallery__link:hover::after {
  opacity: 1;
}

.lg-toolbar {
  background-color: transparent !important;
}

.p-page__header img {
  height: 25svh;
  width: 100%;
  object-fit: cover;
  margin-top: 0;
}

.p-page__img {
  margin: 30px auto;
}

@media (min-width: 961px) {
  .p-page__header img {
    height: 50svh;
    margin-top: 80px;
  }
}

.p-staff {
  padding: 90px 0 120px;
}

.p-staff__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 90px;
}

@media (min-width: 767px) {
  .p-staff__box {
    grid-template-columns: 1fr 2fr;
    gap: 40px 60px;
  }
}


.p-staff__boxPhoto {
  position: relative;
  width: fit-content;
  height: fit-content;
  margin-inline: auto;
}

.p-staff__boxPhoto::after {
  position: absolute;
  top: 8px;
  right: -8px;
  bottom: -8px;
  left: 8px;
  border: var(--color-main-02) 1px solid;
  content: '';
}

.p-staff__boxTitle {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.p-staff__boxTitle span {
  display: block;
  color: var(--color-main-02);
  font-size: .5em;
  font-weight: bold;
}

.p-staff__boxList {
  position: relative;
  background: #F9F9F9;
  padding: 20px 30px;
}

.p-staff__boxList::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: solid 1px #E8E2DC;
}

.p-staff__boxList {
  line-height: normal;
  display: grid;
  gap: .3em;
}

.p-staff__boxList li::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background: url(assets/images/staff_list_deco.svg) no-repeat center;
  margin-right: 1em;
}

.p-news {
  padding: 90px 0 120px;
  background: #D1D1D1;
}

.p-news__container {
  margin-top: 90px;
}

.p-news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 601px) {
  .p-news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 961px) {
  .p-news__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-news__listItem {
  position: relative;
}

.p-news__listItem::after {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-left: 20px solid transparent;
  border-bottom: 20px solid var(--color-main-02);
}

.p-news__listItem:hover {
  cursor: pointer;
}

.p-news__listImg {
  margin-bottom: 20px;
}

.p-news__listImg img {
  width: 100%;
  aspect-ratio: 4/ 3;
  object-fit: cover;
}

.p-news__listItem {
  padding: 10px;
  background: #FFF;
}

@media (min-width: 961px) {
  .p-news__listItem {
    padding: 20px;
    background: #FFF;
  }
}

.p-news__description {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  margin: 10px;
}

.p-news__description .date {
  color: var(--color-main-02);
  font-size: .85em;
  margin-bottom: .5em;
  line-height: 1;
}

.p-news__description .title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: .5em;
}

.p-news__description .text {
  font-size: .85rem;
  color: #7F7F7F;
  line-height: 1.6;
}

@media (min-width: 601px) {
  .p-news__description {
    margin: 10px 0;
  }

  .p-news__description .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-news__more {
  margin-inline: auto 0;
}


/* =========================================================
 ここから下層ページ
========================================================= */

/* mv
-------------------------------------- */
.p-mv {
  position: relative;
  padding-top: 60px;
  background: #F1F1F1;
}

.p-mv__img {
  width: 100%;
  height: 440px;
  margin-left: auto;
}

.p-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-mv .c-title--section small {
  font-weight: bold;
}

@media (min-width: 961px) {
  .p-mv {
    padding-top: 80px;
  }

  .p-mv__img {
    width: 90%;
  }
}

@media (max-width: 960px) {
  .p-mv {
    padding-top: 0;
  }
}

/* 下層ページ共通
-------------------------------------- */
.p-page {
  background: #F1F1F1;
}

.p-page__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-page__lead {
  padding: 60px 0 0;
  text-align: center;
}

@media (min-width: 961px) {
  .p-page__lead {
    padding: 90px 0 40px;
  }
}

.p-page__leadTitle {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 60px;
}

.p-page__leadDescription {
  max-width: 800px;
  margin-inline: auto;
}

.p-page .p-concept__boxTitle {
  font-size: 24px;
}

.p-concept__boxTitle--sub {
  font-size: 14px;
  color: var(--color-main-02);
  font-family: "Helvetica Neue", Arial, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Noto Sans CJK JP", Meiryo, sans-serif;
  font-weight: 400;
  display: block;
}

.p-page .p-service__box>* {
  font-weight: normal;
}

.p-page .p-service__boxTitle {
  margin-bottom: 0;
  margin-top: 40px;
}

@media (min-width: 961px) {
  .p-page__leadTitle {
    font-size: 30px;
  }

  .p-page .p-concept__boxTitle {
    font-size: 30px;
  }
}

.p-page__grid {
  padding: 90px 0 120px;
}

.grid-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 601px) {
  .grid-box--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 961px) {
  .grid-box--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-box img {
  margin-inline: auto;
}

.grid-box__item {
  margin-inline: auto;
}

.grid-box__item .text {
  position: relative;
  margin-left: 30px;
}

.grid-box__item .text>* {
  margin-left: 20px;
}

.grid-box__item .number {
  position: absolute;
  top: -40px;
  left: -30px;
  font-family: var(--font-serif-02);
  font-size: 60px;
  font-weight: normal;
  color: var(--color-main-02);
}

/* marbb
-------------------------------------- */
#marbb .p-sister {
  padding: 50px 0 60px;
  background: url(assets/images/marbb/sister_bg.webp) no-repeat center/cover;
  background-attachment: fixed;
  color: #fff;
}

/* tsubosashi
-------------------------------------- */
#tsubosashi .p-sister {
  padding: 50px 0 60px;
  background: url(assets/images/tsubosashi/sister_bg.webp) no-repeat 70%/cover;
  background-attachment: fixed;
  color: #fff;
}

#news .p-news__listItem {
  max-width: 920px;
  margin-inline: auto;
}

#news .grid-box {
  gap: 30px;
}

@media (min-width: 601px) {
  #news .grid-box {
    gap: 40px;
  }

  #news .p-news__listItem {
    display: flex;
    width: 100%;
  }

  #news .p-news__listImg {
    margin-bottom: 0;
    margin-right: 40px;
    width: 25%;
  }

  #news .p-news__listImg img {
    width: 200px;
    height: 100%;
  }
}

/********** ページネーション ***********/
.nav-links {
  margin-top: 60px;
}

.archive-pager ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.archive-pager li {
  margin: 6px;
}

.archive-pager a,
.archive-pager .current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(24px, 9vw, 40px);
  height: clamp(24px, 9vw, 40px);
  border: #7F7F7F 1px solid;
  color: #7F7F7F;
  text-align: center;
}

.archive-pager a:hover {
  background: var(--color-main-02);
  color: #FFFFFF;
  cursor: pointer;
  opacity: 1;
}

.archive-pager .current {
  background: var(--color-main-02);
  color: #FFFFFF;
}

.archive-pager .dots {
  margin-right: 6px;
  margin-left: 6px;
}

a.prev.page-numbers,
.next.page-numbers {
  display: none;
}

@media (min-width: 961px) {
  .archive-pager li {
    margin: 6px;
  }

  .archive-pager a,
  .archive-pager .current {
    height: 54px;
    width: 54px;
  }

  .archive-pager .dots {
    margin-right: 10px;
    margin-left: 10px;
  }
}

.p-single {
  background: #FFFFFF;
  max-width: 720px;
  margin-top: 80px;
  margin-inline: auto;
}

.p-single__title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.p-single__meta {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.p-single__content {
  margin-top: 80px;
}

.p-single__link .c-btn--more {
  margin-inline: auto 0;
}

/********** お問い合わせ ***********/

.p-contact__inner {
  max-width: 920px;
  padding-block: 90px 120px;
  display: grid;
  gap: 60px;
}

.p-contact__text {
  text-align: center;
}

.p-contact__box {
  padding: 45px 16px;
  background: #FFFFFF;
}

@media (min-width: 601px) {
  .p-contact__inner {
    gap: 120px;
  }

  .p-contact__box {
    padding: 90px;
  }
}

.p-contact__box .title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  font-family: var(--font-serif);
}

.p-contact__box .banner {
  margin-bottom: 30px;
  text-align: center;
}

.p-contact__box .caution {
  text-align: center;
  font-weight: bold;
  color: #c01313;
}

.p-contact__form {
  border-top: solid 1px #F1F1F1;
  margin-top: 60px;
}

.p-contact__form .item {
  border-bottom: solid 1px #F1F1F1;
  align-items: flex-start;
  padding-block: 30px;
  display: grid;
  gap: 10px 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .p-contact__box .description {
    text-align: center;
  }

  .p-contact__form .item {
    grid-template-columns: 220px 1fr;
  }
}

.p-contact__form .item .head {
  width: 200px;
  font-weight: 500;
}

.p-contact__form .item .head p {
  display: flex;
  gap: 10px;
  place-items: center;
}

.p-contact__form .item .head .required {
  color: var(--color-main-02);
  border: solid 1px var(--color-main-02);
  padding: .2em .6em;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-indent: .15em;
  border-radius: 100vh;
}

.p-contact__form .item .head .required--off {
  color: #9f9f9f;
  border: solid 1px #9f9f9f;
}

.p-contact__form .item .main {
  max-width: 480px;
  width: 100%;
}

.p-contact__form .item .main .attention {
  font-size: .8em;
  margin-top: .2em;
  color: #9f9f9f;
}

.p-contact__form .item .main .text {
  max-width: 250px;
  width: 100%;
  background: #F1F1F1;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  padding: 8px 10px;
  border-radius: 4px;
  line-height: 1;
}

.p-contact__form .item--wide .main .text {
  max-width: 480px;
  box-sizing: border-box;
}

input:focus-visible {
  outline: solid 2px var(--color-main-02);
}

.p-contact__form .item .main .textarea {
  width: 100%;
  max-width: 480px;
  background: #F1F1F1;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  padding: 8px 10px;
  border-radius: 4px;
  box-sizing: border-box;
}

.p-contact__form .item .main .radioGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-self: start;
  gap: 20px;
  line-height: 1.4;
}

.p-contact__form .item .main .radioGrid .wpcf7-list-item {
  display: flex;
  gap: 10px;
}

.p-contact__form .item .main .radioGrid .wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 961px) {
  .p-contact__form .item .main .radioGrid .wpcf7-radio {
    grid-template-columns: 1fr 1fr;
  }
}

.p-contact__form .radio .wpcf7-list-item input {
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: #F1F1F1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 100vh;
}

.p-contact__form .radio .wpcf7-list-item input::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: transparent;
  border-radius: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: .2s;
}

.p-contact__form .radio .wpcf7-list-item input:checked::before {
  background: var(--color-main-02);
}

.p-contact__form .item .main .checkboxGrid .checkbox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  line-height: 1.4;
}


@media (min-width: 961px) {
  .p-contact__form .item .main .checkboxGrid .checkbox {
    grid-template-columns: 1fr 1fr;
  }
}

.p-contact__form .item .main .checkboxGrid .checkbox .wpcf7-list-item {
  display: flex;
  gap: 10px;
}

.p-contact__form .checkbox .wpcf7-list-item input {
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: #F1F1F1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: .2s;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.p-contact__form .checkbox .wpcf7-list-item input:checked {
  background: var(--color-main-02);
}

.p-contact__form .checkbox .wpcf7-list-item input:checked::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(assets/images/contact/icon_check.svg) no-repeat center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.p-contact__form .button {
  max-width: 240px;
  margin-inline: auto;
  margin-top: 30px;
  box-sizing: border-box;
}

.p-contact__form .button input {
  padding: .75rem 1rem;
  border-radius: 3px;
  width: 100%;
  transition: 0.3s opacity;
}

.p-contact__form .button input:hover {
  opacity: .7;
}

.wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}

.wpcf7-submit {
  background: var(--color-main-02) !important;
  color: #fff !important;
  border: none !important;
}

.wpcf7-previous {
  background: #d9d9d9 !important;
  margin-bottom: 20px !important;
  max-width: 100px !important;
  display: block !important;
  margin-inline: auto !important;
  border: none !important;
}

.wpcf7-not-valid-tip {
  color: #ffffff !important;
  font-weight: bold !important;
  padding: .2em .8em !important;
  background: #dc3232 !important;
  margin-top: .4em !important;
}