@charset "UTF-8";

/*!
  Theme Name: toahouse-theme2025 framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: toahouse-theme2025 framework
  Version: 2.0
  Date: 2025.10.28
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/***************************

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #4A463F;
  --brown: #3C3833;
  --green: #509F34;
  --gray: #DDDDDD;
  --font: "noto-sans-cjk-jp", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --roboto: "Roboto", sans-serif;
  --noto-sans: "noto-sans-cjk-jp", sans-serif;
  --zain: "Zain", sans-serif;
  --shipporib1: "Shippori Mincho B1", sans-serif;
  --garamond: "EB Garamond", serif;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 541px) {
  p {
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  p {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  p {
    font-size: 16px;
  }
}

.small {
  font-size: 14px;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 769px) {
  .small {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .small {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

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

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

/***************************

foundation/_animation.scss

***************************/
.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
  animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
  animation-name: textSlideIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
  animation-name: textSlideDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
  animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

/***************************

layout/_header.scss

***************************/
/* .header.-is-fixed { 
  z-index: 999;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.header_wrap {
  padding: 15px 15px;
  padding-left: 0;
  padding-top: 0;
}

@media screen and (min-width: 769px) {
  .header_wrap {
    padding: 15px 30px;
    padding-left: 0;
    padding-top: 0;
  }
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--black);
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  width: 30px;
}

.header__nav_toggle_bar::after {
  width: 30px;
}

.header__nav_toggle_bar::before {
  top: -8px;
}

.header__nav_toggle_bar::after {
  top: 8px;
}

.header__nav_toggle_title {
  font-size: 12px;
  display: block;
  padding-top: 7px;
  width: 4em;
  white-space: nowrap;
  color: var(--black);
}

.header__nav_toggle_title:before {
  content: "MENU";
  color: var(--black);
  font-family: var(--roboto);
  font-weight: bold;
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
}

.header.-is-open .header__nav_toggle_title:before {
  content: "CLOSE";
  color: var(--black);
  font-family: var(--roboto);
}

@media screen and (min-width: 540px) {
  .header__nav_toggle {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    text-align: center;
    position: relative;
    z-index: 7;
  }

  .header__nav_toggle_bar {
    position: relative;
    margin: 12px 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .header__nav_toggle_bar,
  .header__nav_toggle_bar::before,
  .header__nav_toggle_bar::after {
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--black);
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    transition-duration: 0.5s;
  }

  .header__nav_toggle_bar::before,
  .header__nav_toggle_bar::after {
    position: absolute;
    content: "";
  }

  .header__nav_toggle_bar {
    width: 50px;
  }

  .header__nav_toggle_bar::after {
    width: 50px;
  }

  .header__nav_toggle_bar::before {
    top: -12px;
  }

  .header__nav_toggle_bar::after {
    top: 12px;
  }

  .header__nav_toggle_title {
    font-size: 16px;
    display: block;
    padding-top: 10px;
    width: 4em;
    white-space: nowrap;
  }

  .header__nav_toggle_title:before {
    content: "MENU";
  }

  .header.-is-open .header__nav_toggle_bar {
    background-color: transparent;
  }

  .header.-is-open .header__nav_toggle_bar::before {
    transform: translateY(12px) rotate(135deg);
  }

  .header.-is-open .header__nav_toggle_bar::after {
    transform: translateY(-12px) rotate(-135deg);
    width: 50px;
  }

  .header.-is-open .header__nav_toggle_title:before {
    content: "CLOSE";
  }
}

.header.-is-open .header__nav_toggle_bar::before,
.header.-is-open .header__nav_toggle_bar::after {
  background: var(--white);
}

.header.-is-open .header__nav_toggle_title:before {
  color: var(--white);
}

.header__logo {
  z-index: 10;
  background: var(--white);
  border-radius: 0 0 4px 0;
  padding: 20px;
  position: relative;
}

@media screen and (min-width: 540px) {
  .header__logo {
    padding-left: 35px;
    padding-right: 35px;
  }
}

.header__nav_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--green);
  z-index: 6;
  transition: 0.5s;
}

.header__nav_wrap {
  height: 0;
}

.header.-is-open .header__nav_wrap {
  height: 100vh;
  position: absolute;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.header__nav {
  position: relative;
  opacity: 0;
  height: 0;
  overflow-y: scroll;
}

.header__nav_list {
  margin: 5px 0 0 0;
  margin-top: 90px;
  margin-bottom: 0;
  height: 0;
}

.header__nav_wrap {
  pointer-events: none;
}

.header.-is-open .header__nav_wrap {
  pointer-events: all;
}

.header.-is-open .header__nav_list {
  height: auto;
}

.header.-is-open .header__nav {
  height: 100vh;
}

.header.-is-open .header__nav {
  opacity: 1;
}

.header__nav_item {
  border-top: 1px solid var(--white);
}

.header__nav_item:first-child {
  border-top: none;
}

.header__nav_item.last {
  border-bottom: 1px solid var(--white);
}

.header__nav_item a {
  display: block;
  opacity: 0;
  visibility: hidden;
  padding: 10px 10px;
  color: var(--white);
}

.header.-is-open .header__nav_item a {
  opacity: 1;
  visibility: visible;
  transition: all 1.5s ease;
}

.header.-is-open .header__nav_item a:hover {
  opacity: 0.6;
  transition: all 0.5s;
}

.header__nav_item.is_parent {
  position: relative;
}

.header__nav_item.is_child {
  background: var(--white);
}

.header__nav_item.is_child .header__nav_item:first-of-type {
  border-top: none;
}

.header__nav_item.is_child .header__sub_nav_link {
  padding: 10px;
  color: var(--green);
  border-bottom: 1px solid var(--green);
}

.header__nav_item.is_child .header__sub_nav_link.last {
  border-bottom: none;
}

.header.-is-open .header__nav_item.is_child {
  display: none;
}

.header.-is-open .header__nav_item.is_child.open {
  display: block;
}

.header__nav__btn {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-items: center;
  position: absolute;
  width: 50px;
  height: 100%;
  top: 0;
  right: 0;
}

.header__nav__btn::before {
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  z-index: -1;
  top: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.5s;
  background: var(--white);
}

.header__nav__btn::after {
  content: "";
  width: 2px;
  height: 20px;
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.5s;
  background: var(--white);
}

.header__nav__btn.open::after {
  opacity: 0;
} */

/***************************

layout/_header.scss

***************************/
.header.-is-fixed {
  z-index: 999;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.header_wrap {
  padding: 15px 15px;
  padding-left: 0;
  padding-top: 0;
}

@media screen and (min-width: 769px) {
  .header_wrap {
    padding: 15px 30px;
    padding-left: 0;
    padding-top: 0;
  }
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--black);
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  width: 30px;
}

.header__nav_toggle_bar::after {
  width: 30px;
}

.header__nav_toggle_bar::before {
  top: -8px;
}

.header__nav_toggle_bar::after {
  top: 8px;
}

.header__nav_toggle_title {
  font-size: 12px;
  display: block;
  padding-top: 7px;
  width: 4em;
  white-space: nowrap;
  color: var(--black);
}

.header__nav_toggle_title:before {
  content: "MENU";
  color: var(--black);
  font-family: var(--roboto);
  font-weight: bold;
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
}

.header.-is-open .header__nav_toggle_title:before {
  content: "CLOSE";
  color: var(--black);
  font-family: var(--roboto);
}

@media screen and (min-width: 540px) {
  .header__nav_toggle {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    text-align: center;
    position: relative;
    z-index: 7;
  }

  .header__nav_toggle_bar {
    position: relative;
    margin: 12px 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .header__nav_toggle_bar,
  .header__nav_toggle_bar::before,
  .header__nav_toggle_bar::after {
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--black);
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    transition-duration: 0.5s;
  }

  .header__nav_toggle_bar::before,
  .header__nav_toggle_bar::after {
    position: absolute;
    content: "";
  }

  .header__nav_toggle_bar {
    width: 50px;
  }

  .header__nav_toggle_bar::after {
    width: 50px;
  }

  .header__nav_toggle_bar::before {
    top: -12px;
  }

  .header__nav_toggle_bar::after {
    top: 12px;
  }

  .header__nav_toggle_title {
    font-size: 16px;
    display: block;
    padding-top: 10px;
    width: 4em;
    white-space: nowrap;
  }

  .header__nav_toggle_title:before {
    content: "MENU";
  }

  .header.-is-open .header__nav_toggle_bar {
    background-color: transparent;
  }

  .header.-is-open .header__nav_toggle_bar::before {
    transform: translateY(12px) rotate(135deg);
  }

  .header.-is-open .header__nav_toggle_bar::after {
    transform: translateY(-12px) rotate(-135deg);
    width: 50px;
  }

  .header.-is-open .header__nav_toggle_title:before {
    content: "CLOSE";
  }
}

.header__logo {
  z-index: 10;
  background: var(--white);
  border-radius: 0 0 4px 0;
  padding: 20px;
  position: relative;
}

@media screen and (min-width: 540px) {
  .header__logo {
    padding-left: 35px;
    padding-right: 35px;
  }
}

.header__nav_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--white);
  z-index: 6;
  transition: 0.5s;
}

.header__nav_wrap {
  height: 0;
}

.header.-is-open .header__nav_wrap {
  height: 100vh;
  position: absolute;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.header__nav {
  position: relative;
  opacity: 0;
  height: 0;
  overflow-y: scroll;
}

.header__nav_list {
  margin-top: 90px;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
  height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

@media screen and (min-width: 769px) {
  .header__nav_list {
    margin-left: 35px;
    margin-right: 35px;
    gap: 0 50px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1101px) {
  .header__nav_list {
    margin-left: 20px;
    margin-right: 20px;
    gap: 0 30px;
  }
}

.header__nav_wrap {
  pointer-events: none;
}

.header.-is-open .header__nav_wrap {
  pointer-events: all;
}

.header.-is-open .header__nav_list {
  height: auto;
}

.header.-is-open .header__nav {
  height: 100vh;
}

.header.-is-open .header__nav {
  opacity: 1;
}

.header__nav_item {
  padding: 10px 10px;
}

.header__nav_link {
  display: block;
  opacity: 0;
  visibility: hidden;
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
}

@media screen and (min-width: 769px) {
  .header__nav_link {
    font-size: 32px;
  }
}

@media screen and (min-width: 1101px) {
  .header__nav_link {
    font-size: 28px;
  }
}

.header__nav_link .en {
  font-size: 13px;
  font-family: var(--zain);
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  .header__nav_link .en {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .header__nav_link .en {
    font-size: 16px;
  }
}

.header__nav_link:hover {
  color: var(--green);
  opacity: 1;
}

.header__sub_nav_link {
  color: var(--green);
  display: block;
  padding-top: 5px;
  font-size: 13px;
  font-weight: bold;
}

@media screen and (min-width: 541px) {
  .header__sub_nav_link {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .header__sub_nav_link {
    font-size: 16px;
  }
}

.header.-is-open .header__nav_item {
  border-bottom: 1px solid #DDDDDD;
}

.header.-is-open .header__nav_item.is_child {
  border-bottom: none;
  padding-top: 0;
}

.header.-is-open .header__nav_item a {
  opacity: 1;
  visibility: visible;
  transition: all 1.5s ease;
}

.header.-is-open .header__nav_item a:hover {
  transition: all 0.5s;
}

.header__nav_item.is_parent {
  position: relative;
}

.header__nav_list_type02 {
  margin: 40px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

@media screen and (min-width: 769px) {
  .header__nav_list_type02 {
    margin: 70px 35px;
  }
}

@media screen and (min-width: 1101px) {
  .header__nav_list_type02 {
    margin: 40px 20px;
  }
}

.header__nav_list_type02 li {
  border: 1px solid #DDDDDD;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

@media screen and (max-width: 540px) {
  .header__nav_list_type02 li {
    aspect-ratio: 1/1;
    padding: 0;
  }
}

@media screen and (min-width: 541px) {
  .header__nav_list_type02 li {
    justify-content: flex-start;
    padding: 20px;
  }
}

.header__nav_list_type02 li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  gap: 10px;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 541px) {
  .header__nav_list_type02 li a {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.header__nav_list_type02 li a:hover {
  color: var(--green);
}

/***************************

layout/_footer.scss

***************************/
/*////////////////////////

footer

////////////////////////*/
.menu__nav_list {
  margin-bottom: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px 100px;
}

@media screen and (min-width: 541px) {
  .menu__nav_list {
    margin-bottom: 100px;
    gap: 80px 100px;
  }
}

@media screen and (min-width: 769px) {
  .menu__nav_list {
    margin-bottom: 140px;
  }
}

@media screen and (min-width: 1101px) {
  .menu__nav_list {
    margin-bottom: 130px;
  }
}

.menu__nav_item {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .menu__nav_item {
    max-width: calc(50% - 60px);
  }
}

.menu__nav_title {
  font-size: 38px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.08em;
}

.menu__nav_title .en {
  font-family: var(--roboto);
  font-weight: 400;
  font-size: 16px;
}

@media screen and (min-width: 541px) {
  .menu__nav_title {
    font-size: 48px;
  }

  .menu__nav_title .en {
    font-size: 26px;
  }
}

@media screen and (min-width: 769px) {
  .menu__nav_title {
    font-size: 40px;
  }

  .menu__nav_title .en {
    font-size: 16px;
  }
}

.menu__nav_text {
  color: #777777;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
  transition: all 1.5s;
}

@media screen and (min-width: 541px) {
  .menu__nav_text {
    font-size: 24px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 769px) {
  .menu__nav_text {
    font-size: 16px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .menu__nav_text {
    margin-top: 30px;
  }
}

.menu__nav_link {
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 40px;
  display: block;
}

.menu__nav_link:hover {
  color: var(--green);
}

.menu__nav_link:hover .menu__nav_text {
  color: var(--green);
}

.menu__nav_link .btn01.green {
  font-size: 16px;
}

.menu__nav_link .btn01.green::after {
  left: 7px;
}

@media screen and (min-width: 541px) {
  .menu__nav_link .btn01.green {
    font-size: 32px;
  }

  .menu__nav_link .btn01.green::before {
    width: 42px;
    height: 42px;
  }

  .menu__nav_link .btn01.green::after {
    width: 20px;
    height: 20px;
    left: 11px;
  }
}

@media screen and (min-width: 769px) {
  .menu__nav_link .btn01.green {
    font-size: 24px;
  }

  .menu__nav_link .btn01.green::before {
    width: 32px;
    height: 32px;
  }

  .menu__nav_link .btn01.green::after {
    width: 15px;
    height: 15px;
    left: 9px;
  }
}

.js-pagetop {
  font-size: 14px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 500;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .js-pagetop {
    top: 0;
    bottom: auto;
    height: 100%;
    right: 0;
    text-align: right;
    width: 61px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    padding-top: 140px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .js-pagetop:-webkit-scrollbar {
    display: none;
  }
}

.js-pagetop a {
  display: block;
}

.side_menu_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  background: var(--white);
}

@media screen and (min-width: 1200px) {
  .side_menu_list {
    display: flex;
    flex-direction: column;
    height: 530px;
  }
}

.side_menu_item span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.side_menu_item span img {
  width: 100%;
  max-width: 20px;
}

@media screen and (min-width: 1200px) {
  .side_menu_item span {
    flex-direction: row;
    gap: 5px;
    writing-mode: vertical-rl;
  }
}

.side_menu_item a {
  color: #3C3833;
  font-size: 12px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .side_menu_item a {
    font-size: 22px;
  }
}

@media screen and (min-width: 1200px) {
  .side_menu_item a {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.side_menu_item {
  padding: 0 4px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (min-width: 540px) {
  .side_menu_item {
    padding: 0 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .side_menu_item {
    padding: 30px 20px;
    margin: 0;
  }
}

.side_menu_item+.side_menu_item {
  border-left: 2px solid #EEEEEE;
}

@media screen and (min-width: 1200px) {
  .side_menu_item+.side_menu_item {
    border-left: none;
    border-top: 2px solid #EEEEEE;
  }
}

.footer {
  padding-bottom: 120px;
  background: var(--brown);
  color: var(--white);
  padding-top: 100px;
}

@media screen and (min-width: 541px) {
  .footer {
    padding-top: 120px;
  }
}

@media screen and (min-width: 769px) {
  .footer {
    padding-bottom: 30px;
    padding-top: 80px;
  }
}

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

@media screen and (min-width: 541px) {
  .footer .sp {
    width: auto;
    max-width: 250px;
  }
}

@media screen and (min-width: 769px) {
  .footer .pc {
    width: 100%;
  }
}

@media screen and (min-width: 1101px) {
  .footer .pc {
    width: auto;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 541px) {
  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 769px) {
  .footer__nav {
    gap: 10px 0;
  }

  .footer__nav .footer__nav_list {
    padding: 0 30px;
  }

  .footer__nav .footer__nav_list:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer__nav .footer__nav_list:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer__nav .footer__nav_list+.footer__nav_list {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media screen and (min-width: 1101px) {
  .footer__nav {
    justify-content: space-between;
  }
}

.footer__nav_link {
  padding: 10px 0;
  letter-spacing: 0.08em;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 541px) {
  .footer__nav_link {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  .footer__nav_link {
    font-size: 16px;
  }
}

.footer__sub_nav_item {
  margin-left: 30px;
}

.footer__sub_nav_item a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 541px) {
  .footer__sub_nav_item a {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  .footer__sub_nav_item a {
    font-size: 14px;
  }
}

.footer_addressbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 30px;
  margin-top: 60px;
}

@media screen and (min-width: 541px) {
  .footer_addressbox {
    gap: 50px;
    margin-top: 130px;
  }
}

@media screen and (min-width: 769px) {
  .footer_addressbox {
    margin-top: 60px;
  }
}

.footer_address_name {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 541px) {
  .footer_address_name {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  .footer_address_name {
    font-size: 16px;
  }
}

.footer_address_contents {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 541px) {
  .footer_address_contents {
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {
  .footer_address_contents {
    font-size: 14px;
  }
}

.footer__copyright {
  display: block;
  color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 40px;
}

.footer__copyright span {
  font-family: var(--zain);
  letter-spacing: 0.08em;
}

@media screen and (min-width: 541px) {
  .footer__copyright {
    margin-top: 80px;
  }
}

@media screen and (min-width: 769px) {
  .footer__copyright {
    margin-top: 80px;
    text-align: right;
  }

  .footer__copyright br {
    display: none;
  }
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;

}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;

  width: 100%;
  max-width: 1000px;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

@media screen and (min-width: 541px) {
  .wp-pagenavi {
    margin-top: 100px;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: var(--green);
  font-size: 16px;
  font-weight: bold;
  font-family: var(--zain);
  margin: 5px;
  display: block;
  text-decoration: none;
  padding: 0;
  opacity: 1;
  border-radius: 50%;
}

@media screen and (min-width: 541px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 42px;
    margin: 5px 30px;
  }
}

@media screen and (min-width: 1101px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 32px;
  }
}

.wp-pagenavi span.current {
  color: #CCCCCC;
  cursor: default;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }

  .wp-pagenavi .extend+.larger {
    display: none;
  }
}

@media screen and (max-width: 540px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
  }
}

.previouspostslink i,
.nextpostslink i {
  font-weight: 400;
}

.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

/***************************

layout/_breadcrumbs.scss

***************************/
.breadcrumbs {
  font-size: 16px;
  font-weight: 400;
  color: #AAAAAA;
  margin-bottom: 40px;
}

@media screen and (min-width: 541px) {
  .breadcrumbs {
    margin-bottom: 70px;
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {
  .breadcrumbs {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.breadcrumbs li:before {
  content: "／";
  margin: 0 10px;
  color: #AAAAAA;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs a {
  color: var(--green);
}

.breadcrumbs a:hover {
  color: var(--green);
  opacity: 0.6;
}

.lineup .breadcrumbs {
  color: var(--white);
}

.lineup .breadcrumbs li:before {
  content: "／";
  margin: 0 10px;
  color: var(--white);
}

.lineup .breadcrumbs a {
  color: var(--white);
}

/***************************

layout/_page-title.scss

***************************/
.title02_wrap:has(.page_title) {
  margin-bottom: 0;
}

@media screen and (min-width: 1101px) {
  .title02_wrap:has(.page_title) .title02_img {
    margin-top: -10px;
  }

  .title02_wrap:has(.page_title) .title02_img img {
    max-width: 300px;
  }
}

.page_title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 25px;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.page_title .en {
  font-size: 16px;
  font-family: var(--roboto);
  letter-spacing: 0.12em;
  font-weight: 400;
}

@media screen and (min-width: 541px) {
  .page_title .en {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) {
  .page_title .en {
    font-size: 30px;
  }
}

@media screen and (min-width: 1101px) {
  .page_title .en {
    font-size: 20px;
  }
}

@media screen and (min-width: 541px) {
  .page_title {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  .page_title {
    font-size: 56px;
  }
}

@media screen and (min-width: 1101px) {
  .page_title {
    font-size: 40px;
  }
}

.page_title.type01 .sub_text {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 2px solid #DDDDDD;
}

@media screen and (min-width: 541px) {
  .page_title.type01 .sub_text {
    padding-left: 40px;
    margin-left: 40px;
  }
}

.title01 {
  display: flex;
  flex-direction: column;
  font-size: 28px;
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-bottom: 30px;
}

.title01 .en {
  font-size: 16px;
  font-family: var(--roboto);
  letter-spacing: 0.12em;
  font-weight: 400;
}

@media screen and (min-width: 541px) {
  .title01 .en {
    font-size: 26px;
  }
}

@media screen and (min-width: 769px) {
  .title01 .en {
    font-size: 16px;
  }
}

@media screen and (min-width: 541px) {
  .title01 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 769px) {
  .title01 {
    margin-bottom: 80px;
    font-size: 48px;
  }
}

@media screen and (min-width: 1101px) {
  .title01 {
    margin-bottom: 40px;
    font-size: 32px;
  }
}

.title02_wrap {
  margin-bottom: 30px;
}

@media screen and (min-width: 541px) {
  .title02_wrap {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 769px) {
  .title02_wrap {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .title02_wrap {
    margin-bottom: 40px;
  }
}

.title02 {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  font-size: 32px;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.title02 .en {
  font-size: 16px;
  font-family: var(--roboto);
  letter-spacing: 0.12em;
  font-weight: 400;
}

@media screen and (min-width: 541px) {
  .title02 .en {
    font-size: 26px;
  }
}

@media screen and (min-width: 769px) {
  .title02 .en {
    font-size: 26px;
  }
}

@media screen and (min-width: 1101px) {
  .title02 .en {
    font-size: 16px;
  }
}

@media screen and (min-width: 541px) {
  .title02 {
    font-size: 48px;
  }
}

@media screen and (min-width: 769px) {
  .title02 {
    font-size: 40px;
  }
}

.title02_img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -5px;
  position: relative;
  z-index: -1;
}

@media screen and (min-width: 541px) {
  .title02_img {
    margin-top: -20px;
  }
}

@media screen and (min-width: 1550px) {
  .title02_img {
    margin-left: -60px;
    width: 100%;
  }
}

.title02_img img {
  width: 100%;
  max-width: 210px;
}

@media screen and (min-width: 541px) {
  .title02_img img {
    max-width: 250px;
  }
}

@media screen and (min-width: 769px) {
  .title02_img img {
    max-width: 300px;
  }
}

@media screen and (min-width: 1101px) {
  .title02_img img {
    max-width: 250px;
  }
}

@media screen and (min-width: 1550px) {
  .title02_img img {
    max-width: 300px;
  }
}

.title03 {
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

@media screen and (min-width: 541px) {
  .title03 {
    font-size: 28px;
    gap: 20px;
  }
}

@media screen and (min-width: 769px) {
  .title03 {
    font-size: 36px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .title03 {
    font-size: 36px;
  }
}

.title03 .en {
  font-family: var(--zain);
  letter-spacing: 0.12em;
  font-size: 18px;
  border-bottom: 2px solid #443F39;
}

@media screen and (min-width: 541px) {
  .title03 .en {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) {
  .title03 .en {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .title03 .en {
    font-size: 20px;
  }
}

.title04_wrap {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (min-width: 541px) {
  .title04_wrap {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 769px) {
  .title04_wrap {
    margin-bottom: 30px;
  }
}

.title04_wrap .en {
  font-size: 16px;
  letter-spacing: 0.12em;
  font-family: var(--zain);
  font-weight: 400;
  writing-mode: vertical-rl;
}

@media screen and (min-width: 541px) {
  .title04_wrap .en {
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  .title04_wrap .en {
    font-size: 16px;
  }
}

.title04 {
  font-size: 28px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

@media screen and (min-width: 541px) {
  .title04 {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  .title04 {
    font-size: 36px;
  }
}

@media screen and (min-width: 1101px) {
  .title04 {
    font-size: 36px;
  }
}

.title04 {
  border: 2px solid #443F39;
  border-radius: 3px;
  line-height: 1;
  height: 50px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 541px) {
  .title04 {
    height: 60px;
  }
}

.title_bd {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 541px) {
  .title_bd {
    width: 60px;
    height: 60px;
  }
}

.title_bd+.title_bd {
  border-left: 2px solid #443F39;
}

.title05 {
  font-size: 28px;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 20px;
}

@media screen and (min-width: 541px) {
  .title05 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 769px) {
  .title05 {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

.title06 {
  letter-spacing: 0.06em;
  font-size: 19px;
  margin-bottom: 15px;
}

@media screen and (min-width: 541px) {
  .title06 {
    font-size: 27px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 769px) {
  .title06 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .title06 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.title06 i {
  font-weight: 400;
}

.title07 {
  font-size: 28px;
  letter-spacing: 0.04em;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 20px;
  margin-bottom: 40px;
}

.title07::after {
  content: "";
  width: 4px;
  height: 100%;
  background: #443F39;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}

@media screen and (min-width: 541px) {
  .title07::after {
    width: 6px;
  }
}

@media screen and (min-width: 1101px) {
  .title07::after {
    width: 4px;
  }
}

@media screen and (min-width: 541px) {
  .title07 {
    font-size: 48px;
    padding-left: 30px;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 769px) {
  .title07 {
    margin-bottom: 100px;
    padding-left: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .title07 {
    font-size: 36px;
    padding-left: 30px;
    margin-bottom: 80px;
  }
}

.title07 .en {
  font-family: var(--zain);
  font-size: 18px;
}

@media screen and (min-width: 541px) {
  .title07 .en {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) {
  .title07 .en {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .title07 .en {
    font-size: 16px;
  }
}

.title08 {
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 400;
  display: inline-block;
  border-bottom: 1px solid #443F39;
  padding-bottom: 5px;
  margin: 10px 0 20px;
}

@media screen and (min-width: 541px) {
  .title08 {
    font-size: 32px;
    margin: 30px 0;
  }
}

@media screen and (min-width: 769px) {
  .title08 {
    font-size: 32px;
    margin: 30px 0;
  }
}

@media screen and (min-width: 1101px) {
  .title08 {
    font-size: 24px;
    margin: 20px 0;
  }
}

.title09 {
  font-size: 18px;
  font-weight: bold;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: baseline;
  margin-bottom: 10px;
  line-height: 1.5;
}

@media screen and (min-width: 541px) {
  .title09 {
    font-size: 20px;
    margin-bottom: 30px;
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  .title09 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .title09 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.title09 span {
  font-weight: 400;
  font-family: var(--zain);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.12em;
}

@media screen and (min-width: 541px) {
  .title09 span {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) {
  .title09 span {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .title09 span {
    font-size: 18px;
  }
}

.title10 {
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (min-width: 541px) {
  .title10 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .title10 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.title11 {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* .title11.shippori {
  line-height: 0.9;
} */
.title11.shippori span {
  background: linear-gradient(transparent 87%, #000, transparent 90%);
}

.title11 span {
  /* border-bottom: 1px solid #000;
  display: inline-block; */
  margin-bottom: 15px;

  background: linear-gradient(transparent 98%, #000);
  display: inline;
  padding-top: 10px;
}

@media screen and (min-width: 541px) {
  .title11 span {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .title11 span {
    margin-bottom: 20px;
  }
}

.title11 span:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 541px) {
  .title11 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 769px) {
  .title11 {
    font-size: 40px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .title11 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.title12 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

@media screen and (min-width: 541px) {
  .title12 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 769px) {
  .title12 {
    font-size: 40px;
    margin-bottom: 70px;
  }
}

@media screen and (min-width: 1101px) {
  .title12 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

.title12 span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 5px;
}

@media screen and (min-width: 541px) {
  .title12 span {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .title12 span {
    font-size: 18px;
  }
}

.title13 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  text-decoration: underline;
  text-underline-offset: 1px;
}

@media screen and (min-width: 541px) {
  .title13 {
    font-size: 20px;
  }
}

@media screen and (min-width: 769px) {
  .title13 {
    font-size: 28px;
  }
}

@media screen and (min-width: 1101px) {
  .title13 {
    font-size: 24px;
  }
}

.title14 {
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

@media screen and (min-width: 541px) {
  .title14 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 769px) {
  .title14 {
    font-size: 32px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .title14 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

.title14 span {
  font-size: 16px;
  font-family: var(--zain);
}

@media screen and (min-width: 541px) {
  .title14 span {
    font-size: 20px;
  }
}

@media screen and (min-width: 769px) {
  .title14 span {
    font-size: 16px;
  }
}

.title14 .shippori span {
  font-family: var(--garamond);
}

.title15 {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 30px;
}

@media screen and (min-width: 541px) {
  .title15 {
    font-size: 18px;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  .title15 {
    font-size: 28px;
    padding-left: 40px;
    margin-bottom: 50px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .title15 {
    font-size: 24px;
    padding-left: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.title15::after {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--black);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 541px) {
  .title15::after {
    width: 4px;
  }
}

@media screen and (min-width: 1101px) {
  .title15::after {
    width: 2px;
  }
}

.title15.bd-w::after {
  background: var(--white);
}

.title15.fc--white::after {
  background: var(--white);
}

.title16 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 10px;
  display: inline-block;
  border-bottom: 1px solid var(--black);
}

.title16.shippori {
  line-height: 0.9;
}

@media screen and (min-width: 541px) {
  .title16 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .title16 {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

/***************************

object/component/_box.scss

***************************/
.container_1410 {
  max-width: 1410px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 541px) {
  .container_1410 {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 769px) {
  .container_1410 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container_l {
  max-width: 1370px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 541px) {
  .container_l {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 769px) {
  .container_l {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container_m {
  max-width: 1300px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 541px) {
  .container_m {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 769px) {
  .container_m {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container_s {
  max-width: 1220px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 541px) {
  .container_s {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 769px) {
  .container_s {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/***************************

object/component/_button.scss

***************************/
.btn01 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn01::before {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  background: var(--white);
  border-radius: 50%;
}

.btn01::after {
  content: "";
  background: url(img/common/arrow_r_b.png);
  width: 12px;
  height: 12px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  z-index: 5;
}

.btn01.green {
  color: var(--green);
}

.btn01.green::before {
  background: var(--green);
}

.btn01.green::after {
  content: "";
  background: url(img/common/arrow_r_w.png);
  width: 12px;
  height: 12px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  z-index: 5;
}

.btn02 {
  position: relative;
  gap: 10px;
  color: var(--green);
  font-family: var(--zain);
  font-size: 24px;
}

@media screen and (min-width: 541px) {
  .btn02 {
    font-size: 32px;
  }
}

@media screen and (min-width: 769px) {
  .btn02 {
    font-size: 24px;
  }
}

.btn02 span {
  position: relative;
  z-index: 2;
  margin-right: 15px;
  color: var(--white);
}

.btn02 span i {
  font-size: 20px;
}

@media screen and (min-width: 541px) {
  .btn02 span i {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .btn02 span i {
    font-size: 20px;
  }
}

.btn02 span::before {
  content: "";
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  left: -6px;
  width: 32px;
  height: 32px;
  display: block;
  background: var(--green);
  border-radius: 50%;
  z-index: -1;
}

@media screen and (min-width: 541px) {
  .btn02 span::before {
    width: 42px;
    height: 42px;
    left: -9px;
  }
}

@media screen and (min-width: 769px) {
  .btn02 span::before {
    width: 32px;
    height: 32px;
    left: -6px;
  }
}

.btn02:hover {
  color: var(--green);
}

.btn03 {
  position: relative;
  font-weight: bold;
  gap: 10px;
  color: var(--green);
  font-family: var(--zain);
  font-size: 24px;
}

@media screen and (min-width: 541px) {
  .btn03 {
    font-size: 32px;
  }
}

@media screen and (min-width: 769px) {
  .btn03 {
    font-size: 24px;
  }
}

.btn03 span {
  position: relative;
  z-index: 2;
  margin-right: 15px;
  color: var(--white);
}

.btn03 span i {
  font-weight: 400;
  font-size: 20px;
}

@media screen and (min-width: 541px) {
  .btn03 span i {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .btn03 span i {
    font-size: 20px;
  }
}

.btn03 span::before {
  content: "";
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  left: -4px;
  width: 32px;
  height: 32px;
  display: block;
  background: var(--green);
  border-radius: 50%;
  z-index: -1;
}

@media screen and (min-width: 541px) {
  .btn03 span::before {
    width: 42px;
    height: 42px;
    left: -9px;
  }
}

@media screen and (min-width: 769px) {
  .btn03 span::before {
    width: 32px;
    height: 32px;
    left: -4px;
  }
}

.btn03:hover {
  color: var(--green);
}

.link_green {
  color: var(--green);
  border-bottom: 1px solid var(--green);
  position: relative;
  letter-spacing: 0.06em;
}

.link_green:hover {
  opacity: 0.6;
  color: var(--green);
}

.link_green[target=_blank] {
  padding-right: 20px;
}

.link_green[target=_blank]::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(img/common/arrow_r_blank.png);
  position: absolute;
  bottom: 5px;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.link_black {
  color: var(--black);
  border-bottom: 1px solid var(--black);
  position: relative;
  letter-spacing: 0.06em;
}

.link_black:hover {
  opacity: 0.6;
  color: var(--black);
}

/***************************

object/component/_form.scss

***************************/
.form__container {
  margin-top: 60px;
}

@media screen and (min-width: 541px) {
  .form__container {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1101px) {
  .form__container {
    margin-top: 60px;
  }
}

.form__container .title10 {
  margin-top: 20px;
}

@media screen and (min-width: 541px) {
  .form__container .title10 {
    margin-top: 30px;
  }
}

@media screen and (min-width: 1101px) {
  .form__container .title10 {
    margin-top: 20px;
  }
}

.span-required {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 541px) {
  .span-required {
    font-size: 18px;
  }
}

@media screen and (min-width: 1101px) {
  .span-required {
    font-size: 16px;
  }
}

.contact_dt {
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin-right: 20px;
  margin-bottom: 10px;
}

@media screen and (min-width: 541px) {
  .contact_dt {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .contact_dt {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

input,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 20px;
  background: #EEEEEE;
  color: var(--black);
  border-radius: 7px;
}

@media screen and (min-width: 541px) {

  input,
  textarea,
  select {
    padding: 30px 20px;
  }
}

@media screen and (min-width: 1101px) {

  input,
  textarea,
  select {
    padding: 20px;
  }
}

input::-webkit-input-placeholder {
  color: #AAAAAA;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font);
}

input:-moz-placeholder {
  color: #AAAAAA;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font);
}

input::-moz-placeholder {
  color: #AAAAAA;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font);
}

input:-ms-input-placeholder {
  color: #AAAAAA;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font);
}

.form_date input::-webkit-input-placeholder {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font);
}

.form_date input:-moz-placeholder {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font);
}

.form_date input::-moz-placeholder {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font);
}

.form_date input:-ms-input-placeholder {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font);
}

textarea {
  height: 300px;
}

.contact_dl {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 541px) {
  .contact_dl {
    gap: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .contact_dl {
    gap: 30px;
  }
}

input[type=radio] {
  display: none;
}

input[type=checkbox] {
  display: none;
}

.checkbox_dd .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (min-width: 1101px) {
  .checkbox_dd .wpcf7-radio {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .checkbox_dd .wpcf7-radio.pc-column2 {
    grid-template-columns: 1fr 1fr;
  }

  .checkbox_dd .pc-column2 .wpcf7-checkbox {
    grid-template-columns: 1fr 1fr;
  }

  .checkbox_dd .pc-column2 .wpcf7-radio {
    grid-template-columns: 1fr 1fr;
  }
}

.checkbox_dd .wpcf7-radio .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 0 10px;
}

@media screen and (min-width: 541px) {
  .checkbox_dd .wpcf7-radio .wpcf7-list-item-label {
    grid-template-columns: 40px 1fr;
  }
}

@media screen and (min-width: 1101px) {
  .checkbox_dd .wpcf7-radio .wpcf7-list-item-label {
    grid-template-columns: 20px 1fr;
  }
}

.checkbox_dd .wpcf7-radio .wpcf7-list-item-label::before {
  background: #EEEEEE;
  content: "";
  display: block;
  border-radius: 50%;
  left: 5px;
  top: 50%;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 541px) {
  .checkbox_dd .wpcf7-radio .wpcf7-list-item-label::before {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .checkbox_dd .wpcf7-radio .wpcf7-list-item-label::before {
    width: 20px;
    height: 20px;
  }
}

.checkbox_dd .wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  border-radius: 50%;
  background-color: var(--black);
  display: block;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  width: 10px;
  height: 10px;
}

@media screen and (min-width: 541px) {
  .checkbox_dd .wpcf7-radio .wpcf7-list-item-label::after {
    width: 20px;
    height: 20px;
    left: 10px;
  }
}

@media screen and (min-width: 1101px) {
  .checkbox_dd .wpcf7-radio .wpcf7-list-item-label::after {
    width: 10px;
    height: 10px;
    left: 5px;
  }
}

.checkbox_dd input[type=radio]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.checkbox_dd input[type=radio]:checked+.wpcf7-list-item-label_wrap .wpcf7-list-item-label::after {
  opacity: 1;
}

.checkbox_dd .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (min-width: 1101px) {
  .checkbox_dd .wpcf7-checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .checkbox_dd .wpcf7-checkbox.pc-column2 {
    grid-template-columns: 1fr 1fr;
  }

  .checkbox_dd .pc-column2 .wpcf7-checkbox {
    grid-template-columns: 1fr 1fr;
  }
}

.checkbox_dd .wpcf7-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 0 15px;
}

.checkbox_dd .wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #EEEEEE;
  content: "";
  display: block;
  border-radius: 0;
  left: 5px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

@media screen and (min-width: 541px) {
  .checkbox_dd .wpcf7-checkbox .wpcf7-list-item-label::before {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .checkbox_dd .wpcf7-checkbox .wpcf7-list-item-label::before {
    width: 30px;
    height: 30px;
  }
}

.checkbox_dd .wpcf7-checkbox .wpcf7-list-item-label::after {
  border-right: 3px solid #595555;
  border-bottom: 3px solid #595555;
  content: "";
  display: block;
  height: 12px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 13px;
  transform: rotate(45deg);
  width: 8px;
}

@media screen and (min-width: 541px) {
  .checkbox_dd .wpcf7-checkbox .wpcf7-list-item-label::after {
    left: 15px;
    margin-top: -2px;
  }
}

@media screen and (min-width: 1101px) {
  .checkbox_dd .wpcf7-checkbox .wpcf7-list-item-label::after {
    left: 10px;
    margin-top: -7px;
  }
}

.checkbox_dd input[type=checkbox]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.checkbox_dd input[type=checkbox]:checked+.wpcf7-list-item-label_wrap .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-list-item {
  width: 100%;
  background: var(--white);
  border: 1px solid #EEEEEE;
  border-radius: 7px;
  padding: 20px;
}

.contact-form__check .wpcf7-list-item {
  padding: 0;
  border: none;
}

.wpcf7-list-item-label {
  font-size: 16px;
}

@media screen and (min-width: 541px) {
  .wpcf7-list-item-label {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .wpcf7-list-item-label {
    font-size: 16px;
  }
}

.privacypolicy-check {
  margin-bottom: 80px;
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
  font-size: 16px;
}

@media screen and (min-width: 541px) {
  .privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 16px;
  }
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #EEEEEE;
  content: "";
  display: block;
  border-radius: 0;
  left: 5px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

@media screen and (min-width: 541px) {
  .privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::before {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::before {
    width: 30px;
    height: 30px;
  }
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::after {
  border-right: 3px solid #595555;
  border-bottom: 3px solid #595555;
  content: "";
  display: block;
  height: 12px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 13px;
  transform: rotate(45deg);
  width: 8px;
}

@media screen and (min-width: 541px) {
  .privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::after {
    left: 15px;
    margin-top: -2px;
  }
}

@media screen and (min-width: 1101px) {
  .privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::after {
    left: 10px;
    margin-top: -7px;
  }
}

.privacypolicy-check input[type=checkbox]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.privacypolicy-check input[type=checkbox] {
  border: none;
}

.wpcf7-list-item {
  margin: 0;
}

.privacypolicy_wrap {
  margin-top: 30px;
  margin-bottom: 20px;
}

@media screen and (min-width: 541px) {
  .privacypolicy_wrap {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .privacypolicy_wrap {
    margin-top: 30px;
  }
}

.privacypolicy_box {
  border: 2px solid #EEEEEE;
  border-radius: 7px;
  height: 300px;
  overflow-y: scroll;
  padding: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 541px) {
  .privacypolicy_box {
    height: 500px;
    padding: 30px;
  }
}

.contact-btn_wrap .wpcf7-submit {
  display: block;
  text-align: right;
  background: transparent;
  color: var(--green);
  font-size: 24px;
  font-weight: bold;
}

@media screen and (min-width: 541px) {
  .contact-btn_wrap .wpcf7-submit {
    font-size: 28px;
  }
}

@media screen and (min-width: 1101px) {
  .contact-btn_wrap .wpcf7-submit {
    font-size: 24px;
  }
}

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

.contact-btn_wrap {
  position: relative;
}

.contact-btn_wrap .wpcf7-submit {
  display: inline-block;
  padding-left: 50px;
  cursor: pointer;
}

.contact-btn_wrap {
  display: inline-block;
}

.arrow_btn {
  background: var(--green);
  background-position: center center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: -10px;
  pointer-events: none;
}

.arrow_btn i {
  color: var(--white);
  font-size: 20px;
  text-align: left;
}

.thanks p {
  line-height: 1.5;
}

.thanks .t-left:has(.btn03) {
  padding-top: 30px;
}

@media screen and (min-width: 541px) {
  .thanks .t-left:has(.btn03) {
    padding-top: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .thanks .t-left:has(.btn03) {
    padding-top: 30px;
  }
}

.form_bnr_box {
  padding: 30px;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  margin-top: 40px;
}

@media screen and (min-width: 541px) {
  .form_bnr_box {
    margin-top: 60px;
    padding: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .form_bnr_box {
    margin-top: 40px;
  }
}

.form_bnr_box p {
  font-size: 16px;
  letter-spacing: 0.06em;
  padding-left: 2rem;
  text-indent: -2rem;
}

@media screen and (min-width: 541px) {
  .form_bnr_box p {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .form_bnr_box p {
    font-size: 16px;
  }
}

.re_mark {
  letter-spacing: 0.06em;
  padding-left: 2rem;
  text-indent: -2rem;
}

.form_bnr_img {
  margin-bottom: 20px;
}

@media screen and (min-width: 541px) {
  .form_bnr_img {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1101px) {
  .form_bnr_img {
    margin-bottom: 20px;
  }
}

.contact_dd.yubin {
  align-items: center;
  gap: 15px;
}

.form_autofill {
  color: var(--white);
  background: #443F39;
  border-radius: 7px;
  font-weight: bold;
  letter-spacing: 0.06em;
  padding: 10px 20px;
}

.p-postal-code {
  width: 100%;
  max-width: 140px;
}

@media screen and (min-width: 541px) {
  .p-postal-code {
    max-width: 240px;
  }
}

@media screen and (min-width: 1101px) {
  .p-postal-code {
    max-width: 240px;
  }
}

.form_date {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  color: var(--black);
}

select {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  width: 100%;
  background: #EEEEEE;
  color: var(--black);
  background-image: url("img/common/arrow-down.png");
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: right 20px center;
  border-radius: 7px;
}

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

option:first-child {
  color: #AAAAAA;
}

option:nth-child(n+2) {
  color: var(--black);
}

#datepicker,
select {
  cursor: pointer;
}

.form_date .date {
  position: relative;
}

.form_date .date::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background: url(img/common/calendar.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  pointer-events: none;
}

@media screen and (min-width: 541px) {
  .form_date .date::after {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .form_date .date::after {
    width: 20px;
    height: 20px;
  }
}

.wpcf7-small {
  font-size: 14px;
  margin-left: 20px;
  display: block;
  margin-top: 5px;
}

@media screen and (min-width: 541px) {
  .wpcf7-small {
    font-size: 18px;
    margin-left: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .wpcf7-small {
    font-size: 14px;
    margin-left: 20px;
  }
}

.form_reserve_wrap .wpcf7-list-item {
  padding: 10px;
}

@media screen and (min-width: 541px) {
  .form_reserve_wrap .wpcf7-list-item {
    padding: 20px;
  }
}

.form_reserve_wrap .wpcf7-list-item label {
  display: grid;
  grid-template-columns: 1fr 99px;
  gap: 10px;
  align-items: center;
}

@media screen and (min-width: 541px) {
  .form_reserve_wrap .wpcf7-list-item label {
    grid-template-columns: 1fr 150px;
  }
}

@media screen and (min-width: 769px) {
  .form_reserve_wrap .wpcf7-list-item label {
    grid-template-columns: 1fr 200px;
  }
}

@media screen and (min-width: 1101px) {
  .form_reserve_wrap .wpcf7-list-item label {
    grid-template-columns: 1fr 140px;
    gap: 20px;
  }
}

.form_catalog_wrap .wpcf7-list-item {
  padding: 10px;
}

@media screen and (min-width: 541px) {
  .form_catalog_wrap .wpcf7-list-item {
    padding: 20px;
  }
}

.form_catalog_wrap .wpcf7-small {
  font-size: 14px;
  margin-left: 40px;
  display: block;
}

@media screen and (min-width: 541px) {
  .form_catalog_wrap .wpcf7-small {
    font-size: 18px;
    margin-left: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .form_catalog_wrap .wpcf7-small {
    font-size: 14px;
    margin-left: 45px;
  }
}

.form_catalog_wrap:has(.link_green) {
  text-align: right;
}

.form_catalog_wrap:has(.link_green) .wpcf7-small {
  text-align: left;
  margin-bottom: 5px;
  margin-top: 5px;
}

.form_catalog_wrap .link_green {
  padding-right: 0;
}

.form_catalog_wrap .link_green::after {
  display: none;
}

.form_catalog_wrap .wpcf7-list-item label {
  /* display: grid;
  grid-template-columns: 1fr 99px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

/* @media screen and (min-width: 541px) {
  .form_catalog_wrap .wpcf7-list-item label {
    grid-template-columns: 1fr 150px;
  }
}

@media screen and (min-width: 769px) {
  .form_catalog_wrap .wpcf7-list-item label {
    grid-template-columns: 1fr 200px;
  }
} */

@media screen and (min-width: 1101px) {
  .form_catalog_wrap .wpcf7-list-item label {
    /* grid-template-columns: 1fr 140px; */
    gap: 30px;
  }
}

/***************************

object/object/project/_home.scss

***************************/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: #E6F8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: fadeOut 1.5s 2.5s forwards;
  animation: fadeOut 1.5s 2.5s forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  -webkit-animation: logo_fade 1s 0.5s forwards;
  animation: logo_fade 1s 0.5s forwards;
  padding: 20px;
}

@-webkit-keyframes logo_fade {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes logo_fade {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.main {
  overflow: hidden;
}

.top_mv img {
  width: 100%;
}

@media screen and (min-width: 1550px) {
  .top_mv {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
  }
}

.top-mySwiper2 {
  width: 100%;
  aspect-ratio: 970/744;
}

@media screen and (min-width: 769px) {
  .top-mySwiper2 {
    margin: 0;
  }
}

@media screen and (min-width: 1300px) {
  .top-mySwiper2 {
    aspect-ratio: 973/744;
  }
}

.top-mySwiper2 {
  width: 100%;
}

.top-mySwiper2 img {
  width: 100%;
}

.top_mv {
  display: grid;
  grid-template-areas: "itemA itemA""itemB itemC";
  gap: 40px 20px;
  align-items: flex-start;
  grid-template-columns: 120px 1fr;
}

@media screen and (min-width: 541px) {
  .top_mv {
    grid-template-areas: "itemA itemA""itemB itemC";
    gap: 60px 30px;
    grid-template-columns: 140px 1fr;
  }
}

@media screen and (min-width: 769px) {
  .top_mv {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1101px) {
  .top_mv {
    grid-template-areas: "itemA itemB""itemA itemC";
    grid-template-columns: 1fr 400px;
  }
}

@media screen and (min-width: 1300px) {
  .top_mv {
    gap: 120px 80px;
  }
}

@media screen and (min-width: 1450px) {
  .top_mv {
    align-items: flex-end;
    gap: 120px 90px;
  }
}

@media screen and (min-width: 1550px) {
  .top_mv {
    grid-template-columns: 1fr 500px;
  }
}

#itemA {
  grid-area: itemA;
}

#itemB {
  grid-area: itemB;
}

#itemC {
  grid-area: itemC;
}

@media screen and (min-width: 1300px) {
  #itemC {
    margin-bottom: -60px;
  }
}

.top-swiper_container {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}

@media screen and (min-width: 769px) {
  .top-swiper_container {
    max-width: 370px;
  }
}

@media screen and (min-width: 1101px) {
  .top-swiper_container {
    max-width: 400px;
    padding-bottom: 0;
  }
}

.top-swiper_container .swiper-slide img {
  border-radius: 4px 0 0 4px;
}

@media screen and (min-width: 1550px) {
  .top-swiper_container .swiper-slide img {
    border-radius: 4px;
  }
}

.top_title {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: center;
  width: 100%;
  max-width: 120px;
  color: #1F1F1F;
  font-size: 20px;
  letter-spacing: 0.12em;
  font-weight: 400;
}

@media screen and (min-width: 541px) {
  .top_title {
    margin-top: 50px;
    justify-content: center;
    max-width: 140px;
  }
}

@media screen and (min-width: 769px) {
  .top_title {
    max-width: 100%;
  }
}

@media screen and (min-width: 1101px) {
  .top_title {
    justify-content: center;
  }
}

.top_title span {
  writing-mode: vertical-rl;
  position: relative;
  border-right: 2px solid var(--black);
  letter-spacing: 0.12em;
}

.top_title span::after {
  content: "";
}

.top_title span .top_title_bd_last {
  border-right: none;
  letter-spacing: -2rem;
}

@media screen and (min-width: 541px) {
  .top_title {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  .top_title {
    font-size: 40px;
  }
}

.top_mv {
  position: relative;
  overflow: hidden;
}

.top_mv .top-mySwiper2 {
  position: relative;
}

.top_mv .swiper-pagination_top {
  margin-left: 15px;
  height: auto;
  font-family: var(--roboto);
  font-size: 26px;
  color: #DDDDDD;
  letter-spacing: 0.04em;
  width: auto;
}

@media screen and (min-width: 541px) {
  .top_mv .swiper-pagination_top {
    margin-left: 30px;
  }
}

@media screen and (min-width: 769px) {
  .top_mv .swiper-pagination_top {
    font-size: 20px;
    margin-left: 15px;
  }
}

.top_mv .swiper-pagination_top .swiper-pagination-current {
  font-size: 40px;
  color: var(--black);
  margin: 0 5px;
}

.top_mv .swiper-pagination_top .swiper-pagination-total {
  font-size: 26px;
  color: var(--black);
  margin: 0 5px;
}

@media screen and (min-width: 1101px) {
  .top_mv .swiper-pagination_top .swiper-pagination-total {
    font-size: 28px;
  }
}

.top_mv .autoplay-progress {
  margin-left: 30px;
}

.top_mv .top_btn_contents {
  width: 344px;
  align-items: center;
}

@media screen and (min-width: 541px) {
  .top_mv .top_btn_contents {
    margin-top: 0;
  }
}

@media screen and (min-width: 1100px) {
  .top_mv .top_btn_contents {
    margin-top: -70px;
  }
}

.top_mv .autoplay-progress {
  width: auto;
  -moz-text-align-last: left;
  text-align-last: left;
}

.top_mv .autoplay-progress .swiper-pagination-bullet {
  position: absolute;
  top: auto !important;
  bottom: 0 !important;
  left: 0;
  width: 0px;
  height: 0;
  display: inline-block;
}

.top_mv .autoplay-progress .swiper-pagination-bullet-active {
  width: 77px;
  height: 3px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: rgba(74, 71, 64, 0.2);
  border-radius: 3px;
  opacity: 1;
}

.top_mv .autoplay-progress .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 77px;
  height: 3px;
  border-radius: 3px;
  background-color: #444039;
  -webkit-animation: progressBar 3s linear forwards;
  animation: progressBar 3s linear forwards;
  transform-origin: center left;
}

@-webkit-keyframes progressBar {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes progressBar {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.top_news {
  margin-top: 80px;
}

@media screen and (min-width: 541px) {
  .top_news {
    margin-top: 100px;
  }
}

@media screen and (min-width: 769px) {
  .top_news {
    margin-top: 150px;
  }
}

@media screen and (min-width: 1101px) {
  .top_news {
    margin-top: 100px;
  }
}

.news_link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray);
  position: relative;
  padding-right: 35px;
}

@media screen and (min-width: 541px) {
  .news_link {
    padding: 40px 0;
    padding-right: 25px;
  }
}

@media screen and (min-width: 769px) {
  .news_link {
    padding: 30px 0;
    padding-right: 25px;
    flex-direction: row;
  }
}

.news_link::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(img/common/arrow_r_g.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.news_link[target=_blank]::before {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  background: url(img/common/arrow_r_blank.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.news_link .date,
.news_link .cat {
  color: #AAAAAA;
  letter-spacing: 0.08em;
  font-weight: 400;
  transition: all 0.5s;
}

.news_link .date {
  font-size: 16px;
  font-family: var(--roboto);
  padding-right: 15px;
}

@media screen and (min-width: 541px) {
  .news_link .date {
    font-size: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 769px) {
  .news_link .date {
    font-size: 16px;
    padding-right: 15px;
  }
}

.news_link .cat {
  font-size: 15px;
  padding-left: 15px;
  padding-right: 20px;
}

@media screen and (min-width: 541px) {
  .news_link .cat {
    font-size: 18px;
    padding-left: 20px;
  }
}

@media screen and (min-width: 769px) {
  .news_link .cat {
    font-size: 15px;
    padding-left: 15px;
  }
}

.news_link .data+.cat {
  border-left: 1px solid var(--gray);
}

.news_link .news_title,
.news_link .news_title_date {
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-right: 15px;
}

@media screen and (min-width: 541px) {

  .news_link .news_title,
  .news_link .news_title_date {
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {

  .news_link .news_title,
  .news_link .news_title_date {
    font-size: 16px;
  }
}

.news_link .news_title_date {
  font-family: var(--roboto);
}

.news_link:hover {
  color: var(--green);
}

.news_link:hover li {
  color: var(--green);
}

.top_works {
  margin-top: 80px;
}

@media screen and (min-width: 541px) {
  .top_works {
    margin-top: 100px;
  }
}

@media screen and (min-width: 769px) {
  .top_works {
    margin-top: 130px;
  }
}

.works_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}

@media screen and (min-width: 541px) {
  .works_list {
    gap: 20px 30px;
  }
}

@media screen and (min-width: 769px) {
  .works_list {
    gap: 0 60px;
  }
}

@media screen and (min-width: 1101px) {
  .works_list {
    gap: 0 50px;
  }
}

.works_link:hover .works_img img {
  transform: scale(1.05);
}

.works_link figure {
  position: relative;
}

.works_img {
  border-radius: 3px;
}

.works_img img {
  transition: all 0.5s;
}

.works_item {
  position: relative;
}

.works_arrow {
  padding: 10px 20px;
  /* padding-left: 20px; */
  border-left: 1px solid var(--white);
  /* margin-bottom: 20px; */

  position: absolute;
  bottom: 10px;
  right: 0;
  color: #fff;
  z-index: 5;
}



.works_arrow i {
  font-size: 20px;
}

.works_text_box {
  /* position: absolute;
  bottom: 0;
  left: 0; */
  width: 100%;
  max-width: 960px;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  align-items: flex-end;
  /* color: var(--white); */
}

.works_text_box .works_en {
  font-size: 16px;
  font-family: var(--roboto);
  letter-spacing: 0.08em;
}

@media screen and (min-width: 541px) {
  .works_text_box .works_en {
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {
  .works_text_box .works_en {
    font-size: 16px;
  }
}

.works_text_box .works_title {
  font-size: 18px;
  letter-spacing: 0.06em;
  /* font-weight: bold; */
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (min-width: 541px) {
  .works_text_box .works_title {
    font-size: 28px;
  }
   .top_works .works_item:nth-child(n+2) .works_title{
    font-weight: 400;
    font-size: 16px;
   }
}

@media screen and (min-width: 769px) {
  .works_text_box .works_title {
    font-size: 22px;    
  }
  
}

/* .works_text_unit { */
/* padding: 20px; */
/* padding-top: 0; */
/* padding-top: 10px; */
/* } */

/* @media screen and (min-width: 769px) {
  .works_text_unit {
    padding: 30px;
  }
}

@media screen and (min-width: 1101px) {
  .works_text_unit {
    padding: 20px;
  }
} */
.works_text_unit {
  margin-top: 10px;
}

@media screen and (max-width: 769px) {
  .top_works .works_item:first-child .works_text_unit {
    margin-left: 30px;
    margin-right: 30px;
  }


}


.works_img {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 420/280;
  position: relative;
}

.works_img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0.5), transparent 50%);
  position: absolute;
  top: 0;
  left: 0;
}

.works_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top_works .works_item:first-child {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

@media screen and (min-width: 769px) {
  .top_works .works_item:first-child {
    margin: 0 auto;
    max-width: 960px;
  }

  .top_works .works_item:first-child img {
    border-radius: 4px;
  }
}

.top_works .works_item:nth-child(1) {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .top_works .works_item:nth-child(1) {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .top_works .works_item:nth-child(1) {
    margin-bottom: 100px;
  }
}

.top_works .works_item:nth-child(n+2) {
  width: 100%;
  max-width: calc(50% - 5px);
}

@media screen and (min-width: 541px) {
  .top_works .works_item:nth-child(n+2) {
    max-width: calc(50% - 20px);
  }
}

@media screen and (min-width: 769px) {
  .top_works .works_item:nth-child(n+2) {
    max-width: calc(50% - 30px);
  }
}

@media screen and (min-width: 1101px) {
  .top_works .works_item:nth-child(n+2) {
    max-width: calc(33.3333333333% - 35px);
  }
}

/* .top_works .works_item:nth-child(n+2) .works_text_unit {
  display: none;
} */

/* .top_works .works_item:nth-child(n+2) .works_text_box {
  justify-content: flex-end;
} */
/* .top_works .works_item:nth-child(n+2) .works_arrow {
  border-left: none;
  padding-right: 15px;
} */

.top_works .works_item:nth-child(n+2) .works_img img {
  border-radius: 3px;
}

.top_works .works_item:nth-child(3),
.top_works .works_item:nth-child(5),
.top_works .works_item:nth-child(7),
.top_works .works_item:nth-child(9) {
  margin-top: 20px;
}

@media screen and (min-width: 769px) {

  .top_works .works_item:nth-child(3),
  .top_works .works_item:nth-child(4),
  .top_works .works_item:nth-child(5),
  .top_works .works_item:nth-child(6),
  .top_works .works_item:nth-child(7) {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1101px) {

  .top_works .works_item:nth-child(3),
  .top_works .works_item:nth-child(4),
  .top_works .works_item:nth-child(5),
  .top_works .works_item:nth-child(6),
  .top_works .works_item:nth-child(7) {
    margin-top: 40px;
  }
}

@media screen and (min-width: 769px) {

  .top_works .works_item:nth-child(4),
  .top_works .works_item:nth-child(6) {
    margin-top: 0;
  }
}

@media screen and (min-width: 1101px) {
  .top_works .works_item:nth-child(6) {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1101px) {
  .top_works .works_item:nth-child(4) {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1101px) {
  .top_works .works_item:nth-child(7) {
    margin-top: 120px;
  }


  .top_works .works_item:nth-child(n+2) .works_title {
    font-size: 17px;
    font-weight: 400;
  }
}

@media screen and (max-width: 540px) {
  /* .top_works .works_item:nth-child(n+2) .works_text_unit {
    padding: 10px;
  } */

  .top_works .works_item:nth-child(n+2) .works_en {
    font-size: 10px;
  }

  .top_works .works_item:nth-child(n+2) .works_title {
    font-size: 11px;
     font-weight: 400;
  }

  .top_works .works_item:nth-child(n+2) .works_arrow {
    padding: 5px 10px;
    /* margin-bottom: 10px;
    padding-right: 4px; */
  }
.works_text_unit{
  margin-top: 10px;
}
  .top_works .works_item:nth-child(n+2) .works_arrow i {
    font-size: 16px;
  }
}

.mySwiper_interview_container {
  position: relative;
}

.mySwiper_interview_container .swiper-interview-pagination {
  position: absolute;
  top: -70px;
  right: 0;
  z-index: 5;
  left: auto;
  text-align: right;
}

@media screen and (min-width: 541px) {
  .mySwiper_interview_container .swiper-interview-pagination {
    top: -40px;
  }
}

@media screen and (min-width: 769px) {
  .mySwiper_interview_container .swiper-interview-pagination {
    top: -120px;
  }
}

@media screen and (min-width: 1101px) {
  .mySwiper_interview_container .swiper-interview-pagination {
    top: -90px;
  }
}

.mySwiper_interview_container .swiper-interview-pagination .swiper-pagination-bullet-active {
  background: #4A463F;
}

.mySwiper_model_container {
  position: relative;
}

.mySwiper_model_container .swiper-model-pagination {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: 5;
  left: auto;
  text-align: right;
}

@media screen and (min-width: 700px) {
  .mySwiper_model_container .swiper-model-pagination {
    top: -120px;
  }
}

@media screen and (min-width: 800px) {
  .mySwiper_model_container .swiper-model-pagination {
    top: -90px;
  }
}

.mySwiper_model_container .swiper-model-pagination .swiper-pagination-bullet-active {
  background: #4A463F;
}

.top_interview {
  margin-top: 80px;
}

@media screen and (min-width: 541px) {
  .top_interview {
    margin-top: 100px;
  }
}

@media screen and (min-width: 769px) {
  .top_interview {
    margin-top: 130px;
  }
}

.top_interview .title02_wrap {
  margin-bottom: 60px;
}

@media screen and (min-width: 541px) {
  .top_interview .title02_wrap {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 769px) {
  .top_interview .title02_wrap {
    margin-bottom: 40px;
  }
}

.mySwiper_interview,
.mySwiper_model {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 10;
}

.list_item01_link:hover .list_item01_img img {
  transform: scale(1.05);
}

.list_item01_figure {
  width: 100%;
}

.list_item01_img {
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 424/287;
}

.list_item01_img img {
  border-radius: 3px;
  transition: all 0.5s;
  width: 100%;
}

.bd-b {
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

@media screen and (min-width: 541px) {
  .bd-b {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .bd-b {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.list_item01_figcaption {
  padding-top: 10px;
}

@media screen and (min-width: 541px) {
  .list_item01_figcaption {
    padding-top: 15px;
  }
}

@media screen and (min-width: 769px) {
  .list_item01_figcaption {
    padding-top: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .list_item01_figcaption {
    padding-top: 20px;
  }
}

.list_item01_title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 541px) {
  .list_item01_title {
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  .list_item01_title {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .list_item01_title {
    font-size: 16px;
  }
}

.list_item01_sub_box {
  gap: 5px;
}

.list_item01_text.bd-r {
  border-right: 1px solid #AAAAAA;
  padding-right: 10px;
  margin-right: 10px;
}

.list_item01_text {
  color: #AAAAAA;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 541px) {
  .list_item01_text {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) {
  .list_item01_text {
    font-size: 12px;
  }
}

.list_item01_text:has(span) {
  display: flex;
  flex-wrap: wrap;
}

.list_item01_btn {
  border-left: 1px solid #EEEEEE;
  padding-left: 10px;
}

@media screen and (min-width: 541px) {
  .list_item01_btn {
    padding-left: 20px;
  }
}

.list_item01_btn i {
  color: var(--green);
  font-weight: 500;
  font-size: 20px;
}

.top_concept {
  margin-top: 100px;
}

@media screen and (min-width: 541px) {
  .top_concept {
    margin-top: 140px;
  }
}

@media screen and (min-width: 769px) {
  .top_concept {
    margin-top: 130px;
  }
}

.line_title {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: flex-start;
  font-size: 28px;
  letter-spacing: 0.12em;
  font-weight: 400;
}

@media screen and (min-width: 541px) {
  .line_title {
    max-width: 207px;
    margin-left: auto;
    justify-content: center;
  }
}

@media screen and (min-width: 769px) {
  .line_title {
    margin-top: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .line_title {
    max-width: 500px;
  }
}

.line_title span {
  writing-mode: vertical-rl;
  position: relative;
  border-right: 2px solid var(--black);
  letter-spacing: 0.12em;
}

.line_title span::after {
  content: "";
}

.line_title span .top_title_bd_last {
  border-right: none;
  letter-spacing: -2rem;
}

@media screen and (min-width: 769px) {
  .line_title {
    font-size: 36px;
  }
}

.top_concept_text {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 80px;
  margin-left: auto;
  width: 100%;
  max-width: 400px;
}

@media screen and (min-width: 541px) {
  .top_concept_text {
    font-size: 24px;
    margin-top: 150px;
  }
}

@media screen and (min-width: 769px) {
  .top_concept_text {
    font-size: 16px;
  }
}

@media screen and (min-width: 1101px) {
  .top_concept_text {
    margin-top: 60px;
  }
}

.top_concept_box {
  position: relative;
}

.top_concept_box::before {
  content: "";
  background: url(img/top/concept_img.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left -60px top;
  width: calc(100% - 80px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 541px) {
  .top_concept_box::before {
    width: calc(100% - 207px);
  }
}

@media screen and (min-width: 1101px) {
  .top_concept_box::before {
    width: 80%;
    background-position: left top;
    background-position: left -30px top;
  }
}

@media screen and (min-width: 1200px) {
  .top_concept_box::before {
    width: 100%;
    background-size: contain;
  }
}

@media screen and (min-width: 1300px) {
  .top_concept_box::before {
    width: calc(100% - 700px);
    height: 120%;
    background-size: contain;
    background-position: left top;
  }
}

@media screen and (min-width: 1500px) {
  .top_concept_box::before {
    width: 100%;
    max-width: calc(100% - 700px);
    background-position: top left 60%;
  }
}

@media screen and (min-width: 1101px) {
  .top_concept_box .container_l {
    display: flex;
    justify-content: flex-end;
  }

  .top_concept_box .container_l .top_concept_text_box {
    max-width: 50%;
  }
}

@media screen and (min-width: 1300px) {
  .top_concept_box .container_l {
    max-width: 70%;
  }

  .top_concept_box .container_l .top_concept_text_box {
    max-width: 100%;
  }
}

@media screen and (min-width: 1101px) {
  .top_concept_text_box {
    max-width: 400px;
  }
}

.top_lineup {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 100px;
}

@media screen and (min-width: 541px) {
  .top_lineup {
    padding-top: 150px;
    padding-bottom: 150px;
    margin-top: 110px;
  }
}

@media screen and (min-width: 1101px) {
  .top_lineup {
    padding-top: 130px;
    padding-bottom: 130px;
    margin-top: 130px;
  }
}

@media screen and (min-width: 1300px) {
  .top_lineup {
    margin-top: 200px;
  }
}

@media screen and (min-width: 1800px) {
  .top_lineup {
    margin-top: 400px;
  }
}

.top_lineup::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/top/lineup_top_pc.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  position: absolute;
  top: -1px;
  right: 0;
  pointer-events: none;
}

.top_lineup::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/top/lineup_bottom_pc.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom center;
  position: absolute;
  bottom: -1px;
  right: 0;
  pointer-events: none;
}

.top_lineup .title02 {
  color: var(--white);
}

.top_lineup .btn02 {
  color: var(--white);
}

.swiper-pagination_lineup {
  text-align: center;
  margin-top: 40px;
}

.swiper-pagination_lineup .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination_lineup .swiper-pagination-bullet-active {
  background: var(--white);
}

.lineup-thum-wrap {
  position: relative;
  padding-top: 50px;
}

.lineup-thum-mySwiper {
  z-index: 5;
}

.lineup-thum-mySwiper .swiper-slide {
  z-index: 1;
}

.lineup-thum-mySwiper .swiper-slide::before {
  transition: all 0.5s;
  opacity: 0;
}

.lineup-thum-mySwiper .lineup_img {
  padding: 10px;
  width: 100%;
  text-align: center;
}

.lineup-thum-mySwiper .lineup_img img {
  width: 100%;
  border-radius: 3px;
}

@media screen and (min-width: 541px) {
  .lineup-thum-mySwiper .lineup_img {
    padding: 20px;
  }
}

@media screen and (min-width: 769px) {
  .lineup-thum-mySwiper .lineup_img {
    padding: 30px;
  }
}

@media screen and (min-width: 1101px) {
  .lineup-thum-mySwiper .lineup_img {
    padding: 20px;
  }
}

.lineup-thum-mySwiper .swiper-slide {
  margin-top: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.6s;
}

.lineup-thum-mySwiper .swiper-slide.swiper-slide-thumb-active::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: -1;
}

.lineup-thum-mySwiper .swiper-slide.swiper-slide-thumb-active::after {
  content: "";
  width: 41px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

.lineup-mySwiper {
  width: 100%;
  max-width: 764px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 1101px) {
  .lineup-mySwiper {
    max-width: 960px;
  }
}

.lineup-mySwiper .lineup_title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-top: 10px;
}

@media screen and (min-width: 541px) {
  .lineup-mySwiper .lineup_title {
    font-size: 22px;
    margin-top: 10px;
  }
}

@media screen and (min-width: 1101px) {
  .lineup-mySwiper .lineup_title {
    font-size: 14px;
    margin-top: 20px;
  }
}

.lineup-mySwiper .lineup_title span {
  font-family: var(--zain);
  letter-spacing: 0.04em;
  font-weight: bold;
  font-size: 36px;
}

@media screen and (min-width: 541px) {
  .lineup-mySwiper .lineup_title span {
    font-size: 48px;
  }
}

@media screen and (min-width: 1101px) {
  .lineup-mySwiper .lineup_title span {
    font-size: 36px;
  }
}

.lineup-mySwiper .lineup_text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
}

@media screen and (min-width: 541px) {
  .lineup-mySwiper .lineup_text {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .lineup-mySwiper .lineup_text {
    font-size: 16px;
  }
}

.lineup-mySwiper .lineup_text i {
  font-size: 20px;
}

.lineup-mySwiper .lineup-main_link {
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 20px;
  display: block;
}

@media screen and (min-width: 541px) {
  .lineup-mySwiper .lineup-main_link {
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .lineup-mySwiper .lineup-main_link {
    padding-bottom: 20px;
  }
}

.lineup-mySwiper .lineup-main_link .lineup_img {
  overflow: hidden;
  border-radius: 7px;
}

.lineup-mySwiper .lineup-main_link .lineup_img img {
  transition: all 0.5s;
}

.lineup-mySwiper .lineup-main_link:hover {
  opacity: 1;
}

.lineup-mySwiper .lineup-main_link:hover .lineup_img img {
  transform: scale(1.05);
}

.lineup-bg-mySwiper {
  width: 100%;
  height: 100%;
}

.lineup-bg-mySwiper::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.lineup-bg-mySwiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.lineup-bg-mySwiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top_model {
  margin-top: 100px;
}

@media screen and (min-width: 541px) {
  .top_model {
    margin-top: 130px;
  }
}

@media screen and (min-width: 769px) {
  .top_model {
    margin-top: 120px;
  }
}

.top_model .title02_wrap {
  margin-bottom: 40px;
}

@media screen and (min-width: 541px) {
  .top_model .title02_wrap {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 769px) {
  .top_model .title02_wrap {
    margin-bottom: 40px;
  }
}

.top_land {
  margin-top: 80px;
}

@media screen and (min-width: 541px) {
  .top_land {
    margin-top: 100px;
  }
}

@media screen and (min-width: 769px) {
  .top_land {
    margin-top: 130px;
  }
}

.land_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media screen and (min-width: 541px) {
  .land_list {
    gap: 20px;
  }
}

@media screen and (min-width: 769px) {
  .land_list {
    gap: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .land_list {
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.land_list .list_item01_img {
  border: 1px solid #DDDDDD;
}

.land_item {
  width: 100%;
}

.top_reform {
  padding: 80px 0;
  margin-top: 80px;
  margin-bottom: 80px;
  background: url(img/top/reform_bg.jpg);
}

@media screen and (min-width: 541px) {
  .top_reform {
    padding: 100px 0;
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 769px) {
  .top_reform {
    padding: 110px 0 90px;
    margin-top: 100px;
    margin-bottom: 110px;
  }
}

@media screen and (min-width: 1101px) {
  .top_reform {
    padding: 100px 0;
    margin-top: 120px;
    margin-bottom: 110px;
    border-radius: 0 3px 3px 0;
    margin-right: 10%;
  }
}

.top_reform_img {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  text-align: right;
  position: relative;
}

@media screen and (min-width: 1101px) {
  .top_reform_img {
    width: 60vw;
    margin-right: calc(50% - 50vw);
  }
}

.top_reform_img::before {
  content: "";
  background: url(img/top/ico_reform.png);
  width: 180px;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  position: absolute;
  bottom: -40px;
  right: 45px;
  z-index: 3;
}

@media screen and (min-width: 541px) {
  .top_reform_img::before {
    width: 274px;
    right: 60px;
  }
}

@media screen and (min-width: 1100px) {
  .top_reform_img::before {
    width: 200px;
    right: 200px;
  }
}

@media screen and (min-width: 1500px) {
  .top_reform_img::before {
    width: 250px;
    right: 80px;
  }
}

#reform_item01 {
  grid-area: item01;
}

#reform_item01 .title02_wrap {
  color: #443F39;
}

@media screen and (min-width: 1101px) {
  #reform_item01 {
    display: flex;
    align-items: flex-end;
    max-width: 500px;
  }

  #reform_item01 .title02_img {
    width: calc(100vw + 430px);
  }
}

#reform_item02 {
  grid-area: item02;
}

@media screen and (min-width: 1101px) {
  #reform_item02 {
    max-width: 500px;
  }
}

#reform_item03 {
  grid-area: item03;
}

@media screen and (min-width: 1101px) {
  #reform_item03 img {
    width: 100%;
  }
}

.top_reform_wrap {
  display: grid;
  grid-template-areas: "item01""item03""item02";
}

@media screen and (min-width: 1101px) {
  .top_reform_wrap {
    grid-template-areas: "item01 item03""item02 item03";
    grid-template-columns: 600px 1fr;
  }
}

.top_reform_wrap p {
  color: #4A463F;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 70px;
}

@media screen and (min-width: 1101px) {
  .top_reform_wrap p {
    margin-top: 0;
  }
}

.btn02_wrap {
  text-align: right;
  margin-top: 30px;
}

@media screen and (min-width: 541px) {
  .btn02_wrap {
    margin-top: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .btn02_wrap {
    text-align: left;
    margin-top: 30px;
  }
}

.swiper-wrapper {
  transition-timing-function: linear;
}

/***************************

下層mv

***************************/
.page_mv {
  margin-top: 120px;
  border-bottom: 2px solid #EEEEEE;
  padding-bottom: 60px;
  margin-bottom: 80px;
}

@media screen and (min-width: 541px) {
  .page_mv {
    margin-top: 120px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 769px) {
  .page_mv {
    margin-top: 150px;
    padding-bottom: 100px;
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 1101px) {
  .page_mv {
    margin-top: 120px;
    padding-bottom: 100px;
  }
}

.page_mv.type02 {
  margin-bottom: 0;
  padding-bottom: 60px;
  border-bottom: none;
}

@media screen and (min-width: 541px) {
  .page_mv.type02 {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1101px) {
  .page_mv.type02 {
    padding-bottom: 60px;
  }
}

.page_lead_text {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-top: 25px;
}

@media screen and (min-width: 541px) {
  .page_lead_text {
    font-size: 24px;
    margin-top: 70px;
  }
}

@media screen and (min-width: 1101px) {
  .page_lead_text {
    font-size: 16px;
    margin-top: 40px;
  }
}

.sec_last {
  margin-bottom: 80px;
}

@media screen and (min-width: 541px) {
  .sec_last {
    margin-bottom: 150px;
  }
}

@media screen and (min-width: 1101px) {
  .sec_last {
    margin-bottom: 100px;
  }
}

.sec_first {
  margin-top: 60px;
}

@media screen and (min-width: 541px) {
  .sec_first {
    margin-top: 80px;
  }
}

@media screen and (min-width: 769px) {
  .sec_first {
    margin-top: 130px;
  }
}

@media screen and (min-width: 1101px) {
  .sec_first {
    margin-top: 100px;
  }
}

.sec_first:has(.title04_wrap) {
  position: relative;
}

.sec_first:has(.title04_wrap)::before {
  content: "";
  background: linear-gradient(#fff 50%, transparent 50%);
  width: 100%;
  height: 60px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/***************************

object/object/project/_news.scss

***************************/
.cat_list {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 40px;
}

@media screen and (min-width: 541px) {
  .cat_list {
    gap: 40px;
    margin-bottom: 70px;
  }
}

@media screen and (min-width: 769px) {
  .cat_list {
    gap: 20px;
    margin-bottom: 40px;
  }
}

.cat_list a {
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 8px;
}

@media screen and (min-width: 541px) {
  .cat_list a {
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {
  .cat_list a {
    font-size: 16px;
  }
}

.cat_list a:hover {
  color: var(--green);
}

.cat_list .current a {
  font-weight: bold;
  text-decoration: none;
}

.news_detail_contents {
  padding-bottom: 80px;
}

@media screen and (min-width: 541px) {
  .news_detail_contents {
    padding-bottom: 100px;
  }
}

.news_detail_contents p {
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 400;
}

@media screen and (min-width: 541px) {
  .news_detail_contents p {
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {
  .news_detail_contents p {
    font-size: 16px;
  }
}

.news_detail_contents a {
  color: var(--green);
  border-bottom: 1px solid var(--green);
  position: relative;
  letter-spacing: 0.06em;
}

.news_detail_contents a:hover {
  opacity: 0.6;
}

.news_detail_contents a[target=_blank] {
  padding-right: 20px;
}

.news_detail_contents a[target=_blank]::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(img/common/arrow_r_blank.png);
  position: absolute;
  bottom: 5px;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.back_wrap {
  border-top: 1px solid #EEEEEE;
  padding-top: 40px;
}

@media screen and (min-width: 541px) {
  .back_wrap {
    padding-top: 60px;
  }
}

/***************************

object/object/project/_interview.scss

***************************/
.contents_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

@media screen and (min-width: 769px) {
  .contents_list {
    gap: 50px 30px;
  }
}

@media screen and (min-width: 1200px) {
  .contents_list {
    justify-content: flex-start;
  }

  .contents_list .list_item01 {
    max-width: calc(33.3333333333% - 20px);
  }
}

.contents_list .list_item01_title {
  font-size: 18px;
}

@media screen and (min-width: 541px) {
  .contents_list .list_item01_title {
    font-size: 20px;
  }
}

@media screen and (min-width: 769px) {
  .contents_list .list_item01_title {
    font-size: 28px;
  }
}

@media screen and (min-width: 1101px) {
  .contents_list .list_item01_title {
    font-size: 20px;
  }
}

.interview .list_item01_text {
  font-size: 14px;
}

@media screen and (min-width: 541px) {
  .interview .list_item01_text {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .interview .list_item01_text {
    font-size: 14px;
  }
}

.cat.--type02 {
  font-size: 16px;
  color: #443F39;
  background: #F7F5F2;
  border-radius: 3px;
  display: inline-block;
  padding: 1px 10px;
}

@media screen and (min-width: 541px) {
  .cat.--type02 {
    font-size: 18px;
  }
}

@media screen and (min-width: 1101px) {
  .cat.--type02 {
    font-size: 16px;
  }
}

.list_item01_text.cat.--type02 {
  border: none;
}

.interview_detail p {
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 14px;
  line-height: 1.7;
}

@media screen and (min-width: 541px) {
  .interview_detail p {
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  .interview_detail p {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .interview_detail p {
    font-size: 16px;
  }
}

.interview_detail .small {
  font-size: 14px;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 769px) {
  .interview_detail .small {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .interview_detail .small {
    font-size: 14px;
  }
}

.page_main_img {
  width: 100%;
  text-align: center;
}

.page_main_img img {
  width: 100%;
  max-width: 900px;
  -o-object-fit: cover;
  object-fit: cover;
}

.interview_text_box {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media screen and (min-width: 541px) {
  .interview_text_box {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 769px) {
  .interview_text_box {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.box_type01 {
  background: #F7F5F2;
  padding: 20px;
  margin-top: 40px;
}

@media screen and (min-width: 541px) {
  .box_type01 {
    padding: 40px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 769px) {
  .box_type01 {
    display: inline-block;
  }
}

.interview_neme span {
  margin-right: 20px;
}

.interview_img {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
}

.interview_detail_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 80px;
}

@media screen and (min-width: 541px) {
  .interview_detail_list {
    gap: 60px;
    margin-top: 40px;
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 1101px) {
  .interview_detail_list {
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
  }
}

.interview_detail_neme {
  font-size: 14px;
  color: #AAAAAA;
  margin-bottom: 5px;
}

@media screen and (min-width: 541px) {
  .interview_detail_neme {
    font-size: 18px;
  }
}

@media screen and (min-width: 1101px) {
  .interview_detail_neme {
    font-size: 14px;
  }
}

.interview_detail02 {
  padding: 60px 0;
}

@media screen and (min-width: 541px) {
  .interview_detail02 {
    padding: 80px 0;
  }
}

@media screen and (min-width: 1101px) {
  .interview_detail02 {
    padding: 60px 0;
  }
}

.interview_detail03 {
  padding: 60px 0;
}

@media screen and (min-width: 541px) {
  .interview_detail03 {
    padding: 80px 0;
  }
}

@media screen and (min-width: 1101px) {
  .interview_detail03 {
    padding: 60px 0;
  }
}

.list_type02_list {
  display: grid;
  grid-template-columns: 100px 1fr;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 16px;
  padding: 20px 0;
  border-top: 2px solid #DDDDDD;
}

.list_type02_list:last-child {
  border-bottom: 2px solid #DDDDDD;
}

@media screen and (min-width: 541px) {
  .list_type02_list {
    font-size: 24px;
    grid-template-columns: 140px 1fr;
  }
}

@media screen and (min-width: 1101px) {
  .list_type02_list {
    font-size: 16px;
  }
}

.ohter_interview {
  padding-bottom: 80px;
  padding-top: 80px;
}

.ohter_interview .title02_wrap {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .ohter_interview .title02_wrap {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 541px) {
  .ohter_interview .title02 {
    font-size: 36px;
  }

  .ohter_interview .title02 .en {
    font-size: 20px;
  }
}

@media screen and (min-width: 541px) {
  .ohter_interview {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}

@media screen and (min-width: 1101px) {
  .ohter_interview {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}

.banner_box {
  display: block;
  color: var(--white);
  margin: 0 auto;
  margin-top: 80px;
  width: 100%;
  max-width: 710px;
}

@media screen and (min-width: 541px) {
  .banner_box {
    margin-top: 120px;
  }
}

@media screen and (min-width: 1101px) {
  .banner_box {
    margin-top: 100px;
  }
}

.banner_box p {
  font-size: 14px;
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .banner_box p {
    font-size: 24px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .banner_box p {
    font-size: 20px;
  }
}

.banner_box .banner_title {
  /* font-family: var(--zain); */
  letter-spacing: 0.08em;
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 0;
  line-height: 1;
}

.banner_box .banner_title img {
  width: 40px;
}

@media screen and (min-width: 769px) {
  .banner_box .banner_title {
    font-size: 60px;
  }
}

.banner_box.--catalog {
  background: url(img/common/bnr_bg_catalog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 35px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 541px) {
  .banner_box.--catalog {
    padding: 20px;
  }
}

.banner_box.--catalog .banner_box_img {
  width: 100%;
  max-width: 100px;
}

@media screen and (min-width: 541px) {
  .banner_box.--catalog .banner_box_img {
    max-width: 150px;
  }
}

@media screen and (min-width: 769px) {
  .banner_box.--catalog .banner_box_img {
    max-width: 270px;
  }
}

@media screen and (min-width: 769px) {
  .banner_box.--catalog .banner_box_textbox {
    width: 100%;
    max-width: 385px;
  }
}

.banner_box:hover {
  color: var(--white);
}

.banner_box.--reserve {
  background: url(img/common/bnr_bg_reserve.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 40px 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 541px) {
  .banner_box.--reserve {
    padding: 80px 20px;
  }
}

.banner_box.--reserve .banner_box_textbox {
  color: var(--black);
}

@media screen and (min-width: 769px) {
  .banner_box.--reserve .banner_box_textbox {
    width: 100%;
    max-width: 320px;
  }
}

.banner_box.--land-reserve {
  background: url(img/common/bnr_bg_land_reserve.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 40px 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 541px) {
  .banner_box.--land-reserve {
    padding: 80px 20px;
  }
}

.banner_box.--land-reserve .banner_box_textbox {
  color: var(--white);
  width: 100%;
  max-width: 50%;
}

/***************************

object/object/project/_works.scss

***************************/
.works .works_list {
  gap: 30px;
}

@media screen and (min-width: 541px) {
  .works .works_list {
    gap: 60px;
  }
}

@media screen and (min-width: 769px) {
  .works .works_list {
    gap: 90px 60px;
  }
}

@media screen and (min-width: 1101px) {
  .works .works_list {
    gap: 50px 30px;
    justify-content: flex-start;
  }
}

.works .works_item {
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 970px) {
  .works .works_item {
    max-width: calc(50% - 30px);
  }
}

@media screen and (min-width: 1101px) {
  .works .works_item {
    max-width: calc(33.3333333333% - 40px);
  }
}

.works .works_img::after {
  background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.3) 100%);
}

.works .works_en {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 600px) {
  .works .works_en {
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {
  .works .works_en {
    font-size: 16px;
  }
}

.works .works_title {
  font-size: 18px;
  /* font-weight: bold; */
  font-weight: 400;
  letter-spacing: 0.06em;
  border-right: none;
}

@media screen and (min-width: 600px) {
  .works .works_title {
    font-size: 28px;
  }
}

@media screen and (min-width: 970px) {
  .works .works_title {
    font-size: 20px;
  }
}

.img_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media screen and (min-width: 769px) {
  .img_list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

.img_list li::before {
  display: none;
}

.img_item {
  width: 100%;
  aspect-ratio: 433/289;
  overflow: hidden;
}



.img_item img {
  width: 100%;
  transition: all 0.5s;
}

.img_item:hover img {
  transform: scale(1.08);
}

.works_detail03 {
  padding-bottom: 80px;
}

.gallery_btn {
  color: var(--green);
  font-weight: bold;
  font-family: var(--zain);
  text-decoration: underline;
  text-underline-offset: 8px;
  margin-top: 20px;
  font-size: 24px;
}

.gallery_btn i {
  font-weight: 400;
}

@media screen and (min-width: 541px) {
  .gallery_btn {
    font-size: 32px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .gallery_btn {
    font-size: 24px;
    margin-top: 30px;
  }
}

.js-btn-close {
  display: none;
}

.detail_contents p {
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 400;
}

@media screen and (min-width: 541px) {
  .detail_contents p {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .detail_contents p {
    font-size: 16px;
  }
}

.detail_contents.--interview a {
  color: var(--green);
  border-bottom: 1px solid var(--green);
  position: relative;
}

.detail_contents.--interview a:hover {
  opacity: 0.6;
}

.detail_contents.--interview a[target=_blank] {
  padding-right: 20px;
}

.detail_contents.--interview a[target=_blank]::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(img/common/arrow_r_blank.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.detail_contents.--works a {
  color: var(--green);
  border-bottom: 1px solid var(--green);
  position: relative;
  letter-spacing: 0.06em;
}

.detail_contents.--works a:hover {
  opacity: 0.6;
}

.detail_contents.--works a[target=_blank] {
  padding-right: 20px;
}

.detail_contents.--works a[target=_blank]::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(img/common/arrow_r_blank.png);
  position: absolute;
  bottom: 5px;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.detail_contents_box {
  text-align: center;
}

.detail_contents_box h3 {
  text-align: left;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (min-width: 541px) {
  .detail_contents_box h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .detail_contents_box h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.detail_contents_box p {
  text-align: left;
}

.detail_contents_box img {
  width: 100%;
  max-width: 670px;
}

.map {
  margin-bottom: 50px;
  position: relative;
  width: 100%;
  padding-top: 100%;
  height: 0;
}

@media screen and (min-width: 769px) {
  .map {
    padding-top: 56.25%;
  }
}

@media screen and (min-width: 1101px) {
  .map {
    padding-top: 46.25%;
  }
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.deco {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
}

.deco:last-child {
  padding-bottom: 0;
}

@media screen and (min-width: 541px) {
  .deco {
    font-size: 24px;
    gap: 15px;
  }
}

@media screen and (min-width: 1101px) {
  .deco {
    font-size: 16px;
    gap: 10px;
  }
}

.deco::before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background: var(--black);
  border-radius: 50%;
}

@media screen and (min-width: 541px) {
  .deco::before {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .deco::before {
    width: 15px;
    height: 15px;
  }
}

.deco.green::before {
  background: var(--green);
}

.deco.small {
  grid-template-columns: 13px 1fr;
}

.deco.small::before {
  width: 12px;
  height: 12px;
}

/***************************

object/object/project/_land.scss

***************************/
.search_box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 80px;
}

@media screen and (min-width: 541px) {
  .search_box {
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 1101px) {
  .search_box {
    flex-direction: row;
    margin-bottom: 80px;
  }
}

.search_list {
  padding: 20px;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 541px) {
  .search_list {
    padding: 30px;
  }
}

.search_title {
  writing-mode: vertical-rl;
}

.search_contents_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.search_contents_list a {
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 8px;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 541px) {
  .search_contents_list a {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .search_contents_list a {
    font-size: 18px;
  }
}

.search_contents_list .active a {
  font-weight: bold;
  text-decoration: none;
}

.land .list_item01_text.--type02 {
  margin-right: 10px;
}

.land_price {
  font-size: 14px;
  margin-top: 10px;
}

@media screen and (min-width: 541px) {
  .land_price {
    font-size: 18px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .land_price {
    font-size: 14px;
    margin-top: 10px;
  }
}

.land_price span {
  font-family: var(--zain);
  font-size: 24px;
}

@media screen and (min-width: 541px) {
  .land_price span {
    font-size: 34px;
  }
}

@media screen and (min-width: 1101px) {
  .land_price span {
    font-size: 24px;
  }
}

.land_subtext {
  font-size: 14px;
}

@media screen and (min-width: 541px) {
  .land_subtext {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .land_subtext {
    font-size: 16px;
  }
}

.list_type03 {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .list_type03 {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type03 {
    margin-bottom: 30px;
  }
}

.list_type03_list {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 15px;
  padding: 10px 0;
}

@media screen and (min-width: 769px) {
  .list_type03_list {
    padding: 20px 0;
  }
}

@media screen and (min-width: 1101px) {
  .list_type03_list {
    padding: 10px 0;
  }
}

.list_type03_list:first-child {
  padding-top: 0;
}

.list_type03_list:last-child {
  padding-bottom: 0;
}

.list_type03_list::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.list_type03_dt,
.list_type03_dd {
  background: var(--white);
  position: relative;
  z-index: 5;
  font-size: 15px;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 769px) {

  .list_type03_dt,
  .list_type03_dd {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {

  .list_type03_dt,
  .list_type03_dd {
    font-size: 16px;
  }
}

.list_type03_dt {
  padding-right: 5px;
}

.list_type03_dd {
  padding-left: 5px;
}

.land_detail .back_wrap {
  border-top: none;
}

/***************************

object/object/project/_model.scss

***************************/
.model .list_item01_title {
  margin-top: 20px;
}

@media screen and (min-width: 1101px) {
  .model .list_item01_title {
    margin-top: 10px;
  }
}

.detail_contents.--model ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 541px) {
  .detail_contents.--model ul {
    gap: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .detail_contents.--model ul {
    gap: 10px;
  }
}

.detail_contents.--model li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 541px) {
  .detail_contents.--model li {
    font-size: 24px;
    gap: 15px;
  }
}

@media screen and (min-width: 1101px) {
  .detail_contents.--model li {
    font-size: 16px;
    gap: 10px;
  }
}

.detail_contents.--model li::before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background: var(--green);
  border-radius: 50%;
}

@media screen and (min-width: 541px) {
  .detail_contents.--model li::before {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .detail_contents.--model li::before {
    width: 15px;
    height: 15px;
  }
}

/***************************

object/object/project/_company.scss

***************************/
.greeting_img {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  /* margin-bottom: 30px; */
  padding: 0 20px;
}

/* @media screen and (min-width: 541px) {
  .greeting_img {
    margin-bottom: 60px;
    padding: 0;
  }
}

@media screen and (min-width: 769px) {
  .greeting_img {
    margin-bottom: 40px;
  }
} */

.greeting_name {
  /* text-align: right; */
  letter-spacing: 0.06em;
  margin-top: 30px;
  font-size: 16px;
}

.greeting_name span {
  font-size: 20px;
  margin-left: 20px;
}

@media screen and (min-width: 541px) {
  .greeting_name {
    margin-top: 50px;
    font-size: 20px;
  }

  .greeting_name span {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  .greeting_name {
    margin-top: 30px;
    font-size: 16px;
  }

  .greeting_name span {
    font-size: 20px;
  }
}

/***************************

object/object/project/_recruit.scss

***************************/
.recruit01_bg {
  position: relative;
  padding-top: 80px;
}

.recruit01_bg::before {
  content: "";
  background: url(img/recruit/deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (min-width: 541px) {
  .recruit01_bg {
    padding-top: 130px;
  }
}

@media screen and (min-width: 1101px) {
  .recruit01_bg {
    padding-top: 100px;
  }
}

.recruit01_title {
  letter-spacing: 0.04em;
  font-weight: 400;
  padding-bottom: 40px;
  line-height: 1.6;
  font-size: 30px;
}

@media screen and (min-width: 541px) {
  .recruit01_title {
    padding-bottom: 60px;
    font-size: 48px;
  }
}

@media screen and (min-width: 1101px) {
  .recruit01_title {
    padding-bottom: 40px;
    font-size: 38px;
  }
}

.about_box_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

@media screen and (min-width: 541px) {
  .about_box_list {
    gap: 80px;
  }
}

@media screen and (min-width: 769px) {
  .about_box_list {
    gap: 100px;
  }
}

@media screen and (min-width: 1101px) {
  .about_box_list {
    gap: 80px 30px;
  }
}

.about_box {
  width: 100%;
  max-width: 600px;
}

@media screen and (min-width: 1101px) {
  .about_box {
    max-width: calc(33.3333333333% - 20px);
  }
}

.about_img {
  margin: 0 auto;
  width: 100%;
  max-width: 670px;
}

.recruit03 .mySwiper_interview_container {
  margin-top: 40px;
}

@media screen and (min-width: 541px) {
  .recruit03 .mySwiper_interview_container {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1101px) {
  .recruit03 .mySwiper_interview_container {
    margin-top: 60px;
  }
}

.recruit03 .swiper-interview-pagination {
  top: -170px;
}

@media screen and (min-width: 541px) {
  .recruit03 .swiper-interview-pagination {
    top: -220px;
  }
}

@media screen and (min-width: 769px) {
  .recruit03 .swiper-interview-pagination {
    top: -280px;
  }
}

@media screen and (min-width: 1101px) {
  .recruit03 .swiper-interview-pagination {
    top: -280px;
  }
}

.recruit03 .t-right:has(.btn02) {
  margin-top: 40px;
}

@media screen and (min-width: 541px) {
  .recruit03 .t-right:has(.btn02) {
    margin-top: 60px;
  }
}

@media screen and (min-width: 769px) {
  .recruit03 .t-right:has(.btn02) {
    margin-top: 40px;
  }
}

.recruit04 .swiper-job-pagination {
  text-align: right;
  position: absolute;
  top: -100px;
}

@media screen and (min-width: 541px) {
  .recruit04 .swiper-job-pagination {
    top: -100px;
  }
}

@media screen and (min-width: 769px) {
  .recruit04 .swiper-job-pagination {
    top: -135px;
  }
}

@media screen and (min-width: 1101px) {
  .recruit04 .swiper-job-pagination {
    top: -100px;
  }
}

.recruit04 .swiper-job-pagination .swiper-pagination-bullet-active {
  background: #4A463F;
}

.job_item {
  width: 100%;
}

.job_item .job_item_img {
  width: 100%;
  aspect-ratio: 1/1;
}

.job_item img {
  width: 100%;
}

.job_item_title {
  font-size: 19px;
  letter-spacing: 0.04em;
  margin: 10px 0 0;
}

@media screen and (min-width: 541px) {
  .job_item_title {
    font-size: 24px;
    margin: 15px 0 5px;
  }
}

@media screen and (min-width: 769px) {
  .job_item_title {
    font-size: 32px;
    margin: 20px 0 10px;
  }
}

@media screen and (min-width: 1101px) {
  .job_item_title {
    font-size: 24px;
    margin: 15px 0 10px;
  }
}

.job_item_figure p {
  letter-spacing: 0.06em;
  line-height: 2;
}

.tab-list-job {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #F6F5F1;
  border-radius: 3px;
  padding: 10px;
}

@media screen and (min-width: 541px) {
  .tab-list-job {
    padding: 15px;
  }
}

.tab-item-job {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 10px 10px;
}

@media screen and (min-width: 541px) {
  .tab-item-job {
    font-size: 24px;
    padding: 20px 10px;
  }
}

@media screen and (min-width: 1101px) {
  .tab-item-job {
    font-size: 16px;
  }
}

.tab-item-job.current {
  background: #443F39;
  color: var(--white);
}

.tab-item-job.current::before {
  content: "";
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #443F39;
  width: 30px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  margin: 0 auto;
}

@media screen and (min-width: 541px) {
  .tab-item-job.current::before {
    width: 40px;
    height: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .tab-item-job.current::before {
    width: 40px;
    height: 20px;
  }
}

.tab-content-job .list_type02_list:first-child {
  border-top: none;
  margin-top: 40px;
}

/***************************

object/object/project/_concept.scss

***************************/
.concept01 .recruit01_bg::before {
  background: none;
}

.concept01 .recruit01_title {
  width: 100%;
  max-width: 500px;
}

.br_sp {
  display: block;
}

@media screen and (min-width: 541px) {
  .br_sp {
    display: none;
  }
}

.br_tab {
  display: block;
}

@media screen and (min-width: 769px) {
  .br_tab {
    display: none;
  }
}

.br_pc {
  display: block;
}

@media screen and (min-width: 1101px) {
  .br_pc {
    display: none;
  }
}

.br_sp_none {
  display: none;
}

@media screen and (min-width: 541px) {
  .br_sp_none {
    display: block;
  }
}

.br_tab_none {
  display: none;
}

@media screen and (min-width: 769px) {
  .br_tab_none {
    display: block;
  }
}

.br_pc_none {
  display: none;
}

@media screen and (min-width: 1101px) {
  .br_pc_none {
    display: block;
  }
}

.list_type04_img {
  text-align: center;
  padding-bottom: 20px;
}

@media screen and (min-width: 541px) {
  .list_type04_img {
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 769px) {
  .list_type04_img {
    padding-bottom: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type04_img {
    padding-bottom: 40px;
  }
}

.list_type04_item {
  border-bottom: 2px solid #DDDDDD;
  padding: 30px 0 30px;
}

@media screen and (min-width: 541px) {
  .list_type04_item {
    padding: 50px 0 30px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type04_item {
    padding: 40px 0 30px;
  }
}

.list_type04_item:has(img) {
  padding-top: 0;
}

.list_type04_item p {
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.concept_btn_wrap {
  margin-top: 30px;
}

.reform_link_box {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 30px 15px 60px;
  position: relative;
}

@media screen and (min-width: 541px) {
  .reform_link_box {
    margin-top: 80px;
    padding: 50px 20px 60px;
  }
}

@media screen and (min-width: 1101px) {
  .reform_link_box {
    margin-top: 60px;
  }
}

.reform_link_box .reform_link_text {
  font-size: 18px;
}

@media screen and (min-width: 541px) {
  .reform_link_box .reform_link_text {
    font-size: 20px;
  }
}

@media screen and (min-width: 769px) {
  .reform_link_box .reform_link_text {
    font-size: 28px;
  }
}

@media screen and (min-width: 1101px) {
  .reform_link_box .reform_link_text {
    font-size: 24px;
  }
}

.reform_link_img {
  width: 100%;
  max-width: 200px;
  position: absolute;
  bottom: -50px;
  right: 20px;
}

.concept04.sec_last {
  margin-bottom: 160px;
}

@media screen and (min-width: 541px) {
  .concept04.sec_last {
    margin-bottom: 250px;
  }
}

@media screen and (min-width: 1101px) {
  .concept04.sec_last {
    margin-bottom: 200px;
  }
}

.concept_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

@media screen and (min-width: 541px) {
  .concept_list {
    gap: 60px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 769px) {
  .concept_list {
    gap: 80px;
    margin-top: 80px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_list {
    gap: 80px;
    margin-top: 60px;
  }
}

/* @media screen and (min-width: 1101px) {
  .concept_item {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }
} */

.concept_main_img {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
}

.concept_main_img img {
  border-radius: 3px;
}

@media screen and (min-width: 541px) {
  .concept_main_img {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 769px) {
  .concept_main_img {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_main_img {
    margin-bottom: 0;
    width: 100%;
    max-width: 600px;
    margin: 0;
  }
}

.concept_main_img figure {
  position: relative;
}

.concept_main_img figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  padding: 10px 15px;
  padding-top: 20px;
  font-size: 14px;
  text-align: left;
}

@media screen and (min-width: 541px) {
  .concept_main_img figcaption {
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  .concept_main_img figcaption {
    font-size: 20px;
    padding: 20px 30px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_main_img figcaption {
    font-size: 16px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_item:has(.concept_main_img) .concept_box {
    width: 100%;
    max-width: 50%;
  }
}

.concept_box {
  margin-top: 20px;
}

@media screen and (min-width: 541px) {
  .concept_box {
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  .concept_box {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_box {
    margin-top: 0;
  }
}

.concept_sub_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 541px) {
  .concept_sub_list {
    gap: 20px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  .concept_sub_list {
    gap: 30px;
    margin-top: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_sub_list {
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 30px;
  }
}

.concept_sub_list.--column2 {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 769px) {
  .concept_sub_list.--column2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1101px) {
  .concept_sub_list.--column2 {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }
}

.concept_sub_item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.concept_sub_list.--column2 {
  text-align: center;
}

.concept_sub_list.--column2 img {
  max-width: 400px;
}

.list_type04_list {
  margin-top: 20px;
}

@media screen and (min-width: 541px) {
  .list_type04_list {
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  .list_type04_list {
    margin-top: 30px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type04_list {
    margin-top: 20px;
  }
}

.list_type04_tem {
  border-top: 1px solid #DDDDDD;
  padding: 10px 0;
}

.list_type04_tem:last-child {
  border-bottom: 1px solid #DDDDDD;
}

@media screen and (min-width: 541px) {
  .list_type04_tem {
    padding: 15px 0;
  }
}

@media screen and (min-width: 769px) {
  .list_type04_tem {
    padding: 20px 0;
  }
}

@media screen and (min-width: 1101px) {
  .list_type04_tem {
    padding: 20px 0;
    font-size: 24px;
  }
}

.list_type04_title {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.04em;
  display: grid;
  grid-template-columns: 70px 1fr;
}

@media screen and (min-width: 541px) {
  .list_type04_title {
    font-size: 20px;
  }
}

@media screen and (min-width: 769px) {
  .list_type04_title {
    font-size: 16px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type04_title {
    font-size: 24px;
  }
}

.list_type04_title span {
  font-family: var(--zain);
  font-size: 18px;
  letter-spacing: 0.12em;
}

@media screen and (min-width: 541px) {
  .list_type04_title span {
    font-size: 20px;
  }
}

@media screen and (min-width: 769px) {
  .list_type04_title span {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type04_title span {
    font-size: 16px;
  }
}

.concept_flow_list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 541px) {
  .concept_flow_list {
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  .concept_flow_list {
    margin-top: 40px;
    flex-direction: row;
    gap: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_flow_list {
    margin-top: 30px;
  }
}

.concept_flow_item {
  position: relative;
}

.concept_flow_item+.concept_flow_item::before {
  content: "";
  background: #b1cc9f;
  width: 102px;
  height: 32px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  display: block;
  margin: 10px auto;
}

@media screen and (min-width: 769px) {
  .concept_flow_item+.concept_flow_item::before {
    width: 20px;
    height: 80px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 769px) {
  .concept_flow_item+.concept_flow_item {
    display: flex;
  }
}

.concept_sub_item {
  /* padding: 20px; */
  border-radius: 3px;
}

.concept_sub_item .title15 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.concept_sub_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.concept_sub_dl {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.concept_sub_dl dt {
  font-weight: bold;
  background: #A8CF5E;
  padding: 10px;
  color: var(--white);
  letter-spacing: 0.06em;
}

.concept_sub_dl dd {
  background: #EBF4E2;
  padding: 10px;
  text-align: left;
}

/***************************

object/object/project/_reform.scss

***************************/
.reform01 {
  background: url(img/reform/reform_bg.jpg);
  padding-bottom: 80px;
}

.reform01 .page_main_img {
  background: var(--white);
  margin-bottom: 80px;
}

@media screen and (min-width: 541px) {
  .reform01 .page_main_img {
    margin-bottom: 120px;
  }
}

@media screen and (min-width: 1101px) {
  .reform01 .page_main_img {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 541px) {
  .reform01 {
    padding-bottom: 120px;
  }
}

@media screen and (min-width: 1101px) {
  .reform01 {
    padding-bottom: 80px;
  }
}

.list_type05 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 15px;
}

@media screen and (min-width: 541px) {
  .list_type05 {
    gap: 90px 40px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type05 {
    gap: 90px 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.list_type05_item {
  width: 100%;
}

@media screen and (min-width: 1101px) {
  .list_type05_item {
    gap: 90px 30px;
  }
}

.list_type05_img {
  border: 1px solid #443F39;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}

@media screen and (min-width: 541px) {
  .list_type05_img {
    padding: 30px 20px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type05_img {
    padding: 30px 20px;
  }
}

.list_type05_img img {
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  height: 80px;
}

@media screen and (min-width: 541px) {
  .list_type05_img img {
    height: 100px;
  }
}

@media screen and (min-width: 769px) {
  .list_type05_img img {
    height: 150px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type05_img img {
    height: 100px;
  }
}

.list_type05_title {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 541px) {
  .list_type05_title {
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {
  .list_type05_title {
    font-size: 28px;
  }
}

@media screen and (min-width: 1101px) {
  .list_type05_title {
    font-size: 22px;
  }

  .list_type05_title br {
    display: none;
  }
}

.reform_wrap {
  position: relative;
}

.reform_wrap .container {
  cursor: pointer;
}

.after-label {
  opacity: 0;
}

/* ラベル切り替え */
.reform_wrap.show-after .before-label {
  opacity: 0;
}

.reform_wrap.show-after .after-label {
  opacity: 1;
}

.reform_img .after {
  opacity: 0;
}

.container.show-after .after {
  opacity: 1;
}

.reform_wrap {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
  padding-top: 40px;
}

@media screen and (min-width: 541px) {
  .reform_wrap {
    padding-top: 80px;
  }
}

@media screen and (min-width: 1101px) {
  .reform_wrap {
    padding-top: 40px;
  }
}

.label-wrapper {
  position: relative;
}

.label-wrapper .label {
  position: absolute;
  top: -40px;
  left: 0;
  font-family: var(--zain);
  font-size: 20px;
  letter-spacing: 0.12em;
}

@media screen and (min-width: 541px) {
  .label-wrapper .label {
    font-size: 28px;
  }
}

@media screen and (min-width: 1101px) {
  .label-wrapper .label {
    font-size: 24px;
  }
}

.container {
  width: 100%;
  height: 100%;
  aspect-ratio: 670/446;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.container::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(112deg, transparent 80%, rgba(68, 63, 57, 0.3882352941));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.reform_img {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  cursor: pointer;
  aspect-ratio: 670/446;
}

.reform_img img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.6s ease-in-out;
}

/* ◎TAP表示 */
.tap-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 2;
}

.reform03_wrap {
  width: 100%;
  /* max-width: 900px; */
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  /* margin-bottom: 60px; */
}

@media screen and (min-width: 541px) {
  .reform03_wrap {
    margin-top: 50px;
    /* margin-bottom: 80px; */
  }
}

@media screen and (min-width: 1101px) {
  .reform03_wrap {
    margin-top: 30px;
    /* margin-bottom: 60px; */
  }
}

/***************************

object/object/project/_lineup.scss

***************************/
.lineup .page_mv {
  position: relative;
  margin-top: 95px;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.lineup .container_l:has(.page_title_lineup) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 5;
}

.lineup .breadcrumbs {
  margin-top: 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
}

@media screen and (min-width: 541px) {
  .lineup .breadcrumbs {
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  .lineup .breadcrumbs {
    margin-top: 50px;
  }
}

.lineup .page_title_lineup {
  text-align: center;
}

.lineup .lineup-mySwiper2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 769px) {
  .lineup .lineup-mySwiper2 {
    height: 90vh;
  }
}

.lineup-slide_wrap {
  position: relative;
}

.lineup-slide_wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.page_title_lineup {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page_title_lineup .sub_title {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 541px) {
  .page_title_lineup .sub_title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .page_title_lineup .sub_title {
    font-size: 20px;
  }
}

.lineup01 {
  margin-top: 40px;
  padding-bottom: 100px;
}

@media screen and (min-width: 541px) {
  .lineup01 {
    margin-top: 90px;
    padding-bottom: 140px;
  }
}

@media screen and (min-width: 1101px) {
  .lineup01 {
    margin-top: 60px;
    padding-bottom: 100px;
  }
}

.lineup_concept_title {
  font-size: 16px;
  letter-spacing: 0.12em;
  font-weight: 500;
}

@media screen and (min-width: 541px) {
  .lineup_concept_title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .lineup_concept_title {
    font-size: 20px;
  }
}

.concept_textbox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .concept_textbox {
    width: 100%;
    max-width: 15%;
    margin: 0 auto;
  }
}

.concept_subtitle_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  max-width: 100px;
  position: relative;
}

@media screen and (min-width: 541px) {
  .concept_subtitle_box {
    gap: 30px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  .concept_subtitle_box {
    gap: 40px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_subtitle_box {
    gap: 30px;
    margin-top: 30px;
  }
}

.concept_subtitle_box.deco::before {
  content: "";
  width: 46px;
  height: 100%;
  background: url(img/lineup/residencia/concept_subtitle_deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (min-width: 541px) {
  .concept_subtitle_box.deco::before {
    width: 56px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_subtitle_box.deco::before {
    width: 46px;
  }
}

.concept_subtitle {
  font-size: 20px;
}

@media screen and (min-width: 541px) {
  .concept_subtitle {
    font-size: 32px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_subtitle {
    font-size: 32px;
  }
}

.concept_subtitle span {
  font-size: 24px;
}

@media screen and (min-width: 541px) {
  .concept_subtitle span {
    font-size: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_subtitle span {
    font-size: 38px;
  }
}

.concept_wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}

@media screen and (min-width: 541px) {
  .concept_wrap {
    margin-bottom: 90px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_wrap {
    margin-bottom: 80px;
  }
}

.concept_img_box {
  text-align: right;
  margin-right: calc(50% - 50vw);
  width: 100%;
  max-width: 70%;
}

@media screen and (min-width: 541px) {
  .concept_img_box {
    max-width: 600px;
  }
}

@media screen and (min-width: 769px) {
  .concept_img_box {
    max-width: 630px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_img_box {
    max-width: 830px;
  }
}

@media screen and (min-width: 1500px) {
  .concept_img_box {
    margin-right: auto;
  }
}

.concept_img_01 img {
  width: 100%;
  border-radius: 2px 0 0 2px;
}

.concept_img_unit {
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
  margin-right: 15px;
}

@media screen and (min-width: 769px) {
  .concept_img_unit {
    gap: 30px;
  }
}

@media screen and (min-width: 1101px) {
  .concept_img_unit {
    gap: 80px;
    justify-content: flex-end;
    margin-right: 80px;
  }
}

.lineup.--zerocrea .concept_img_unit {
  gap: 0;
}

@media screen and (min-width: 1101px) {
  .lineup.--zerocrea .concept_img_unit {
    gap: 0;
    justify-content: flex-start;
    margin-right: 80px;
  }
}

.concept_img_02 {
  margin-top: -10px;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .concept_img_02 {
    margin-top: -20px;
  }
}

.concept_img_02 img {
  border-radius: 3px;
}

.lineup.--lohastory .concept_img_03 {
  position: relative;
  z-index: -1;
  margin-top: -120px;
  margin-left: 30px;
}

@media screen and (min-width: 769px) {
  .lineup.--lohastory .concept_img_03 {
    margin-left: 50px;
  }
}

.lineup.--zerocrea .concept_img_03 {
  position: relative;
  z-index: -1;
  margin-top: -120px;
  margin-left: 30px;
}

@media screen and (min-width: 769px) {
  .lineup.--zerocrea .concept_img_03 {
    margin-left: 50px;
  }
}

.parallax-box {
  width: 100%;
  height: 300px;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

@media screen and (min-width: 769px) {
  .parallax-box {
    height: 600px;
  }
}

@media screen and (min-width: 1101px) {
  .parallax-box {
    height: 400px;
  }
}

.parallax-box::after {
  content: "";
  background: #aaa;
  background-position: center center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.lineup.--residencia .parallax-box::after {
  background: url(img/lineup/residencia/parallax_bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lineup.--minimal-design .parallax-box::after {
  background: url(img/lineup/minimal-design/parallax_bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lineup.--japandi .parallax-box::after {
  background: url(img/lineup/japandi/parallax_bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lineup.--lohastory .parallax-box::after {
  background: url(img/lineup/lohastory/parallax_bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lineup.--zerocrea .parallax-box::after {
  background: url(img/lineup/zerocrea/parallax_bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lineup.--locos .parallax-box::after {
  background: url(img/lineup/locos/parallax_bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lineup02 {
  padding: 100px 0 80px;
}

@media screen and (min-width: 769px) {
  .lineup02 {
    padding: 130px 0 100px;
  }
}

@media screen and (min-width: 1101px) {
  .lineup02 {
    padding: 100px 0 100px;
  }
}

.lineup02 .container_l {
  position: relative;
  z-index: 2;
}

.lineup02 p {
  line-height: 2;
  letter-spacing: 0.06em;
}

.lineup.--residencia .lineup02 {
  background: #3E3C39;
  position: relative;
}

.lineup.--residencia .lineup02::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/lineup/residencia/feature_bg.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.lineup.--minimal-design .lineup02 {
  background: #EFEEE9;
  position: relative;
}

.lineup.--minimal-design .lineup02::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/lineup/minimal-design/feature_bg.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.lineup.--japandi .lineup02 {
  background: #F4F2EA;
  position: relative;
}

.lineup.--japandi .lineup02::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/lineup/japandi/feature_bg.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.lineup.--lohastory .lineup02 {
  background: #EEF0DB;
  position: relative;
}

.lineup.--lohastory .lineup02::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/lineup/lohastory/feature_bg.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.lineup.--zerocrea .lineup02 {
  background: #F0F3EB;
  position: relative;
}

.lineup.--zerocrea .lineup02::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/lineup/zerocrea/feature_bg.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.lineup.--locos .lineup02 {
  background: #F0F3EB;
  position: relative;
}

.lineup.--locos .lineup02::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/lineup/locos/feature_bg.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.feature_img {
  position: relative;
  z-index: 5;
  margin: 40px 0 30px;
}

@media screen and (min-width: 769px) {
  .feature_img {
    margin: 70px 0 80px;
  }
}

@media screen and (min-width: 1101px) {
  .feature_img {
    margin: 30px 0 40px;
  }
}

.lineup02_detail_box {
  padding: 60px 20px 80px;
  margin-top: 80px;
}

@media screen and (min-width: 769px) {
  .lineup02_detail_box {
    margin-top: 110px;
  }
}

@media screen and (min-width: 1101px) {
  .lineup02_detail_box {
    margin-top: 80px;
  }
}

.feature_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 769px) {
  .feature_list {
    gap: 80px;
  }
}

@media screen and (min-width: 1101px) {
  .feature_list {
    gap: 60px;
  }
}

.feature_list_type02 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .feature_list_type02 {
    gap: 40px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .feature_list_type02 {
    gap: 30px;
    margin-top: 30px;
  }
}

.feature_list-type02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}

@media screen and (min-width: 769px) {
  .feature_list-type02 {
    gap: 30px 20px;
  }
}

@media screen and (min-width: 1101px) {
  .feature_list-type02 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature_list-type03 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 10px;
}

@media screen and (min-width: 769px) {
  .feature_list-type03 {
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
  }
}

@media screen and (min-width: 1101px) {
  .feature_list-type03 {
    grid-template-columns: 1fr 1fr;
  }
}

.feature_list_type02_item .list_type02_list {
  border-color: rgba(221, 221, 221, 0.5);
}

.feature_list_type02_item .list_type02_list:first-child {
  border-top: none;
}

.feature_item-img img {
  width: 100%;
  border-radius: 4px;
}

.feature_item-figcaption {
  margin-top: 10px;
}

.feature_item-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 541px) {
  .feature_item-title {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) {
  .feature_item-title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .feature_item-title {
    font-size: 20px;
  }
}

.feature_list-type03 .feature_item-figcaption .feature_item-title {
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (min-width: 541px) {
  .feature_list-type03 .feature_item-figcaption .feature_item-title {
    font-size: 20px;
  }
}

@media screen and (min-width: 769px) {
  .feature_list-type03 .feature_item-figcaption .feature_item-title {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .feature_list-type03 .feature_item-figcaption .feature_item-title {
    font-size: 20px;
  }
}

.feature_list-type03 .feature_item-figcaption p {
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

@media screen and (min-width: 541px) {
  .feature_list-type03 .feature_item-figcaption p {
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .feature_list-type03 .feature_item-figcaption p {
    font-size: 16px;
  }
}

.mySwiper_interior_wrap {
  position: relative;
}

.mySwiper_interior_wrap .swiper-interior-pagination .swiper-pagination-bullet-active {
  background: #4A463F;
}

.mySwiper_interior_wrap .swiper-interior-pagination {
  position: absolute;
  top: -70px;
  right: 0;
  left: auto;
  text-align: right;
}

@media screen and (min-width: 541px) {
  .mySwiper_interior_wrap .swiper-interior-pagination {
    top: -100px;
  }
}

@media screen and (min-width: 1101px) {
  .mySwiper_interior_wrap .swiper-interior-pagination {
    top: -80px;
  }
}

.mySwiper_interior_wrap p {
  letter-spacing: 0.06em;
  line-height: 2;
}

.exterior-thum-wrap {
  position: relative;
}

.exterior-thum-wrap::before {
  content: "";
  width: 1px;
  height: 30px;
  background: var(--black);
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}

@media screen and (min-width: 769px) {
  .exterior-thum-wrap::before {
    height: 40px;
    top: -20px;
  }
}

@media screen and (min-width: 1101px) {
  .exterior-thum-wrap::before {
    top: -20px;
  }
}

.exterior-thum-mySwiper {
  padding: 20px 10px 30px;
  margin-top: 40px;

}

.exterior-thum-mySwiper .swiper-wrapper {
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .exterior-thum-mySwiper {
    padding: 30px 20px 50px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .exterior-thum-mySwiper {
    margin-top: 40px;
    padding: 30px 20px 50px;
  }
}

.exterior-thum-mySwiper .swiper-slide {
  opacity: 1;
  transition: all 0.5s;
}

.exterior-thum-mySwiper .swiper-slide img {
  width: 100%;
}

.exterior-thum-mySwiper .swiper-slide-thumb-active {
  opacity: 0.5;
}

.exterior-mySwiper {
  width: 100%;
  max-width: 720px;
}

.exterior-mySwiper .title16 {
  margin-top: 20px;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .exterior-mySwiper .title16 {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .exterior-mySwiper .title16 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.exterior_img img {
  width: 100%;
}

.banner_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 769px) {
  .banner_list {
    gap: 50px;
  }
}

@media screen and (min-width: 1101px) {
  .banner_list {
    gap: 30px;
  }
}

@media screen and (min-width: 1300px) {
  .banner_list {
    flex-direction: row;
  }
}

.banner_list .banner_box {
  margin-top: 0;
}

.lineup05 .t-right:has(.btn02) {
  margin-top: 40px;
}

@media screen and (min-width: 541px) {
  .lineup05 .t-right:has(.btn02) {
    margin-top: 60px;
  }
}

@media screen and (min-width: 769px) {
  .lineup05 .t-right:has(.btn02) {
    margin-top: 40px;
  }
}

.feature_map_list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

@media screen and (min-width: 541px) {
  .feature_map_list {
    gap: 40px;
    margin-top: 50px;
  }
}

@media screen and (min-width: 769px) {
  .feature_map_list {
    gap: 20px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 1101px) {
  .feature_map_list {
    flex-direction: row;
    justify-content: center;
  }
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-title {
  background: #F3F3F1;
  border: 1px solid #DDDDDD;
  padding: 10px 20px;
  padding-right: 5px;
  position: relative;
  cursor: pointer;
}

@media screen and (min-width: 541px) {
  .accordion-title {
    padding: 20px 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 769px) {
  .accordion-title {
    padding: 30px 40px;
    padding-right: 20px;
  }
}

.accordion-title::before {
  content: "";
  width: 1px;
  height: calc(100% - 40px);
  background: var(--black);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
}

@media screen and (min-width: 541px) {
  .accordion-title::before {
    height: calc(100% - 60px);
  }
}

.accordion-title.open .plan_list::after {
  opacity: 0;
}

.plan_list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-right: 50px;
}

@media screen and (min-width: 541px) {
  .plan_list {
    flex-direction: row;
    align-items: center;
  }

  .plan_list .plan_title {
    position: relative;
    padding-right: 10px;
    display: flex;
    align-items: center;
  }

  .plan_list .plan_title::after {
    content: "";
    background: #4A463F;
    width: 1px;
    height: 24px;
    display: block;
    margin-left: 10px;
  }
}

@media screen and (min-width: 769px) {
  .plan_list .plan_title {
    padding-right: 20px;
  }

  .plan_list .plan_title::after {
    margin-left: 20px;
  }
}

.plan_list::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--green);
  position: absolute;
  top: 30px;
  right: 10px;
}

@media screen and (min-width: 541px) {
  .plan_list::before {
    width: 30px;
    height: 4px;
    top: 16px;
    right: 20px;
  }
}

.plan_list::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background: var(--green);
  position: absolute;
  top: 17px;
  right: 23px;
  transition: all 0.5s;
}

@media screen and (min-width: 541px) {
  .plan_list::after {
    width: 4px;
    height: 30px;
    top: 4px;
    right: 33px;
  }
}

.plan_title {
  font-family: var(--zain);
  font-size: 28px;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

@media screen and (min-width: 541px) {
  .plan_title {
    font-size: 32px;
  }
}

@media screen and (min-width: 769px) {
  .plan_title {
    font-size: 28px;
  }
}

.plan_price {
  font-family: var(--zain);
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

@media screen and (min-width: 541px) {
  .plan_price {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  .plan_price {
    font-size: 24px;
  }
}

.plan_price span.f-bold {
  font-size: 16px;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 541px) {
  .plan_price span.f-bold {
    font-size: 20px;
  }
}

@media screen and (min-width: 769px) {
  .plan_price span.f-bold {
    font-size: 18px;
  }
}

.plan_subtext {
  font-size: 14px;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 541px) {
  .plan_subtext {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) {
  .plan_subtext {
    font-size: 16px;
  }
}

.accordion-content {
  display: none;
  border: 1px solid #DDDDDD;
  border-top: none;
  padding: 20px;
}

@media screen and (min-width: 541px) {
  .accordion-content {
    padding: 40px;
  }
}

.accordion-content_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media screen and (min-width: 541px) {
  .accordion-content_list {
    gap: 20px;
  }
}

@media screen and (min-width: 769px) {
  .accordion-content_list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 20px;
  }
}

.accordion-content_item img {
  width: 100%;
  border-radius: 3px;
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

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

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

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

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

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

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

.flex-justify-around {
  justify-content: space-around;
}

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

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

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

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

/***************************

object/utility/_background.scss

***************************/
.bg_type01 {
  background: #F7F5F2;
}

.bg_type02 {
  background: #252422;
}

.bg_type03 {
  background: var(--white);
}

.bg_type04 {
  background: #F4F2EA;
}

.bg_type05 {
  background: linear-gradient(244deg, #6EB72C, #166413);
}

/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

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

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

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

@media screen and (min-width: 541px) {
  .t-center_pc {
    text-align: center;
  }

  .t-left_pc {
    text-align: left;
  }

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

.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

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

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: var(--brown);
}

.fc--white {
  color: var(--white);
}

.fc--green {
  color: var(--green);
}

.fc--black {
  color: var(--black);
}

.fc--red {
  color: #F43902;
}

.txtdeco-none {
  text-decoration: none;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}

.shippori {
  font-family: var(--shipporib1);
}

.garamond {
  font-family: var(--garamond);
}

.zain {
  font-family: var(--zain);
}

.wpcf7-spinner {
  display: none;
}

/* 251105 */
.contents_list.--land .list_item01_figcaption .flexbox {
  align-items: baseline;
}

.contents_list.--land .list_item01_title {
  width: 100%;
  max-width: 75%;
}

/* 251112 */
.form_reserve_wrap.bukken_title input {
  background: transparent;
}

/* 251120 */
.company01_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 541px) {
  .company01_wrap {
    gap: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .greeting_img {
    margin: 0;
  }

  .company01_wrap {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: space-evenly;
  }

  .company01_textbox {
    width: 100%;
    max-width: 600px;
  }
}

.company01_textbox {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.reform_list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}


.reform_list .list_type02_list {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .reform_list .list_type02_list {
    font-size: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .reform_list .list_type02_list {
    font-size: 16px;
  }
}

@media screen and (min-width: 1101px) {
  .header__nav_pc_wrap {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 251201 */
.concept_item {
  display: grid;
  grid-template-areas: "title06"
    "concept_main_img"
    "concept_box02"
    "concept_box03";
}

.concept_list .concept_main_img {
  grid-area: concept_main_img;
}

.concept_list .title06 {
  grid-area: title06;
}

.concept_list .concept_box02 {
  grid-area: concept_box02;
}
.concept_list .concept_box03 {
  grid-area: concept_box03;
}

@media screen and (min-width: 1101px) {
 .concept_list .title06 {
 margin: 0;
}
.concept_item {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-areas: 
    "concept_main_img title06"
    "concept_main_img concept_box02"
    "concept_box03 concept_box03";
    gap: 20px 30px ;
}
  .concept_list .concept_main_img {
    width: 100%;
    max-width: 560px;

  }

}
.concept_box03{
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.swiper-wrapper {
  transition-timing-function: ease-out;
}

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