/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');


:root {
  --font-default: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
  --font-serif: "Zen Old Mincho", serif;
  --font-zenkaku: "Zen Kaku Gothic New", sans-serif;

  --color: #524b40;
  --color-red: #ff0000;
  --color-brown: #b89e4a;
}

/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: var(--font-default);
  color: var(--color);
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  &.is-hidden {
    overflow: hidden;
  }
}

input, button, textarea, select {
  color: var(--color);
  font-family: var(--font-default);
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb0 {
  margin-bottom: 0;
}

.mt-30 {
  margin-top: 30px;
}

.tCenter {
  text-align: center;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.link-tel {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .link-tel {
    pointer-events: none;
  }
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}

.hover {
  transition: 0.3s;
}
@media only screen and (min-width: 751px) {
  .hover:hover {
    opacity: 0.7;
  }
}
.hover-scale {
  figure {
    display: block;
    overflow: hidden;
    img {
      transition: transform 0.3s ease;
    }
  }
  &:hover figure img {
    transform: scale(1.05);
  }
}

.flex {
  display: flex;
  &.justify-center {
    justify-content: center;
  }
}

.h2-primary {
  .en {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-zenkaku);
    color: var(--color-brown);
    @media screen and (max-width: 750px){
      font-size: 13px;
    }
  }
  .ja {
    font-size: 20px;
    font-weight: bold;
    display: block;
    @media screen and (max-width: 750px){
      font-size: 16px;
    }
  }
  &.-center {
    text-align: center;
  }
  &.-spcenter {
    @media screen and (max-width: 750px){
      text-align: center;
    }
  }
}
.h2-secondary {
  .en {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-zenkaku);
    color: var(--color-brown);
  }
  .ja {
    font-size: 12px;
    font-weight: bold;
    display: block;
    color: var(--color-brown);
  }
  &.-center {
    text-align: center;
  }
}

.title-line {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-brown);
  margin-bottom: 55px;
  @media screen and (max-width: 750px){
    margin-bottom: 30px;
  }
  .en {
    display: block;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-zenkaku);
  }
  .ja {
    display: block;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-zenkaku);
  }
  &:before {
    content: "";
    height: 1px;
    flex: 1;
    background-color: var(--color);
    margin-right: 50px;
    @media screen and (max-width: 750px){
      margin-right: 15px;
    }
  }
  &:after {
    content: "";
    height: 1px;
    flex: 1;
    background-color: var(--color);
    margin-left: 50px;
    @media screen and (max-width: 750px){
      margin-left: 15px;
    }
  }
}
.title-large {
  background-color: var(--color);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 118px;
  border-radius: 4px;
  font-size: 26px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    height: auto;
    padding: 10px 0;
    font-size: 18px;
  }
}

.btn-primary {
  display: flex;
  width: 270px;
  height: 48px;
  border-radius: 50vh;
  border: 1px solid var(--color-brown);
  color: var(--color);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  padding-right: 1.2em;
  position: relative;
  &:after {
    content: "";
    width: 20px;
    height: 10px;
    background: url(../img/arrow_brown.svg) no-repeat center/contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  &:hover {
    &:after {
      transform: translateY(-50%) translateX(6px);
    }
  }
}
.btn-secondary {
  text-decoration: none;
  display: inline-block;
  padding-right: 35px;
  position: relative;
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  &:after {
    content: "";
    width: 20px;
    height: 10px;
    background: url(../img/arrow_brown.svg) no-repeat center/contain;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  &:hover {
    &:after {
      transform: translateY(-50%) translateX(6px);
    }
  }
}

/* ----------------------------------------------------------------------
 Layout
---------------------------------------------------------------------- */
.header__inner {
  position: fixed;
  width: 100%;
  padding: 0 30px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  background-color: #fff;
  transition: background-color 0.3s ease-out;
  @media screen and (max-width: 750px){
    padding: 14px 15px 0;
    align-items: flex-start;
    height: 70px;
  }
}
.is-white {
  .header__inner {
    background-color: transparent;
  }
}
#logo {
  width: 100%;
  transition: fill 0.3s ease-out;
  .cls-1 {
      fill: #414847;
    }
  .cls-2 {
    fill: #414847;
  }
  .cls-3 {
    fill: #b8a072;
  }
}
.is-white {
  #logo {
    @media screen and (max-width: 750px){
      .cls-1 {
        fill: #fff;
      }
      .cls-2 {
        fill: #fff;
      }
      .cls-3 {
        fill: #fff;
      }  
    }
  }
}
.header__logo {
  width: 120px;
  @media screen and (max-width: 750px){
    width: 83px;
  }
}
.header__right {
  @media screen and (max-width: 750px){
    display: none;
  }
}
.header__sns {
  position: absolute;
  right: 30px;
  top: 16px;
  display: flex;
  li {
    width: 22px;
    margin-left: 6px;
  }
}
.header__navi {
  display: flex;
  li {
    margin-left: 16px;
    a {
      font-size: 14px;
      letter-spacing: 0.05em;
      font-weight: bold;
      color: var(--color);
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
@media screen and (min-width: 751px){
  .is-white {
    .header__navi {
      li {
        a {
          color: #fff;
        }
      }
    }
  }
}
.menu {
  @media screen and (min-width: 751px){
    display: none;
  }
  text-align: center;
}
.menu__btn {
  display: inline-block;
  width: 28px;
  height: 12px;
  position: relative;
  span {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--color);
    left: 0px;
    &:first-child {
      top: 0px;
    }
    &:last-child {
      bottom: 0px;
    }
  }
}
.menu__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color);
  font-family: var(--font-zenkaku);
}
.is-white {
  @media screen and (max-width: 750px){
    .menu__btn span {
      background-color: #fff;
    }
    .menu__text {
      color: #fff;
    }  
  }
}

.spMenu {
  @media screen and (min-width: 751px){
    display: none !important;
  }
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100dvh;
  background-color: #3a4142;
  z-index: 1000;
  text-align: center;
  color: #fff;
}
.spMenu__header {
  display: flex;
  justify-content: space-between;
  padding: 14px 15px 0;
  align-items: flex-start;
}
.spMenu__logo {
  width: 83px;
}
.spMenu__close {
  width: 37px;
}
.spMenu__copy {
  margin-top: 40px;
  text-align: right;
  display: inline-block;
  font-size: 14px;
  font-family: var(--font-serif);
}
.spMenu__navi {
  width: 310px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  li {
    + li {
      margin-top: 1em;
    }
    a {
      color: inherit;
      text-decoration: none;
      font-size: 13px;
      font-family: var(--font-zenkaku);
    }
  }
}
.spMenuTel {
  padding: 12px 0 24px;
  background-color: #7e7853;
  width: 280px;
  margin: 70px auto 0;
  position: relative;
  color: #dcdddd;
}
.spMenuTel__en {
  width: 165px;
  position: absolute;
  top: -46px;
  right: -24px;
}
.spMenuTel__text {
  font-family: var(--font-serif);
  font-size: 14px;
}
.spMenuTel__tel {
  margin-top: 10px;
  font-size: 27px;
  line-height: 1.1;
  font-family: var(--font-serif);
  img {
    width: 29px;
    margin-right: 5px;
    position: relative;
    top: -4px;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
}
.spMenuBottom {
  padding: 20px 0 60px;
  display: flex;
  justify-content: center;
  align-items: center; 
}
.spMenuSns {
  margin-right: 40px;
  display: flex;
  li {
    width: 26px;
    + li {
      margin-left: 16px;
    }
  }
}
.spMenu__time {
  font-size: 13px;
}

.bottomNavi {
  @media screen and (min-width: 751px){
    display: none !important;
  }
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #3a4142;
  z-index: 1100;
  ul {
    display: flex;
    gap: 1px;
    background-color: #fff;
    li {
      flex-grow: 1;
      &:last-child {
        width: 34px;
      }
      a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        padding: 0 10px;
        background-color: #747e81;
        color: #fff;
        font-size: 12px;
        font-family: var(--font-zenkaku);
        white-space: nowrap;
        text-decoration: none;
        &.-brown {
          background-color: #7e7853;
        }
      }
      img {
        width: 16px;
      }
    }
  }
}

.breadcrumbs {
  position: absolute;
  top: 132px;
  width: 100%;
  padding: 0 30px;
  font-size: 14px;
  height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  @media screen and (max-width: 750px){
    top: 78px;
    padding: 0 15px;
    font-size: 12px;
  }
}

.mv {
  display: flex;
  @media screen and (max-width: 750px){
    display: block;
  }
}
.mv__left {
  width: 38.06%;
  height: 100%;
  background-color: #d1c1ab;
  padding: 50px 56px 26px;
  transition: background-color 1s ease-out;
  @media screen and (max-width: 750px){
    position: absolute;
    z-index: 1;
    width: 292px;
    padding: 30px 18px 20px;
    top: 80px;
    left: calc((100% - 292px) / 2);
    height: auto;
  }
}
.mv__dots {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    justify-content: center;
  }
  li {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    &:after {
      content: "";
      background-color: #fff;
      display: block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    &.is-active {
      border: 1px solid #fff;
    }
  }
}
.mv__right {
  width: 61.94%;
  overflow: hidden;
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
    height: 195vw;
  }
}
.mvPhotos {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
.mvPhotos__block {
  animation: photoSlider 80s linear infinite;
}
@keyframes photoSlider {
  0%   { transform: translateY(0%); }
  100% { transform: translateY(-100%); }
}
.mv__desc {
  position: relative;
  padding-top: 28px;
  @media screen and (max-width: 750px){
    padding-top: 20px;
  }
}
.mv__en {
  position: absolute;
  top: -58px;
  right: -36px;
  width: 235px;
  pointer-events: none;
  @media screen and (max-width: 750px){
    width: 150px;
    top: -36px;
    right: -18px;
  }
}
.mv__title {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}
.mv__text {
  font-size: 14px;
  line-height: 1.9;
  color: #fff;
  margin-top: 0.5em;
  @media screen and (max-width: 750px){
    font-size: 13px;
  }
}
.mvGallery {
  position: relative;
  aspect-ratio: 406 / 470;
  overflow: hidden;
  background: #111;
  @media screen and (max-width: 750px){
    aspect-ratio: 406 / 500;
  }
}
.mvGalleryBase {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: background-image;
  a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    transition: background-color 0.3s ease;
    &:hover {
      cursor: pointer;
      background-color: rgba(255, 255, 255, 0.2);
    }
  }
}
.slider__reveal {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: circleReveal 2s ease-out forwards;
  pointer-events: none;
}
@keyframes circleReveal {
  0%   { clip-path: circle(0% at 100% 100%); }
  100% { clip-path: circle(200% at 100% 100%); }
}

.mvPhotos {
  @media screen and (max-width: 750px){
    background-color: #000;
  }
}
.mvPhotos__row {
  display: flex;
  @media screen and (max-width: 750px){
    opacity: 0.6;
  }
}
.mvPhotos__item {
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &.-item01 {
    flex: 1;
    height: calc( (180 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 90px;
    }
  }
  &.-item02 {
    flex: 1;
    height: calc( (180 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 90px;
    }
  }
  &.-item03 {
    flex: 1;
    height: calc( (180 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 90px;
    }
  }
  &.-item04 {
    flex: 2;
    height: calc( (228 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 114px;
    }
  }
  &.-item05 {
    flex: 1;
    height: calc( (228 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 114px;
    }
  }
  &.-item06 {
    height: calc( (180 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 90px;
    }
  }
  &.-item07 {
    height: calc( (180 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 90px;
    }
  }
  &.-item08 {
    flex: 1;
    height: calc( (360 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 180px;
    }
  }
  &.-item09 {
    flex: 2;
    height: calc( (268 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 134px;
    }
  }
  &.-item10 {
    flex: 1;
    height: calc( (268 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 134px;
    }
  }
  &.-item11 {
    height: calc( (320 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 160px;
    }
  }
  &.-item12 {
    height: calc( (180 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 90px;
    }
  }
  &.-item13 {
    flex: 1;
    height: calc( (180 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 90px;
    }
  }
  &.-item14 {
    flex: 1;
    height: calc( (180 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 90px;
    }
  }
  &.-item15 {
    height: calc( (320 / 1366) * 100vw );
    @media screen and (max-width: 750px){
      height: 160px;
    }
  }
}
.mvPhotos__clm {
  &.-clm1 {
    flex: 1;
  }
  &.-clm2 {
    flex: 2;
  }
  &.-clm3 {
    flex: 1;
  }
  &.-clm4 {
    flex: 2;
  }
}

.homeTitle {
  padding: 100px 20px 0;
  text-align: center;
  @media screen and (max-width: 750px){
   padding-top: 50px;
  }
}
.homeTitle {
  font-size: 18px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}
.homeEstate {
  padding: 100px 0 60px;
  @media screen and (max-width: 750px){
    padding: 50px 24px 60px;
  }
}
.homeEstate__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.homeEstate__h3 {
  font-size: 14px;
  margin-top: 0.5em;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 11px;
  }
}
.homeEstateList {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  @media screen and (max-width: 750px){
    gap: 20px 20px;
    flex-wrap: wrap;
  }
  .new {
    font-size: 16px;
    font-family: var(--font-zenkaku);
    font-weight: bold;
    color: var(--color-red);
    transform: rotate(90deg);
    transform-origin: right bottom;
    position: absolute;
    bottom: 0px;
    right: calc(100% + 1.2em);
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
}
.homeEstateList__item {
  width: calc((100% - 120px) / 4);
  @media screen and (max-width: 750px){
    width: calc((100% - 20px) / 2);
  }
}
.homeEstateList__thumb {
  position: relative;
  img {
    aspect-ratio: 250 / 188;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.homeEstateList__title {
  margin-top: 0.8em;
  font-size: 15px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 13px;
  }
}
.homeEstate__btn {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 750px){
    justify-content: center;
  }
}
.homeDesign {
  padding: 90px 0 280px;
  position: relative;
  background-color: #f8f7f4;
  overflow: hidden;
  @media screen and (max-width: 750px){
    padding: 20px 15px 89vw;
  }
}
.homeDesign__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.homeDesign__en {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-zenkaku);
  color: var(--color-brown);
  @media screen and (max-width: 750px){
    text-align: center;
  }
}
.homeDesign__title {
  margin-top: 95px;
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
    padding: 0 30px;
  }
  .icon {
    width: 106px;
    margin-right: 38px;
    @media screen and (max-width: 750px){
      margin: 0 auto;
    }
  }
  .text {
    font-size: 32px;
    font-family: var(--font-serif);
    @media screen and (max-width: 750px){
      margin-top: 40px;
      font-size: 22px;
    }
  }
}
.homeDesign__text {
  font-weight: 500;
  line-height: 2.2;
  font-size: 15px;
  margin-top: 2.3em;
  @media screen and (max-width: 750px){
    font-size: 15px;
    line-height: 1.9;
    padding: 0 30px;
    margin-top: 1.5em;
  }
}
.homeDesign__thumb {
  position: absolute;
  &.-thumb01 {
    width: 168px;
    top: 38px;
    right: calc(50% - 48px);
    @media screen and (max-width: 750px){
      top: auto;
      width: 32vw;
      bottom: 50.6vw;
      right: 57.06vw;
    }
  }
  &.-thumb02 {
    width: 513px;
    top: 228px;
    right: calc(50% - 606px);
    @media screen and (max-width: 750px){
      width: 100%;
      position: static;
      margin-top: 25px;
    }
  }
  &.-thumb03 {
    width: 158px;
    bottom: 90px;
    right: calc(50% + 139px);
    @media screen and (max-width: 750px){
      width: 32vw;
      bottom: 11.2vw;
      right: 48vw;
    }
  }
  &.-thumb04 {
    width: 176px;
    bottom: 0px;
    right: calc(50% - 72px);
    @media screen and (max-width: 750px){
      width: 37.3vw;
      bottom: 22.6vw;
      right: 6.4vw;
    }
  }
}
.homeEvent {
  padding: 100px 0 90px;
  @media screen and (max-width: 750px){
    padding: 40px 24px 60px;
  }
}
.homeEvent__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.homeEvent__navi {
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 750px){
    justify-content: center;
    margin-top: 30px;
  }
  li {
    padding: 0.1em 1em;
    border-left: 1px solid var(--color);
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    &:first-child {
      border-left: none;
    }
    &:hover {
      text-decoration: underline;
    }
    &.is-active {
      text-decoration: underline;
    }
  }
}
.homeEventBlock {
  margin-top: 40px;
  display: none;
  &.is-active {
    display: block;
  }
}
.newsList {
  display: flex;
  flex-wrap: wrap;
  gap: 90px 40px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}
.newsList__item {
  width: calc((100% - 120px) / 4);
  display: flex;
  flex-direction: column;
  @media screen and (max-width: 750px){
    width: 300px;
  }
}
.newsList__thumb {
  position: relative;
  img {
    aspect-ratio: 250 / 188;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.newsList__icons {
  display: flex;
  position: absolute;
  top: -12px;
  left: -12px;
  gap: 6px;
}
.newsList__cat {
  display: inline-block;
  border-radius: 4px;
  z-index: 1;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: var(--color);
  text-align: center;
  min-width: 120px;
  padding: 0.3em 0.5em;
  &.-white {
    background-color: #fff;
    border: 1px solid var(--color);
    color: var(--color);
  }
}
.newsList__info {
  margin-top: 0.8em;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.newsListDate {
  margin-bottom: 1.2em;
}
.newsListDate__list {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  dt {
    white-space: nowrap;
    margin-right: 0.4em;
  }
}
.newsList__bottom {
  
}
.newsList__title {
  font-size: 15px;
  font-weight: bold;
}
.newsListData {
  background-color: #e2e2e2;
  padding: 0.3em 0.8em;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.8em;
  margin-top: 0.5em;
}
.newsListData__list {
  display: flex;
  dt {
    white-space: nowrap;
  }
}
.homeEvent__btn {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 750px){
    justify-content: center;
  }
}
.homeWork {
  padding: 70px 0 50px;
  background-color: #eeeeee;
  @media screen and (max-width: 750px){
    padding: 30px 0 30px;
  }
}
.homeWork__title {
  max-width: 1120px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0 30px;
  }
}
.homeWorkList {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
.homeWorkList__thumb {
  img {
    aspect-ratio: 400 / 300;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.homeWorkList__item {
  width: 400px;
  @media screen and (max-width: 750px){
    img {
      width: 280px;
    }
  }
}
.homeWorkList__btn {
  max-width: 1120px;
  margin: 60px auto 0;
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 750px){
    margin-top: 35px;
    justify-content: center;
  }
}
.homeWorkList__info {
  padding: 1em 1.5em;
  @media screen and (max-width: 750px){
    width: 280px;
  }
}
.homeWorkList__area {
  font-size: 14px;
  font-weight: bold;
}
.homeWorkList__title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0.5em;
  @media screen and (max-width: 750px){
    margin-top: 10px;
    font-size: 14px;
  }
}
.homeWorkList__tags {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  margin-top: 1em;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    gap: 0 0.4em;
  }
  li {
    color: #97938c;
    font-size: 14px;
    font-weight: bold;
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
}
.homeKeyword {
  padding: 60px 0 0;
  @media screen and (max-width: 750px){
    padding: 40px 15px 0;
  }
}
.homeKeyword__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  @media screen and (max-width: 750px){
    display: block;
  }
}
.homeKeyword__left {
  width: 240px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.homeKeyword__title {
  @media screen and (max-width: 750px){
    padding-left: 9px;
  }
}
.homeKeyword__right {
  flex: 1; 
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}
.tagList__wrapper {
  height: 120px;
  overflow: hidden;
  @media screen and (max-width: 750px){
    height: auto;
    margin-top: 20px;
    max-height: 156px;
  }
}
.tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  @media screen and (max-width: 750px){
    
  }
  li {
    a {
      display: block;
      padding: 6px 18px;
      border-radius: 10px;
      background-color: #e1e1e1;
      color: inherit;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      @media screen and (max-width: 750px){
        font-size: 12px;
      }
    }
  }
}
.homeKeyword__btn {
  margin-top: 50px;
  text-align: center;
  display: none;
}

.homeMachi {
  padding: 110px 0 0;
  @media screen and (max-width: 750px){
    padding: 50px 15px 0;
  }
}
.homeMachi__inner {
  max-width: 960px;
  margin: 0 auto;
}
.homeMachi__title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-zenkaku);
  color: var(--color-brown);
  margin-bottom: 0.8em;
  @media screen and (max-width: 750px){
    
  }
} 
.homeMachi__box {
  border-radius: 4px 32px 4px 4px;
  border: 1px solid var(--color-brown);
  padding: 50px 46px 50px 36px;
  display: flex;
  @media screen and (max-width: 750px){
    padding: 30px 25px 40px;
    display: block;
  }
}
.homeMachi__left {
  width: 488px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.homeMachi__right {
  padding-left: 40px;
  flex: 1;
  @media screen and (max-width: 750px){
    padding: 30px 0 0;
  }
}
.homeMachi__h3 {
  font-size: 24px;
  font-family: var(--font-serif);
  @media screen and (max-width: 750px){
    font-size: 20px;
  }
}
.homeMachi__text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 0.8em;
}
.homeMachi__btn {
  margin-top: 30px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
  a {
    display: block;
    text-decoration: none;
    position: relative;
    width: 290px;
    max-width: 100%;
    .en {
      color: var(--color-brown);
      font-size: 12px;
      font-weight: 500;
      font-family: var(--font-zenkaku);
    }
    .ja {
      font-size: 20px;
      font-family: var(--font-serif);
      display: block;
      margin-top: 0.5em;
      color: var(--color);
    }
    &:after {
      content: "";
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid var(--color-brown);
      background: url(../img/arrow_brown.svg) no-repeat center/20px auto;
      position: absolute;
      right: 0px;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
    }
    &:hover {
      &:after {
        transform: translateY(-50%) translateX(6px);
      }
    }
  }
}
.homeCounter {
  padding: 188px 0 0;
  @media screen and (max-width: 750px){
    padding: 60px 15px 0;
  }
}
.homeCounter__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 60px;
  @media screen and (max-width: 750px){
    display: block;
    padding: 0;
  }
}
.homeCounter__left {
  width: 484px;
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
    padding: 0 30px;
  }
}
.homeCounter__en {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-zenkaku);
  position: absolute;
  top: 60px;
  left: -40px;
  @media screen and (max-width: 750px){
    top: 55px;
    left: 14px;
  }
}
.homeCounter__thumb {
  img {
    border-radius: 0 64px 0 0;
    @media screen and (max-width: 750px){
      border-radius: 0 32px 0 0;
    }
  }
}
.homeCounter__right {
  width: 470px;
  @media screen and (max-width: 750px){
    width: 100%;
    padding: 30px 30px 0;
  }
}
.homeCounter__title {
  font-size: 29px;
  font-family: var(--font-serif);
  @media screen and (max-width: 750px){
    font-size: 20px;
  }
}
.homeCounter__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  margin-top: 1.5em;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.homeCounterLinks {
  margin-top: 55px;
  @media screen and (max-width: 750px){
    margin: 40px -15px;
  }
}
.homeCounterLinks__item {
  + .homeCounterLinks__item {
    margin-top: 2em;
  }
  a {
    display: flex;
    text-decoration: none;
    align-items: center;
    position: relative;
    @media screen and (max-width: 750px){
      align-items: stretch;
    }
    &:after {
      content: "";
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid var(--color-brown);
      background: url(../img/arrow_brown.svg) no-repeat center/20px auto;
      position: absolute;
      right: 0px;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
      @media screen and (max-width: 750px){
        bottom: 0px;
        left: 218px;
        top: auto;
        right: auto;
        transform: translateY(0);
      }
    }
    &:hover {
      &:after {
        transform: translateY(-50%) translateX(6px);
      }
    }
  }
}
.homeCounterLinks__thumb {
  width: 180px;
  margin-right: 32px;
  @media screen and (max-width: 750px){
    margin-right: 20px;
  }
}
.homeCounterLinks__right {
  position: relative;
  width: 234px;
  @media screen and (max-width: 750px){
    width: auto;
    flex: 1;
  }
}
.homeCounterLinks__en {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-zenkaku);
  color: var(--color-brown);
}
.homeCounterLinks__ja {
  font-size: 20px;
  font-family: var(--font-serif);
  margin-top: 0.5em;
  color: var(--color);
  @media screen and (max-width: 750px){
    font-size: 17px;
    white-space: nowrap;
    margin-top: 0.3em;
  }
}
.homeInstagram {
  margin-top: 120px;
  padding: 95px 0 132px;
  background-color: #f8f7f4;
  @media screen and (max-width: 750px){
    margin-top: 80px;
    padding: 60px 30px 40px;
  }
}
.homeInstagram__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
.homeInstagram__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-family: var(--font-zenkaku);
  font-weight: 500;
  letter-spacing: 0.05em;
  img {
    width: 23px;
    margin-right: 12px;
  }
}
.homeInstagram__list {
  margin-top: 40px;
}
.homeInstagram__link {
  position: absolute;
  top: 0px;
  right: 0px;
  @media screen and (max-width: 750px){
    position: static;
    text-align: center;
    margin-top: 40px;
  }
}

.bottomContact {
  padding: 100px 0 94px;
  @media screen and (max-width: 750px){
    padding: 60px 15px 50px;
  }
}
.bottomContact__inner {
  max-width: 914px;
  margin: 0 auto;
}
.bottomContact__text {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 3em;
  @media screen and (max-width: 750px){
    font-size: 15px;
    margin-top: 2em;
  }
}
.bottomContactRow {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    display: block;
  }
  &.-single {
    justify-content: center;
  }
}
.bottomContactWeb {
  padding: 30px 0 20px;
  width: 440px;
  border-radius: 4px 32px 4px 4px;
  border: 1px solid var(--color-brown);
  text-align: center;
  text-decoration: none;
  color: inherit;
  @media screen and (max-width: 750px){
    display: block;
    width: 100%;
  }
}
.bottomContactWeb__top {
  display: flex;
  align-items: center;
  justify-content: center;
  .icon {
    width: 64px;
    margin-right: 16px;
    @media screen and (max-width: 750px){
      width: 52px;

    }
  }
  .text {
    font-size: 24px;
    font-family: var(--font-serif);
    letter-spacing: 0.025em;
    @media screen and (max-width: 750px){
      font-size: 20px;
    }
  }
}
.bottomContactWeb__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 0.8em;
  @media screen and (max-width: 750px){
    font-size: 13px;
  }
}
.bottomContactTel {
  padding: 30px 0 12px;
  width: 440px;
  border-radius: 4px 32px 4px 4px;
  border: 1px solid var(--color-brown);
  text-align: center;
  text-decoration: none;
  color: inherit;
  @media screen and (max-width: 750px){
    display: block;
    width: 100%;
    padding: 20px 0 20px;
    margin-top: 20px;
  }
}
.bottomContactTel__top {
  display: flex;
  align-items: center;
  justify-content: center;
  .icon {
    width: 20px;
    margin-right: 10px;
    @media screen and (max-width: 750px){
      width: 16px;
    }
  }
  .text {
    font-size: 24px;
    font-family: var(--font-serif);
    letter-spacing: 0.025em;
    @media screen and (max-width: 750px){
      font-size: 20px;
    }
  }
}
.bottomContactTel__tel {
  align-items: center;
  display: flex;
  justify-content: center;
  .left {
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
  .tel {
    font-family: var(--font-zenkaku);
    font-size: 31px;
    font-weight: 500;
    letter-spacing: 0.1em;
    @media screen and (max-width: 750px){
      font-size: 25px;
    }
  }
}
.bottomContactTel__time {
  font-size: 16px;
  font-weight: 500;
  margin-top: 0.4em;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.footer {
  padding: 60px 0 50px;
  background-color: #f8f7f4;
  @media screen and (max-width: 750px){
    padding: 40px 20px 60px;
  }
}
.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    display: block;
  }
}
.footer__left {
  width: 320px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.footer__logo {
  width: 120px;
  @media screen and (max-width: 750px){
    display: none;
  }
}
.footer__name {
  font-size: 16px;
  font-weight: bold;
  margin-top: 30px;
  @media screen and (max-width: 750px){
    margin-top: 0;
  }
}
.footer__address {
  font-size: 14px;
  font-weight: 500;
  margin-top: 0.3em;
}
.footer__tel {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: var(--font-zenkaku);
  img {
    width: 20px;
    margin-right: 6px;
  }
}
.footer__map {
  margin-top: 30px;
  iframe {
    height: 200px;
    width: 100%;
  }
}
.footer__right {
  width: 390px;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 50px;
  }
}
.footer__navi {
  display: flex;
  justify-content: space-between;
  ul {
    li {
      + li {
        margin-top: 10px;
      }
      a {
        font-size: 14px;
        font-weight: 500;
        color: inherit;
        text-decoration: none;
        &:hover {
          text-decoration: underline;
        }
        @media screen and (max-width: 750px){
          font-size: 13px;
        }
      }
    }
  }
}
.footer__sns {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 750px){
    justify-content: center;
    margin-top: 60px;
  }
  li {
    width: 22px;
    margin-left: 6px;
    @media screen and (max-width: 750px){
      width: 36px;
      margin: 0 10px;
    }
  }
}
.copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    
  }
}

.main-page {
  padding-top: 190px;
  @media screen and (max-width: 750px){
    padding-top: 102px;
  }
}
.msnIntro {
  padding: 70px 0 130px;
  background-color: #f8f7f4;
  @media screen and (max-width: 750px){
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.msnIntro__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.msnIntro__title {
  margin: 65px auto 50px;
  height: 166px;
  background: url(../img/msn/icon_home.svg) no-repeat center/contain;
  text-align: center;
  padding-top: 48px;
  @media screen and (max-width: 750px){
    margin: 23px auto 34px;
    height: 133px;
    padding-top: 36px;
  }
  .en {
    display: block;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-zenkaku);
    color: var(--color-brown);
    @media screen and (max-width: 750px){
      font-size: 13px;
    }
  }
  .ja {
    display: block;
    font-size: 28px;
    font-family: var(--font-serif);
    margin-top: 0.5em;
    @media screen and (max-width: 750px){
      font-size: 20px;
    }
  }
}
.msnIntro__text {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  max-width: 740px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    margin: 30px 30px 0;
    text-align: left;
  }
  small {
    display: block;
    @media screen and (max-width: 750px){
      margin-top: 1em;
      font-size: 14px;
    }
  }
}
.msnIntro__h3 {
  font-weight: bold;
  font-size: 21px;
  letter-spacing: 0.3em;
  margin: 5em 0 1.5em;
  color: var(--color-brown);
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 17px;
    letter-spacing: 0.1em;
  }
}
.msnIntroTags {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media screen and (max-width: 750px){
    margin: 40px auto 0;
    width: 342px;
  }
}
.msnIntroTags__list {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  @media screen and (max-width: 750px){
    padding-left: 90px;
    flex-wrap: wrap;
    gap: 8px 6px;
    justify-content: flex-start;
  }
  li {
    font-size: 18px;
    font-weight: bold;
    background-color: #fff;
    border: 1px solid var(--color-brown);
    color: var(--color-brown);
    border-radius: 4px;
    padding: 0.3em 2em;
    @media screen and (max-width: 750px){
      font-size: 15px;
      padding: 0.3em 1em;
    }
  }
  &:before {
    content: "例えば";
    display: block;
    box-sizing: border-box;
    width: 90px;
    height: 85px;
    background: url(../img/msn/balloon.svg) no-repeat center/contain;
    position: absolute;
    top: -46px;
    left: -127px;
    padding: 32px 0 0 18px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    @media screen and (max-width: 750px){
      width: 80px;
      height: 75px;
      left: 0px;
      top: 0px;
      font-size: 15px;
      padding: 28px 0 0 16px;
    }
  }
}
.msnIntroTags__thumb {
  max-width: 900px;
  margin-top: 64px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.msnFlow {
  padding: 60px 0;
  @media screen and (max-width: 750px){
    padding: 40px 0;
  }
}
.msnFlow__inner {
  max-width: 900px;
  margin: 0 auto;
}
.msnFlow__list {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  @media screen and (max-width: 750px){
    gap: 16px 40px;
    flex-wrap: wrap;
  }
  li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ebebe1;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    @media screen and (max-width: 750px){
      width: 117px;
      height: 117px;
      font-size: 15px;
    }
    &:after {
      content: "";
      background: url(../img/msn/flow_arrow.svg) no-repeat center/contain;
      width: 15px;
      height: 30px;
      position: absolute;
      top: 50%;
      right: -38px;
      transform: translateY(-50%);
      @media screen and (max-width: 750px){
        width: 10px;
        height: 21px;
        right: -25px;
      }
    }
    &:last-child {
      background-color: var(--color-brown);
      color: #fff;
      &:after {
        display: none;
      }
    }
  }
}
.msnFlowList__text {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  margin-top: 50px;
  @media screen and (max-width: 750px){
    font-size: 15px;
    padding: 0 36px;
  }
}
.msnContact {
  padding: 90px 0 140px;
  background-color: #f8f7f4;
  @media screen and (max-width: 750px){
    padding: 40px 20px 0px;
  }
}
.mw_wp_form_confirm,
.mw_wp_form_complete {
  .msnContact {
    padding-top: 120px;
    @media screen and (max-width: 750px){
      padding-top: 90px;
    }
  }
}
.msnContact__inner {
  max-width: 900px;
  margin: 0 auto;
}
.contact__h3 {
  margin-bottom: 35px;
  background-color: #808080;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 20px;
  margin-top: 60px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    padding: 6px 18px;
    margin-bottom: 25px;
    margin-top: 40px;
  }
}
.contactBlock {
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    display: block;
  }
  + .contactBlock {
    margin-top: 24px;
    @media screen and (max-width: 750px){
      margin-top: 15px;
    }
  }
}
.contactBlock__left {
  width: 220px;
  padding-left: 75px;
  position: relative;
  color: #666666;
  font-size: 16px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    width: 100%;
    padding-left: 64px;
    font-size: 14px;
    min-height: 1.5em;
  }
  .required {
    position: absolute;
    border: 2px solid #e60012;
    border-radius: 50vh;
    width: 56px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.2;
    color: #e60012;
    padding: 2px 0;
    text-align: center;
    position: absolute;
    top: -2px;
    left: 0px;
    @media screen and (max-width: 750px){
      font-size: 13px;
      width: 48px;
    }
  }
  .free {
    position: absolute;
    border: 2px solid #727171;
    border-radius: 50vh;
    width: 56px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.2;
    color: #727171;
    padding: 2px 0;
    text-align: center;
    position: absolute;
    top: -2px;
    left: 0px;
    @media screen and (max-width: 750px){
      font-size: 13px;
      width: 48px;
    }
  }
}
.contactBlock__right {
  flex: 1;
  @media screen and (max-width: 750px){
    margin-top: 10px;
    width: 100%;
  }
}
.contactBlock__notice {
  font-size: 13px;
  margin-top: 0.5em;
}
.contactBlock {
  &.-clm {
    flex-direction: column;
    .contactBlock__left {
      width: 100%;
    }
    .contactBlock__right {
      width: 100%;
      margin-top: 20px;
      @media screen and (max-width: 750px){
        margin-top: 10px;
      }
    }
  }
}
.contactBlock__row {
  display: flex;
  width: 100%;
  gap: 12px;
}
.contactBlock__clm {
  flex: 1;
}
.dateblock {
  display: flex;
  align-items: center;
  gap: 40px;
}
.dateblock__left {
  width: 346px;
}
.form-text {
  height: 58px;
  width: 100%;
  padding: 0 0.5em;
  border-style: none;
  background-color: #e8e8e8;
  @media screen and (max-width: 750px){
    height: 50px;
  }
  &::placeholder {
    color: #999999;
  }
}
.form-textarea {
  height: 240px;
  width: 100%;
  padding: 0.5em 0.5em;
  border-style: none;
  background-color: #e8e8e8;
  &::placeholder {
    color: #999999;
  }
}
.form-time {
  background-color: #e8e8e8;
  border-style: none;
  height: 30px;
  padding: 0 0.5em;
}
.contactSubmit {
  margin-top: 60px;
  text-align: center;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}
.contactSubmit__note {
  color: #e60012;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  @media screen and (max-width: 750px){
    font-size: 13px;
  }
}
.contactSubmit__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  @media screen and (max-width: 750px){
    gap: 10px;
  }
}
.btn-submit {
  -webkit-appearance: none;
  width: 600px;
  max-width: 100%;
  height: 44px;
  border-radius: 6px;
  background-color: #6d6c6c;
  border-style: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  &:hover {
    background-color: #555454;
  }
  @media screen and (max-width: 750px){
    width: 280px;
    height: 38px;
    font-size: 14px;
  }
}
.contactTel {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  @media screen and (max-width: 750px){
    margin: 40px -20px 0;
    background-color: #fff;
    padding: 30px 20px 30px;
    flex-direction: column;
  }
}
.contactTel__left {
  background-color: #999999;
  color: #fff;
  border-radius: 6px;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 16px;
    padding: 12px 30px;
  }
}
.contactTel__right {
  margin-left: 40px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    margin-left: 0;
    text-align: center;
  }
}
.contactTel__name {
  font-size: 20px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 17px;
  }
}
.contactTel__tel {
  font-size: 25px;
  font-weight: 500;
}

.companyIntro {
  padding-top: 30px;
  background-color: #f8f7f4;
}
.companyIntro__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.companyIntro__thumb {
  margin-top: 40px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}
.companyPhilosophy {
  padding: 80px 0 120px;
  background-color: #f8f7f4;
  @media screen and (max-width: 750px){
    padding: 40px 0 60px;
  }
}
.companyPhilosophy__read {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    margin-top: 12px;
    font-size: 15px;
  }
}
.companyPhilosophyCircle {
  width: 504px;
  height: 504px;
  border: 1px solid var(--color-brown);
  border-radius: 50%;
  position: relative;
  margin: 120px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  @media screen and (max-width: 750px){
    width: 237px;
    height: 237px;
    margin: 80px auto 0;
  }
}
.companyPhilosophyCircle__logo {
  width: 128px;
  @media screen and (max-width: 750px){
    width: 60px;
  }
}
.companyPhilosophyCircle__item {
  position: absolute;
  width: 43%;
  height: 43%;
  border-radius: 50%;
  border: 1px solid var(--color-brown);
  background-color: #f8f7f4;
  text-align: center;
  padding-top: 50px;
  @media screen and (max-width: 750px){
    padding-top: 16px;
    width: 47%;
    height: 47%;
  }
  &.-item01 {
    top: calc(-77 / 504 * 100%);
    left: calc(145 / 504 * 100%);
  }
  &.-item02 {
    top: calc(77 / 504 * 100%);
    left: calc(388 / 504 * 100%);
  }
  &.-item03 {
    top: calc(326 / 504 * 100%);
    left: calc(300 / 504 * 100%);
  }
  &.-item04 {
    top: calc(326 / 504 * 100%);
    left: calc(-11 / 504 * 100%);
  }
  &.-item05 {
    top: calc(77 / 504 * 100%);
    left: calc(-98 / 504 * 100%);
  }
}
.companyPhilosophyCircle__title {
  color: var(--color-brown);
  .en {
    display: block;
    font-size: 15px;
    font-weight: 500;
    @media screen and (max-width: 750px){
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      height: 1.8em;
      font-size: 10px;
      line-height: 1;
    }
  }
  .ja {
    font-size: 20px;
    font-weight: bold;
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
}
.companyPhilosophyCircle__text {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    font-size: 9px;
    margin-top: 0px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
}
.companyGuideline {
  padding: 80px 0 150px;
  @media screen and (max-width: 750px){
    padding: 50px 0 70px;
  }
}
.companyGuideline__read {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    margin-top: 12px;
    font-size: 15px;
  }
}
.companyGuidelineCircle {
  width: 504px;
  height: 504px;
  background-color: #ebebe1;
  border-radius: 50%;
  position: relative;
  margin: 120px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  @media screen and (max-width: 750px){
    width: 237px;
    height: 237px;
    margin: 80px auto 0;
  }
  &:after {
    content: "";
    width: 120%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    z-index: -1;
    background-color: #ebebe1;
    opacity: 0.5;
  }
}
.companyGuidelineCircle__logo {
  width: 120px;
  @media screen and (max-width: 750px){
    width: 60px;
  }
}
.companyGuidelineCircle__item {
  position: absolute;
  width: 43%;
  height: 43%;
  border-radius: 50%;
  background-color: #bdb7a3;
  text-align: center;
  padding-top: 50px;
  color: #fff;
  @media screen and (max-width: 750px){
    padding-top: 16px;
    width: 47%;
    height: 47%;
  }
  &.-item01 {
    top: calc(-77 / 504 * 100%);
    left: calc(145 / 504 * 100%);
  }
  &.-item02 {
    top: calc(77 / 504 * 100%);
    left: calc(388 / 504 * 100%);
  }
  &.-item03 {
    top: calc(326 / 504 * 100%);
    left: calc(300 / 504 * 100%);
  }
  &.-item04 {
    top: calc(326 / 504 * 100%);
    left: calc(-11 / 504 * 100%);
  }
  &.-item05 {
    top: calc(77 / 504 * 100%);
    left: calc(-98 / 504 * 100%);
  }
}
.companyGuidelineCircle__title {
  .en {
    display: block;
    font-size: 15px;
    font-weight: 500;
    @media screen and (max-width: 750px){
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      height: 1.8em;
      font-size: 10px;
      line-height: 1;
    }
  }
  .ja {
    font-size: 20px;
    font-weight: bold;
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
}
.companyGuidelineCircle__text {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    font-size: 9px;
    margin-top: 0px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
}
.companyConcept {
  padding: 80px 0 110px;
  background-color: #f8f7f4;
  @media screen and (max-width: 750px){
    padding: 40px 36px 60px;
  }
}
.companyConcept__logo {
  width: 232px;
  margin: 130px auto 0;
  @media screen and (max-width: 750px){
    margin-top: 60px;
    width: 160px;
  }
}
.companyConcept__text {
  text-align: center;
  margin-top: 100px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  @media screen and (max-width: 750px){
    font-size: 14px;
    margin-top: 60px;
    text-align: left;
  }
}
.companyMessage {
  padding: 100px 0 100px;
  @media screen and (max-width: 750px){
    padding: 60px 36px 50px;
  }
}
.companyMessage__inner {
  max-width: 944px;
  margin: 0 auto;
}

.companyMessage__thumb {
  max-width: 550px;
  margin: 65px auto 0;
  @media screen and (max-width: 750px){
    max-width: 256px;
    margin-top: 30px;
  }
}
.companyMessage__name {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    font-size: 15px;
  }
}
.companyMessageContent {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: 65px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    display: block;
    height: 26.4em;
    overflow: hidden;
  }
}
.companyMessageContent__clm {
  flex: 1;
  @media screen and (max-width: 750px){
    display: contents;
  }
}
.companyMessageContent__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
  @media screen and (max-width: 750px){
    display: inline;
  }
}
.companyMessage__more {
  @media screen and (min-width: 751px){
    display: none !important;
  }
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.companyProfile {
  padding-top: 100px;
  background-color: #f8f7f4;
  @media screen and (max-width: 750px){
    padding: 30px 20px 0;
  }
}
.companyProfile__inner {
  max-width: 880px;
  margin: 0 auto;
}
.companyProfile__title {
  margin-top: 80px;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
}
.companyProfile__table {
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid #404040;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
  tr {
    border-bottom: 1px solid #404040;
  }
  th {
    padding: 12px 36px;
    width: 182px;
    background-color: #b3b3b3;
    color: #fff;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-zenkaku);
    @media screen and (max-width: 750px){
      width: 78px;
      padding: 5px 8px;
      font-size: 12px;
    }
  }
  td {
    padding: 12px 36px;
    font-weight: 500;
    font-family: var(--font-zenkaku);
    @media screen and (max-width: 750px){
      font-size: 12px;
      padding: 5px 8px;
    }
  }
}
.companyAccess {
  padding: 110px 0 95px;
  background-color: #f8f7f4;
  @media screen and (max-width: 750px){
    padding: 60px 20px 48px;
  }
}
.companyAccess__inner {
  max-width: 880px;
  margin: 0 auto;
}
.companyAccess__name {
  margin-top: 30px;
  font-size: 19px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}
.companyAccess__row {
  display: flex;
  gap: 50px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 20px;
  }
}
.companyAccess__address {
  font-size: 16px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
  + .companyAccess__address {
    margin-top: 1em;
  }
}
.companyAccess__h3 {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-brown);
  width: 108px;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 13px;
    width: 100px;
  }
}
.companyAccess__access {
  font-size: 14px;
  font-weight: 500;
  margin-top: 1em;
}
.companyAccess__map {
  margin-top: 50px;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
  iframe {
    width: 100%;
    height: 268px;
    @media screen and (max-width: 750px){
      height: 184px;
    }
  }
}
.estateIntro {
  padding-top: 160px;
  @media screen and (max-width: 750px){
    padding-top: 120px;
  }
}
.estateIntro__inner {
  max-width: 1120px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    display: flex;
    flex-direction: column;
    margin: 0 25px;
    position: relative;
  }
}
.estateIntro__top {
  margin-left: 140px;
  position: relative;
  display: flex;
  @media screen and (max-width: 750px){
    display: contents;
  }
}
.estateIntro__title {
  @media screen and (max-width: 750px){
    order: 1;
  }
  .en {
    display: block;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-serif);
    color: var(--color-brown);
  }
  .ja {
    display: block;
    font-size: 26px;
    font-family: var(--font-serif);
    margin-top: 25px;
    @media screen and (max-width: 750px){
      font-size: 21px;
    }
  }
}
.estateIntro__subtitle {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 16px;
  position: absolute;
  top: -148px;
  left: 200px;
  writing-mode: vertical-rl;
  @media screen and (max-width: 750px){
    top: -110px;
    left: 255px;
  }
}
.estateIntro__text {
  margin: 40px 0 0 56px;
  font-size: 15px;
  font-family: var(--font-serif);
  line-height: 2;
  @media screen and (max-width: 750px){
    margin: 30px 0 0;
    order: 3;
  }
}
.estateIntro__thumb {
  margin-top: 30px;
  @media screen and (max-width: 750px){
    order: 2;
    margin: 30px -25px 0;
  }
}
.estateArchive {
  margin-top: 100px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
  }
}
.estateArchive__inner {
  max-width: 1120px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0 25px;
  }
}
.estateArchiveList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 40px;
  @media screen and (max-width: 750px){
    gap: 16px 24px;
  }
}
.estateArchiveList__item {
  width: calc((100% - 120px) / 4);
  @media screen and (max-width: 750px){
    width: calc((100% - 24px) / 2);
  }
}
.estateArchiveList__thumb {
  position: relative;
  img {
    aspect-ratio: 250 / 188;
    width: 100%;
    object-fit: cover;
  }
  .new {
    font-size: 16px;
    font-family: var(--font-zenkaku);
    font-weight: bold;
    color: var(--color-red);
    transform: rotate(90deg);
    transform-origin: right bottom;
    position: absolute;
    bottom: 0px;
    right: calc(100% + 1.2em);
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
}
.estateArchiveList__cat {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  li {
    font-size: 14px;
    font-weight: 500;
    padding: 0 14px;
    background-color: #808080;
    border-radius: 5px;
    color: #fff;
    @media screen and (max-width: 750px){
      font-size: 12px;
      padding: 1px 12px;
    }
  }
}
.estateArchiveList__title {
  font-size: 15px;
  margin-top: 10px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}

.newsHeader {
  padding-top: 60px;
  @media screen and (max-width: 750px){
    padding-top: 40px;
  }
}
.newsHeader__inner {
  max-width: 1120px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0 25px;
  }
}
.newsHeader__navi {
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 750px){
    justify-content: center;
    margin-top: 30px;
  }
  li {
    padding: 0.1em 1em;
    border-left: 1px solid var(--color);
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    &:first-child {
      border-left: none;
    }
    a {
      color: inherit;
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
      &.is-active {
        text-decoration: underline;
      }
    }
  }
}
.newsArchives {
  margin-top: 35px;
}
.newsArchives__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.main-news {
  padding-top: 190px;
  padding-bottom: 80px;
  background-color: #ebebeb;
  @media screen and (max-width: 750px){
    padding-top: 110px;
  }
}
.newsSingle {
  max-width: 1000px;
  margin: 30px auto 0;
  background-color: #fff;
  padding: 60px 178px 70px;
  @media screen and (max-width: 750px){
    padding: 40px 25px 40px;
  }
}
.newsSingle__icons {
  display: flex;
  gap: 4px;
  margin-top: 36px;
  li {
    min-width: 108px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 1px 1em;
    border-radius: 4px;
    border: 1px solid var(--color);
    &.-brown {
      border-color: var(--color-brown);
      color: #fff;
      background-color: var(--color-brown);
    }
  }
}
.newsSingle__title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 24px;
}
.newsSingle__info {
  margin-top: 40px;
  dl {
    display: flex;
    align-items: center;
    + dl {
      margin-top: 12px;
    }
    dt {
      width: 54px;
      font-size: 15px;
      line-height: 1.2;
      padding: 3px 0;
      text-align: center;
      border: 1px solid var(--color);
      font-weight: bold;
    }
    dd {
      font-size: 15px;
      font-weight: bold;
      margin-left: 0.5em;
      flex: 1;
    }
  }
}
.newsContent {
  margin-top: 50px;
}
.newsEstate {
  margin-top: 100px;
}
.newsEstate__inner {
  max-width: 1000px;
  margin: 30px auto 0;
  padding: 40px 111px 40px;
  background-color: #fff;
  @media screen and (max-width: 750px){
    padding: 30px 25px 30px;
  }
}
.newsEstate__name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.lineupList {
  display: flex;
  gap: 60px 18px;
  margin-top: 30px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    gap: 24px 11px;
    flex-wrap: wrap;
  }
  &.is-single {
    @media screen and (max-width: 750px){
      justify-content: center;
    }
  }
}
.lineupList__item {
  width: calc((100% - 54px) / 4);
  @media screen and (max-width: 750px){
    width: calc((100% - 15px) / 2);
  }
}
.lineupList__thumb {
  position: relative;
  img {
    width: 100%;
    aspect-ratio: 180 / 220;
    object-fit: cover;
  }
  .finish {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brown);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
  }
}
.lineupList__middle {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.lineupList__name {
  font-size: 16px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.lineupList__floor {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-brown);
  @media screen and (max-width: 750px){
    font-size: 13px;
  }
}
.lineupList__info {
  margin-top: 10px;
  dl {
    display: flex;
    align-items: center;
    + dl {
      margin-top: 6px;
    }
  }
  dt {
    min-width: 56px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    background-color: #cccccc;
    font-size: 13px;
    font-weight: bold;
    @media screen and (max-width: 750px){
      font-size: 12px;
      height: 20px;
    }
  }
  dd {
    margin-left: 0.2em;
    font-size: 13px;
    font-weight: bold;
  }
}
.lineupList__more {
  margin-top: 20px;
  a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 30px;
    border: 1px solid var(--color-brown);
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    &:after {
      content: "";
      width: 16px;
      height: 16px;
      background: url(../img/arrow_brown.svg) no-repeat center/contain;
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);  
      transition: transform 0.3s ease;
    }
    &:hover {
      &:after {
        transform: translateY(-50%) translateX(4px);
      }
    }
  }
}
.lineup__link {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
}
.lineupInfo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 36px;
  @media screen and (max-width: 750px){
    
  }
  dl {
    display: flex;
    align-items: center;
    width: calc((100% - 20px) / 2);
    @media screen and (max-width: 750px){
      width: 100%;
    }
    dt {
      min-width: 68px;
      font-size: 15px;
      line-height: 1.2;
      padding: 5px 0;
      text-align: center;
      background-color: var(--color-brown);
      color: #fff;
      font-weight: bold;
    }
    dd {
      font-size: 15px;
      font-weight: bold;
      margin-left: 0.5em;
    }
  }
}
.newsAccess {
  max-width: 1000px;
  margin: 100px auto 0;
  padding: 40px 78px 80px;
  background-color: #fff;
  @media screen and (max-width: 750px){
    padding: 40px 25px 40px;
  }
}
.access__row {
  display: flex;
  padding: 0 34px;
  @media screen and (max-width: 750px){
    display: block;
    padding: 0;
  }
}
.access__left {
  width: 50%;
  padding-right: 2em;
  @media screen and (max-width: 750px){
    width: 100%;
    padding: 0;
  }
}
.access__title {
  font-size: 20px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.access__address {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.access__info {
  margin-top: 10px;
  margin-left: 3em;
  font-size: 14px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    margin-left: 0;
  }
}
.access__time {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    display: block;
  }
  dt {
    width: 84px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #666666;
    text-align: center;
    padding: 2px 0;
  }
  dd {
    margin-left: 0.8em;
    font-size: 14px;
    font-weight: 500;
    @media screen and (max-width: 750px){
      margin-top: 0.8em;
      margin-left: 0;
    }
  }
}
.access__right {
  width: 50%;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    width: 100%;
  }
  iframe {
    width: 100%;
    height: 360px;
    @media screen and (max-width: 750px){
      height: 190px;
    }
  }
}
.newsContact {
  margin-top: 100px;
}
.newsContact__inner {
  max-width: 1000px;
  margin: 30px auto 0;
  padding: 60px 78px 60px;
  background-color: #fff;
  @media screen and (max-width: 750px){
    padding: 40px 25px 40px;
  }
}
.contact__title {
  margin-top: 60px;
  .msnContact &,
  .aboutContact & {
    margin-top: 0;
  }
}
.worksHeader {
  padding-top: 60px;
  @media screen and (max-width: 750px){
    padding-top: 30px;
  }
}
.worksHeader__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.worksKeyword {
  margin-top: 40px;
  @media screen and (max-width: 750px){
    margin: 30px 25px 0;
  }
}
.worksKeyword__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 60px 70px 50px 36px;
  border: 2px solid #cccccc;
  border-radius: 10px;
  @media screen and (max-width: 750px){
    padding: 20px 10px 20px;
    display: block;
  }
}
.worksKeyword__left {
  width: 240px;
  @media screen and (max-width: 750px){
    width: 1005;
  }
}
.worksKeyword__right {
  flex: 1;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}
.worksKeyword__btn {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  display: none;
  @media screen and (max-width: 750px){
    height: 45px;
  }
}
.worksArchives {
  padding-top: 80px;
  @media screen and (max-width: 750px){
    padding: 40px 25px 0;
  }
}
.worksArchives__inner {
  width: 100%;
  max-width: 1046px;
  margin: 0 auto;
}
.worksList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 65px;
  @media screen and (max-width: 750px){
    gap: 30px;
    padding-left: 15px;
  }
}
.worksList__item {
  width: calc((100% - 130px) / 3);
  position: relative;
  @media screen and (max-width: 750px){
    width: calc((100% - 30px) / 2);
  }
}
.worksList__thumb {
  img {
    width: 100%;
    aspect-ratio: 300 / 200;
    object-fit: cover;
  }
}
.worksList__area {
  font-size: 14px;
  font-weight: bold;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0px;
  right: calc(100% + .4em);
  @media screen and (max-width: 750px){
    font-size: 12px;
  }
}
.worksList__title {
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
}
.worksSingleHeader {
  text-align: center;
  @media screen and (max-width: 750px){
    padding-top: 30px;
    margin: 0 25px;
  }
}
.worksSingleHeader__area {
  font-size: 15px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.worksSingleHeader__title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.worksGallery {
  max-width: 860px;
  margin: 30px auto 0;
  @media screen and (max-width: 750px){
    padding: 0 25px;
  }
}
.worksGalleryMain {
  .slick-prev {
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
    z-index: 1;
    position: absolute;
    width: 45px;
    height: 45px;
    background: url(../img/works/arrow_prev.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 24px;
      height: 24px;
      left: -12px;
    }
  }
  .slick-next {
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
    z-index: 1;
    position: absolute;
    width: 45px;
    height: 45px;
    background: url(../img/works/arrow_next.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 24px;
      height: 24px;
      right: -12px;
    }
  }
}
.worksGalleryMain__img {
  img {
    max-height: 495px;
    margin: 0 auto;
    width: auto;
    height: auto;
    @media screen and (max-width: 750px){
      max-height: 58vw;
    }
  }
}
.worksGallerySub {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  @media screen and (max-width: 750px){
    margin-top: 10px;
    gap: 10px;
  }
}
.worksGallerySub__img {
  width: calc((100% - 60px) / 4);
  cursor: pointer;
  @media screen and (max-width: 750px){
    width: calc((100% - 30px) / 4);
  }
  img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}
.worksContent {
  max-width: 680px;
  margin: 80px auto 0;
  @media screen and (max-width: 750px){
    margin: 40px 25px 0;
  }
}
.worksContent__title {
  font-size: 20px;
  font-weight: bold;
}
.worksContent__content {
  margin-top: 40px;
}
.worksPoint {
  max-width: 860px;
  margin: 80px auto 0;
  @media screen and (max-width: 750px){
    margin: 40px 25px 0;
  }
}
.worksPointList {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
}
.worksPointList__item {
  width: calc((100% - 40px) / 2);
}
.worksPointList__thumb {
  img {
    width: 100%;
    aspect-ratio: 420 / 280;
    object-fit: cover;
  }
}
.worksPointList__title {
  font-size: 17px;
  font-weight: bold;
  margin-top: 20px;
  color: var(--color-brown);
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}
.worksPointList__text {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  @media screen and (max-width: 750px){
    font-size: 14px;
    line-height: 1.5;
  }
}
.worksTags {
  max-width: 860px;
  margin: 70px auto 0;
  @media screen and (max-width: 750px){
    margin: 40px 25px 0;
  }
}
.worksTags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 00.5em;
  li {
    font-size: 15px;
    font-weight: bold;
    color: #97938d;
  }
}
.worksEstate {
  margin-top: 120px;
  @media screen and (max-width: 750px){
    margin-top: 60px;
  }
}
.worksEstate__inner {
  max-width: 1120px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0 25px;
  }
}
.worksEstate__btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 70px;
  @media screen and (max-width: 750px){
    justify-content: center;
    margin-top: 40px;
  }
}
.worksEstate__title {
  margin-bottom: 30px; 
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}

.estate {
  @media screen and (min-width: 751px){
    .header__inner {
      background-color: transparent !important;
      width: calc(100% - 260px) !important;
    }
    .header__right {
      display:  none !important;
    }
  }
}
.main-estate {
  display: flex; 
  @media screen and (max-width: 750px){
    display: block;
  }
}
.estateLeft {
  flex: 1;
  padding-bottom: 100px;
  @media screen and (max-width: 750px){
    padding-bottom: 0;
  }
}
.estateRight {
  width: 260px;
  background-color: #ebebeb;
  @media screen and (max-width: 750px){
    display: none;
  }
}
.estateRight__inner {
  position: sticky;
  padding-top: 65px;
  width: 100%;
  top: 0px;
}
.estateSingleHeader {
  padding-top: 60px;
  text-align: center;
  @media screen and (max-width: 750px){
    padding-top: 105px;
  }
}
.estateSingleHeader__text {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-zenkaku);
  color: var(--color-brown);
}
.estateSingleMain {
  max-width: 908px;
  margin: 85px auto 0;
  @media screen and (max-width: 750px){
    margin: 12px 15px 0;
  }
}
.estateConcept {
  padding-top: 40px;
  @media screen and (max-width: 750px){
    padding-top: 30px;
  }
}
.estateConcept__inner {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  @media screen and (max-width: 750px){
    padding: 0 25px;
  }
}
.estateConcept__name {
  font-size: 36px;
  font-family: var(--font-serif);
  writing-mode: vertical-rl;
  position: absolute;
  top: 0px;
  left: -96px;
  @media screen and (max-width: 750px){
    left: auto;
    right: 25px;
    font-size: 28px;
    writing-mode: horizontal-tb;
  }
}
.estateConcept__text {
  font-size: 16px;
  font-family: var(--font-serif);
  margin-top: 20px;
  line-height: 1.8;
}
.estateConcept__img {
  margin: 60px 44px 0;
  text-align: center;
  @media screen and (max-width: 750px){
    margin-top: 35px;
  }
}
.estateConcept__school {
  text-align: center;
  margin-top: 60px;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
  div {
    display: inline-block;
    padding: 6px 2em;
    min-width: 320px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50vh;
    border: 1px solid var(--color);
    @media screen and (max-width: 750px){
      min-width: 272px;
      font-size: 14px;
    }
  }
}
.estateLineup {
  padding-top: 80px;
  @media screen and (max-width: 750px){
    padding-top: 60px;
  }
}
.estateLineup__inner {
  max-width: 778px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    margin: 0 25px;
  }
}
.estatePoint {
  padding-top: 90px;
  @media screen and (max-width: 750px){
    padding: 40px 25px 0;
  }
}
.estatePoint__inner {
  max-width: 778px;
  margin: 0 auto;
  padding: 30px 56px 45px;
  border: 1px solid var(--color-brown);
  border-radius: 4px 32px 4px 4px;
  @media screen and (max-width: 750px){
    padding: 20px 20px 30px;
  }
}
.estatePoint__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    gap: 12px;
  }
  li {
    display: flex;
    font-size: 17px;
    font-weight: bold;
    @media screen and (max-width: 750px){
      font-size: 15px;
    }
    &:before {
      content: "";
      width: 24px;
      height: 24px;
      background: url(../img/estate/icon_check.svg) no-repeat center/contain;
      margin-right: 12px;
      flex-shrink: 0;
    }
  }
}
.estateEnv {
  padding-top: 100px;
  @media screen and (max-width: 750px){
    padding: 40px 25px 0;
  }
}
.estateEnv__inner {
  max-width: 846px;
  margin: 0 auto;
}
.estateEnvList {
  margin: 40px 20px 0;
  @media screen and (max-width: 750px){
    margin: 24px 0 0;
  }
}
.estateEnvList__thumb {
  padding: 0 5px;
  img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
}
.estateEnvList__info {
  padding: 0 5px;
  font-size: 13px;
  margin-top: 0.5em;
  @media screen and (max-width: 750px){
    font-size: 12px;
  }
}
.estateEnvList {
  .slick-prev {
    top: 51px;
    left: -45px;
    z-index: 1;
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../img/estate/icon_prev.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 24px;
      height: 24px;
      left: -12px;
      top: 3.5vw;
    }
  }
  .slick-next {
    top: 51px;
    right: -45px;
    z-index: 1;
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../img/estate/icon_next.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 24px;
      height: 24px;
      right: -12px;
      top: 3.5vw;
    }
  }
}
.estateAccess {
  padding-top: 120px;
  @media screen and (max-width: 750px){
     padding: 30px 25px 0;
  }
}
.estateAccess__inner {
  max-width: 846px;
  margin: 0 auto;
}
.estateContact {
  padding-top: 100px;
  @media screen and (max-width: 750px){
    padding: 45px 25px 0;
  }
}
.estateContact__inner {
  max-width: 846px;
  margin: 0 auto;
}
.estateInfo {
  margin-top: 60px;
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    margin-top: 35px;
    display: block;
  }
}
.estateInfo__left {
  padding: 0.5em 1em;
  width: 70px;
  color: #fff;
  background: #505050;
  font-size: 14px;
  text-align: center;
  @media screen and (max-width: 750px){
    width: 100%;
    font-size: 14px;
  }
}
.estateInfo__right {
  flex: 1;
  margin-left: 1em;
  font-size: 14px;
  @media screen and (max-width: 750px){
    margin-left: 0;
    font-size: 13px;
    margin-top: 0.8em;
  }
}
.estateNavi {
  text-align: center;
  li {
    margin-bottom: 24px;
  }
  a {
    display: inline-block;
    text-decoration: none;
    color: #808080;
    font-weight: bold;
    .en {
      font-size: 15px;
      display: block;
    }
    .ja {
      font-size: 9px;
      display: block;
    }
  }
}
.estateSns {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  li {
    width: 22px;
    margin: 0 3px;
  }
}
.estateDetail {
  padding-top: 84px;
  max-width: 800px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 30px 0 0;
    margin-left: 25px;
    margin-right: 25px;
  }
  + .estateDetail {
    margin-top: 100px;
    padding-top: 100px;
    border-top: 1px solid var(--color);
    @media screen and (max-width: 750px){
      margin-top: 40px;
      padding-top: 40px;
    }
  }
}
.estateDetailGalleryMain {
  margin-top: 20px;
}
.estateDetailGalleryMain__item {
  img {
    max-height: 500px;
    width: auto;
    height: auto;
    margin: 0 auto;
    @media screen and (max-width: 750px){
      max-height: 58vw;
    }
  }
}
.estateDetailGallerySub {
  margin-top: 20px;
  @media screen and (max-width: 750px){
    margin-top: 10px;
  }
  .slick-prev {
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
    z-index: 1;
    position: absolute;
    width: 45px;
    height: 45px;
    background: url(../img/estate/icon_prev.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 18px;
      height: 18px;
      left: -15px;
    }
  }
  .slick-next {
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
    z-index: 1;
    position: absolute;
    width: 45px;
    height: 45px;
    background: url(../img/estate/icon_next.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 18px;
      height: 18px;
      right: -15px;
    }
  }
}
.estateDetailGallerySub__item {
  padding: 0 5px;
  cursor: pointer;
  @media screen and (max-width: 750px){
    padding: 0 2px;
  }
  img {
    width: 100%;
    aspect-ratio: 192 / 130;
    object-fit: cover;
  }
}
.estateDetailConcept {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    margin-top: 30px;
    display: block;
  }
}
.estateDetailConcept__left {
  width: 368px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  @media screen and (max-width: 750px){
    width: 100%;
    font-size: 14px;
  }
}
.estateDetailConcept__right {
  width: 420px;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 40px;
  }
}
.estateDetailInfo {
  margin-top: 40px;
  padding: 20px 25px 30px;
  background-color: #edecea;
  @media screen and (max-width: 750px){
    padding: 20px 10px 20px;
  }
}
.estateDetailInfo__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  dl {
    display: flex;
    align-items: center;
    dt {
      font-size: 14px;
      padding: 5px 1em;
      background-color: #fff;
      border-radius: 5px;
      font-weight: bold;
    }
    dd {
      margin-left: 10px;
      font-size: 14px;
      font-weight: bold;
    }
  }
}
.estateDetailInfo__tags {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  li {
    padding: 2px 1em;
    background-color: var(--color-brown);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
  }
}
.estateDetailInfo__table {
  margin-top: 15px;
  background-color: #fff;
  padding: 15px 20px;
    dl {
    display: flex;
    padding: 8px 15px;
    &:not(:first-child) {
      border-top: 1px solid var(--color);
    }
    dt {
      width: 108px;
      font-size: 14px;
      font-weight: bold;
    }
    dd {
      font-size: 14px;
      font-weight: bold;
    }
  } 
}
.main-about {
  padding: 190px 0 100px;
  background-color: #f8f7f4;
  @media screen and (max-width: 750px){
    padding-top: 102px;
    padding-bottom: 40px;
  }
}
.aboutIntro {
  text-align: center;
}
.aboutIntro__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.aboutIntro__title {
  margin-top: 70px;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
  .en {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-brown);
    font-family: var(--font-zenkaku);
    @media screen and (max-width: 750px){
      font-size: 13px;
    }
  }
  .ja {
    font-size: 28px;
    font-family: var(--font-serif);
    margin-top: 20px;
    display: block;
    @media screen and (max-width: 750px){
      font-size: 22px;
      margin-top: 10px;
    }
  }
}
.aboutIntro__logo {
  margin: 50px auto 0;
  width: 116px;
  @media screen and (max-width: 750px){
    margin-top: 24px;
    width: 100px;
  }
}
.aboutIntro__subtitle {
  margin-top: 60px;
  font-size: 21px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
    margin-top: 36px;
  }
}
.aboutIntro__text {
  margin-top: 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  @media screen and (max-width: 750px){
    font-size: 16px;
    margin-top: 25px;
    padding: 0 36px;
    text-align: left;
  }
}
.aboutIntro__list {
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
  width: 292px;
  height: 254px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    width: 264px;
    height: 228px;
  }
  &:before {
    content: "";
    background-color: var(--color-brown);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    height: calc(150 / 254 * 100%);
    width: calc(166 / 292 * 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }
  &:after {
    content: "";
    background-color: #f8f7f4;
    position: absolute;
    top: calc(50% + calc(1 / 254 * 100%));
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    height: calc(144 / 254 * 100%);
    width: calc(160 / 292 * 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }
  li {
    position: absolute;
    width: calc(124 / 292 * 100%);
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-brown);
    z-index: 2;
    @media screen and (max-width: 750px){
      font-size: 15px;
    }
    &.item01 {
      top: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    &.item02 {
      bottom: 0;
      right: 0;
    }
    &.item03 {
      bottom: 0;
      left: 0;
    }
  }
}
.aboutConcept {
  padding-top: 90px;
  @media screen and (max-width: 750px){
    padding-top: 60px;
  }
}
.aboutConcept__inner {
  max-width: 1020px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0 15px;
  }
}
.aboutConceptList {
  margin-top: 122px;
  @media screen and (max-width: 750px){
    margin-top: 50px;
  }
}
.aboutConceptList__item {
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
    padding-left: 28px;
    padding-right: 28px;
  }
  + .aboutConceptList__item {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid var(--color);
    @media screen and (max-width: 750px){
      margin-top: 38px;
      padding-top: 44px;
    }
  }
  @media screen and (min-width: 751px){
    &:nth-child(even) {
      flex-direction: row-reverse;
      .aboutConceptList__en {
        left: auto;
        right: -36px;
      }
    }
  }
}
.aboutConceptList__left {
  width: 424px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.aboutConceptList__num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 280px;
  height: 90px;
  background: url(../img/about/concept_baloon.png) no-repeat center/contain;
  font-size: 17px;
  font-weight: bold;
  padding-bottom: 1em;
  @media screen and (max-width: 750px){
    margin: 0 auto;
  }
  .num {
    position: absolute;
    left: -8px;
    top: -8px;
    width: 44px;
    height: 44px;
    background-color: var(--color);
    color: #fff;
    border-radius: 50%;
    font-size: 25px;
    font-weight: bold;
    font-family: var(--font-zenkaku);
  }
}
.aboutConceptList__copy {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}
.aboutConceptList__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  @media screen and (max-width: 750px){
    margin-top: 15px;
    line-height: 1.8;
  }
}
.aboutConceptList__right {
  width: 475px;
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 30px;
  }
}
.aboutConceptList__thumb {
  img {
    border-radius: 10px;
  }
}
.aboutConceptList__en {
  position: absolute;
  top: 0px;
  left: -36px;
  writing-mode: vertical-rl;
  font-size: 22px;
  font-weight: bold;
  font-family: var(--font-zenkaku);
  @media screen and (max-width: 750px){
    left: -20px;
    font-size: 18px;
  }
}
.aboutFlow {
  padding-top: 190px;
  @media screen and (max-width: 750px){
    padding: 60px 15px 0;
  }
}
.aboutFlow__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.aboutFlow__intro {
  margin-top: 70px;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
  dl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 442px;
    height: 72px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid var(--color);
    border-radius: 6px;
    @media screen and (max-width: 750px){
      width: 312px;
      height: 58px;
    }
    dt {
      width: 138px;
      height: 42px;
      background-color: var(--color);
      color: #fff;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: bold;
      @media screen and (max-width: 750px){
        width: 112px;
        height: 34px;
        font-size: 16px;
      }
    }
    dd {
      font-size: 20px;
      font-weight: bold;
      margin-left: 0.8em;
    }
  }
}
.aboutFlowList {
  max-width: 920px;
  margin: 110px auto 0;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.aboutFlowList__item {
  display: flex;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 60px;
    &:first-child {
      flex-direction: column-reverse;
      gap: 40px;
    }
  }
  + .aboutFlowList__item {
    margin-top: 130px;
    @media screen and (max-width: 750px){
      margin-top: 50px;
    }
  }
}
.aboutFlowList__left {
  flex: 1;
}
.aboutFlowList__num {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color);
  @media screen and (max-width: 750px){
    padding-bottom: 12px;
  }
  .num {
    border-radius: 4px;
    background-color: var(--color-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 35px;
    color: #fff;
    font-weight: bold;
    font-family: var(--font-zenkaku);
    @media screen and (max-width: 750px){
      width: 45px;
      height: 45px;
      font-size: 28px;
    }
  }
  .text {
    font-size: 20px;
    font-weight: bold;
    margin-left: 1em;
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
  }
}
.aboutFlowList__right {
  width: 357px;
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.aboutFlowList__balloon {
  position: absolute;
  top: -60px;
  width: 176px;
  height: 28px;
  padding-top: 3px;
  background: url(../img/about/line_left.svg) no-repeat left center, url(../img/about/line_right.svg) no-repeat right center;
  background-size: contain, contain;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
  @media screen and (max-width: 750px){
    top: -37px;
  }
}
.aboutFlowList__text {
  padding-right: 90px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    padding: 0;
    line-height: 1.8;
  }
}
.aboutFlowList__link {
  margin-top: 20px;
}
.aboutReason {
  padding-top: 180px; 
  @media screen and (max-width: 750px){
    padding: 65px 20px 0;
  }
}
.aboutReason__inner {
  max-width: 996px;
  margin: 0 auto;
  padding: 40px 36px 50px;
  background-color: #99958e;
  border-radius: 4px;
  @media screen and (max-width: 750px){
    padding: 20px 0 30px;
  }
}
.aboutReason__title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  @media screen and (max-width: 750px){
    font-size: 20px;
  }
}
.aboutReasonList {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  @media screen and (max-width: 750px){
    gap: 13px;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
  }
}
.aboutReasonList__item {
  width: calc((100% - 48px) / 3);
  background-color: #fff;
  padding: 24px 0px 30px;
  border-radius: 6px;
  text-align: center;
  @media screen and (max-width: 750px){
    width: 246px;
    height: 162px;
    padding: 18px 0 0;
  }
}
.aboutReasonList__title {
  font-size: 20px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 17px;
  }
}
.aboutReasonList__text {
  font-size: 15px;
  font-weight: bold;
  margin-top: 0.2em;
  @media screen and (max-width: 750px){
    font-size: 13px;
  }
}
.aboutReasonList__img {
  margin-top: 18px;
  @media screen and (max-width: 750px){
    margin-top: 8px;
  }
  img {
    height: 80px;
    width: auto;
    @media screen and (max-width: 750px){
      height: 68px;
    }
  }
}
.aboutKids {
  margin-top: 120px;
  padding: 90px 100px;
  background-color: #f4efc7;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    padding: 30px 15px 40px;
  }
}
.aboutKids__inner {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  @media screen and (max-width: 750px){
    flex-direction: column-reverse;
  }
}
.aboutKids__left {
  width: 400px;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 20px;
  }
}
.aboutKids__right {
  width: 608px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.aboutKids__title {
  width: 390px;
  height: 150px;
  background: url(../img/about/kids_balloon.png) no-repeat center/contain;
  padding: 0.7em 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f7931e;
  font-size: 22px;
  font-weight: bold;
  margin-left: -26px;
  @media screen and (max-width: 750px){
    width: 312px;
    height: 120px;
    margin: 0 auto;
    font-size: 20px;
    padding-left: 1em;
  }
}
.aboutKids__text {
  margin-top: 24px;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
.aboutCounter {
  padding-top: 100px;
  @media screen and (max-width: 750px){
    padding: 40px 25px 0px;
  }
}
.aboutCounter__inner {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #524b40;
  border-radius: 0 70px 0 0;
  padding: 40px 0 54px 0;
  @media screen and (max-width: 750px){
    padding: 30px 25px 40px;
    border-radius: 0 60px 0 0;
  }
}
.aboutCounter__title {
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.aboutCounter__row {
  display: flex;
  margin-top: 40px;
  padding-right: 60px;
  @media screen and (max-width: 750px){
    display: block;
    padding: 0;
    margin-top: 25px;
  }
}
.aboutCounter__left {
  width: 498px;
  @media screen and (max-width: 750px){
    width: auto;
    margin: 0 -25px;
  }
}
.aboutCounter__right {
  flex: 1;
  padding-left: 45px;
  color: #fff;
  @media screen and (max-width: 750px){
    padding: 0;
    margin-top: 20px;
  }
}
.aboutCounter__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  + .aboutCounter__text {
    margin-top: 1em;
  }
}
.aboutCounter__list {
  font-size: 15px;
  margin-top: 0.5em;
}
.aboutContact {
  padding-top: 100px;
  padding-bottom: 100px;
  @media screen and (max-width: 750px){
    padding: 50px 20px 50px;
  }
}
.mw_wp_form_confirm,
.mw_wp_form_complete {
  .aboutContact {
    padding-top: 120px;
    @media screen and (max-width: 750px){
      padding-top: 90px;
    }
  }
}
.mwform-checkbox-field-text {
  font-weight: bold;
}
.aboutContact__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pageHeader {
  padding-top: 30px;
}
.pageContent {
  padding: 80px 0 0;
  @media screen and (max-width: 750px){
    padding-top: 40px;
  }
}
.pageContent__inner {
  max-width: 800px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0 25px;
  }
}