@charset "UTF-8";
/*---------------------------------------
基本設定
---------------------------------------*/
html,
body {
  box-sizing: border-box;
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin: 0;
  background-color: #fff;
  overflow-x: hidden;
}
@media screen and (min-width:640px) {
  html,
  body {
    font-size: 16px;
  }
}

body * {
  box-sizing: border-box;
}

::-moz-selection {
  background: #48516A;
  color: #CCCCCC;
}

::selection {
  background: #48516A;
  color: #CCCCCC;
}

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

/*---------------------------------------
ヘッダー
---------------------------------------*/
.header {
  z-index: 10;
  position: relative;
}
.headerInner {
  height: 100px;
}
@media screen and (min-width:1025px) {
  .headerInner {
    height: auto;
    padding-top: 48px;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
  }
}
.header h1 {
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  padding-left: 16px;
}
@media screen and (min-width:1025px) {
  .header h1 {
    height: auto;
    justify-content: center;
    padding-left: 0;
  }
}
.header .logoLarge {
  width: calc(100% - 110px);
}
@media screen and (min-width:640px) {
  .header .logoLarge {
    height: 60px;
    width: auto;
    margin-top: 14px;
  }
}
@media screen and (min-width:1025px) {
  .header .logoLarge {
    height: auto;
    margin-top: auto;
    width: 700px;
  }
}
.header .logoSmall {
  opacity: 0;
  position: fixed;
  top: 1px;
  left: 24px;
  display: none;
}
@media screen and (min-width:1025px) {
  .header .logoSmall {
    display: block;
  }
}
.header .logoSmall.scroll {
  opacity: 1;
  top: 32px;
}
.fixlink {
  writing-mode: vertical-rl;
  z-index: 3;
  position: relative;
  font-family: Poppins;
  font-weight: 600;
  font-size: 10px;
}
@media screen and (min-width:1025px) {
  .fixlink {
    font-size: 12px;
    display: block;
  }
}
.fixlink div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  text-align: center;
}
@media screen and (min-width:640px) {
  .fixlink div {
    top: 0;
  }
}
.fixlink .copyright {
  display: none;
  left: 5px;
}
@media screen and (min-width:1025px) {
  .fixlink .copyright {
    display: inherit;
    left: 24px;
  }
}
.fixlink .sns {
  left: 0;
  flex-direction: column-reverse;
}
.fixlink .sns span {
  display: none;
}
@media screen and (min-width:640px) {
  .fixlink .sns {
    left: auto;
    right: 16px;
    flex-direction: row;
  }
  .fixlink .sns span {
    display: inherit;
  }
}
.fixlink .sns img {
  position: relative;
  width: 24px;
  margin-bottom: 3px;
}
@media screen and (min-width:640px) {
  .fixlink .sns img {
    width: 20px;
    margin-bottom: 6px;
  }
}
.fixlink .sns a {
  background-color: #fff;
  margin: 0;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #48516A;
}
.fixlink .sns a:not(:last-child) {
  border-right: 1px solid #48516A;
}
@media screen and (min-width:640px) {
  .fixlink .sns a {
    background-color: transparent;
    border-top: none;
    margin-bottom: 24px;
    width: auto;
    height: auto;
  }
  .fixlink .sns a:not(:last-child) {
    border-right: none;
  }
  .fixlink .sns a:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width:479px) {
  .fixlink .sns a {
    width: 56px;
    height: 56px;
  }
}

.reserve {
  position: fixed;
  bottom: 0;
  right: 0;
  transition: 0.5s;
  width: calc(100% - 160px);
  z-index: 1000;
}
@media screen and (min-width:640px) {
  .reserve {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width:479px) {
  .reserve {
    width: calc(100% - 112px);
  }
}
.reserve a {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background-color: #48516A;
  color: #ffffff;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 1.3;
  height: 80px;
}
.reserve a img {
  height: 24px;
}
.reserve a .tel-num {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}
@media screen and (max-width:479px) {
  .reserve a {
    height: 56px;
    font-size: 10px;
    padding: 14px 18px;
  }
  .reserve a img {
    height: 20px;
  }
}

/*---------------------------------------
コンテンツ
---------------------------------------*/
.contents {
  background-image: url(/assets/img/cmn/footer_line.svg);
  background-size: 1442px auto;
  background-position: bottom center;
  background-repeat: repeat-x;
}
.contents section > div[class$=Inner] {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.contents p {
  letter-spacing: 0.8px;
  line-height: 170%;
}

/*---------------------------------------
フッター
---------------------------------------*/
.footer {
  background-color: #48516A;
  padding-top: 84px;
  padding-bottom: 84px;
}
@media screen and (max-width:639px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.footerInner {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer .logo {
  display: block;
}
@media screen and (min-width:640px) {
  .footer .logo {
    margin-bottom: 48px;
  }
}
@media screen and (max-width:639px) {
  .footer .logo {
    width: 90%;
  }
}
@media screen and (max-width:639px) {
  .footerNav {
    display: none;
  }
}
.footerNav ul {
  display: flex;
}
.footerNav ul li a {
  color: #fff;
  font-size: 13px;
  margin: 0 9px;
}

/*---------------------------------------
グロナビ
---------------------------------------*/
.gnav {
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-out;
  overflow: auto;
}
@media screen and (min-width:1025px) {
  .gnav {
    width: 100%;
    opacity: 1;
    right: -100%;
    width: 20%;
  }
}

.nav-toggle:checked ~ .gnav {
  position: fixed;
  opacity: 1;
  pointer-events: auto;
  overflow: hidden;
  z-index: 9999999;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
@media screen and (min-width:1025px) {
  .nav-toggle:checked ~ .gnav {
    right: 0;
    opacity: 1;
  }
}

.gnav {
  background: transparent;
  background-color: rgba(255, 255, 255, 0.92);
}
.gnav ul.nav-list {
  padding-top: 80px;
}
@media screen and (min-width:1025px) {
  .gnav ul.nav-list {
    padding-top: 112px;
  }
}
.gnav ul.nav-list li {
  border-top: 1px solid #48516A;
  padding-left: 32px;
  padding-right: 32px;
}
.gnav ul.nav-list li:last-child {
  border-bottom: 1px solid #48516A;
}
.gnav ul.nav-list li a {
  display: flex;
  padding-top: 24px;
  padding-bottom: 24px;
  color: #48516A;
}
.gnav ul.nav-list li a:after {
  content: url(/assets/img/cmn/ico_arrow_right_navy.svg);
  margin-left: auto;
}

/*---------------------------------------
ハンバーガーメニュー
---------------------------------------*/
.btn-burger {
  background-color: #48516A;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  color: #fff;
  align-items: flex-end;
  z-index: 999999999;
  transition: 0.2s ease-out;
  padding-bottom: 17px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width:1025px) {
  .btn-burger {
    width: 112px;
    height: 112px;
    padding-bottom: 30px;
  }
}
.btn-burger .icon, .btn-burger .icon:after, .btn-burger .icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  width: 34px;
  background-color: #fff;
  cursor: pointer;
  margin: auto;
  transition: 0.2s ease-out;
  top: 37%;
  border-radius: 1000px;
}
@media screen and (min-width:1025px) {
  .btn-burger .icon, .btn-burger .icon:after, .btn-burger .icon:before {
    width: 42px;
    top: 39%;
  }
}
.btn-burger .icon:before {
  margin: 0;
  top: 9px;
}
@media screen and (min-width:1025px) {
  .btn-burger .icon:before {
    top: 11px;
  }
}
.btn-burger .icon:after {
  margin: 0;
  top: -9px;
}
@media screen and (min-width:1025px) {
  .btn-burger .icon:after {
    top: -11px;
  }
}

.nav-toggle {
  display: none;
}
.nav-toggle:checked ~ .btn-burger {
  background-color: #48516A;
  background-color: transparent;
  color: #48516A;
}
.nav-toggle:checked ~ .btn-burger .icon, .nav-toggle:checked ~ .btn-burger .icon:before, .nav-toggle:checked ~ .btn-burger .icon:after {
  background-color: transparent;
}
.nav-toggle:checked ~ .btn-burger .icon:before {
  background-color: #48516A;
  transform: rotate(-45deg);
  top: 0;
}
.nav-toggle:checked ~ .btn-burger .icon:after {
  background-color: #48516A;
  transform: rotate(45deg);
  top: 0;
}

/*---------------------------------------
heading
---------------------------------------*/
.h2-style {
  padding-top: 48px;
  font-size: 32px;
  color: #000000;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 0.1em;
  font-weight: 100;
}
.h2-style small {
  color: #fff;
  font-size: 12px;
  display: block;
  background-color: #48516A;
  padding: 4px 16px;
}
@media screen and (min-width:640px) {
  .h2-style small {
    font-size: 16px;
  }
}
@media screen and (min-width:1025px) {
  .h2-style small {
    padding: 10px 2px;
  }
}
.h2-style span {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 2px;
  color: #48516A;
}
@media screen and (min-width:640px) {
  .h2-style span {
    font-size: 40px;
    letter-spacing: 6px;
  }
}
@media screen and (max-width:639px) {
  .h2-style span {
    margin-top: 16px;
    line-height: 1.1;
  }
}

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 4.2px;
}
@media screen and (max-width:639px) {
  h3 {
    letter-spacing: 3px;
  }
}

.h3-style {
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}
.h3-style span {
  border-bottom: 3px solid #000000;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 3.3px;
  margin-bottom: 24px;
}
@media screen and (max-width:639px) {
  h4 {
    font-size: 18px;
  }
}

.h4-style {
  margin-bottom: 16px;
  font-size: 18px;
  text-align: center;
  margin-bottom: 24px;
}

h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.9px;
  margin-bottom: 16px;
}

/*---------------------------------------
links
---------------------------------------*/
a {
  color: #000000;
  text-decoration: none;
  transition: 0.2s ease-out;
}
a img {
  transition: 0.2s ease-out;
}

a:hover {
  color: #958181;
  opacity: 0.8;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
}

a.link-text {
  color: #48516A;
  position: relative;
}
a.link-text::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #48516A;
  border-right: 2px solid #48516A;
  transform: rotate(45deg);
}

/*---------------------------------------
btn
---------------------------------------*/
.btn {
  background-color: #fff;
  border-radius: 100px;
  border: 2px solid #000;
  display: inline-block;
  font-size: 15px;
  padding: 10px 44px;
  text-decoration: none;
  text-align: left;
  position: relative;
}
@media screen and (max-width:639px) {
  .btn {
    font-size: 13px;
  }
}
.btn a {
  position: relative;
  z-index: 99;
}
.btn:after {
  content: url(/assets/img/cmn/ico_arrow_right.svg);
  position: relative;
  top: 1px;
  margin-left: 8px;
}
.btn.blank:before {
  background-image: url(/assets/img/cmn/ico_blank.svg);
  background-position: right 16px center;
}
.btn:hover {
  text-decoration: none;
}
.btn.accentR {
  font-weight: bold;
  margin: 30px 0;
  padding: 12px 56px;
  border: 2px solid #FFFFFF;
  background-color: #fff;
  color: #48516A;
  height: auto;
  line-height: auto;
}
.btn.accentR:before {
  background-image: none;
  height: auto;
  right: auto;
  position: relative;
  top: auto;
  width: auto;
}
.btn.accentR:hover {
  background-color: #fdf0f0;
}
.btn.accentR:after {
  content: url(/assets/img/cmn/ico_arrow_accent_r.svg);
  margin-left: 10px;
}
.btn.accentL {
  font-weight: bold;
  margin: 30px 0;
  padding: 12px 56px;
  border: 2px solid #FFFFFF;
  background-color: #fff;
  color: #48516A;
  height: auto;
  line-height: auto;
}
.btn.accentL:hover {
  background-color: #fdf0f0;
}
.btn.accentL:before {
  background-image: none;
  height: auto;
  right: auto;
  position: relative;
  top: auto;
  width: auto;
  content: url(/assets/img/cmn/ico_arrow_accent_l.svg);
  margin-right: 10px;
}
.btn.accentL:after {
  content: none;
}

/*---------------------------------------
icon
---------------------------------------*/
.contents span.icon, .contents .btn-burger span.icon:before, .btn-burger .contents span.icon:before, .contents .btn-burger span.icon:after, .btn-burger .contents span.icon:after {
  font-size: 12px;
  display: inline-block;
  font-weight: 700;
  border: 1px solid #000;
  line-height: 110%;
  padding: 4px 8px;
  border-radius: 100px;
  position: relative;
  top: -2px;
  letter-spacing: 0.7px;
  margin-right: -4px;
}

.contents span.icon.areaNormal, .contents .btn-burger span.areaNormal.icon:before, .btn-burger .contents span.areaNormal.icon:before, .contents .btn-burger span.areaNormal.icon:after, .btn-burger .contents span.areaNormal.icon:after {
  border: 2px dashed #d44101;
}

.contents span.icon.areaAway, .contents .btn-burger span.areaAway.icon:before, .btn-burger .contents span.areaAway.icon:before, .contents .btn-burger span.areaAway.icon:after, .btn-burger .contents span.areaAway.icon:after {
  border: 2px dashed #0048d4;
}

/*---------------------------------------
table
---------------------------------------*/
.table-style {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  margin: 0.5em 0;
}
.table-style th {
  background-color: #48516A;
  color: #ffffff;
  text-align: center;
  padding: 12px 8px;
}
.table-style td {
  background-color: #ffffff;
  text-align: left;
  padding: 12px 8px;
}
.table-style .nowrap {
  white-space: nowrap;
}
@media screen and (min-width:640px) {
  .table-style th {
    padding-left: 24px;
    padding-right: 24px;
  }
  .table-style td {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/*---------------------------------------
list
---------------------------------------*/
ul {
  padding-left: 0;
  list-style: none;
}
ul.listNormal {
  margin-top: 4px;
  margin-bottom: 4px;
}

.listNormal li {
  padding: 1px 8px 1px 20px;
  position: relative;
  margin-bottom: 2px;
  margin-top: 2px;
}
.listNormal li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 7px;
  background-color: #000;
  position: absolute;
  top: 12px;
  left: 8px;
  margin: auto;
}

/*---------------------------------------
flex
---------------------------------------*/
div[class^=flex] {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:639px) {
  div[class^=flex] {
    display: block;
  }
}

.flex-cross {
  display: block !important;
}
.flex-cross > div:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width:639px) {
  .flex-cross > div:nth-child(even) {
    flex-direction: row;
  }
}
.flex-two > * {
  flex-wrap: wrap;
  width: 48%;
}
@media screen and (max-width:639px) {
  .flex-two > * {
    width: 100%;
  }
}
.flex-three {
  flex-wrap: wrap;
}
.flex-three > * {
  width: 33%;
}
@media screen and (max-width:639px) {
  .flex-three > * {
    width: 100%;
  }
}

/*---------------------------------------
text/fonts
---------------------------------------*/
.txtC {
  text-align: center;
}

.txtL {
  text-align: left;
}

.txtR {
  text-align: right;
}

.txtSup {
  font-size: 13px;
}

.strong {
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 40%, #FCFF76 40%);
  font-weight: bold;
}

.txtRed {
  color: #D44000;
}

.big {
  font-size: 112%;
}

.small {
  font-size: 85%;
}

.txtWeak {
  color: #666666;
}

span.nowrap {
  white-space: nowrap;
}

/*---------------------------------------
layout
---------------------------------------*/
.img1 img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width:640px) {
  .img1 img {
    height: 320px;
  }
}
@media screen and (min-width:1025px) {
  .img1 img {
    width: 1024px;
    height: 400px;
  }
}
@media screen and (min-width:1025px) {
  .img1 {
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

.img2,
.img3 {
  display: flex;
}
.img2 img,
.img3 img {
  width: calc(50% - 1px);
  height: 144px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 1px;
}
.img2 img:last-child,
.img3 img:last-child {
  width: 50%;
  margin-right: 0;
}
@media screen and (min-width:640px) {
  .img2 img,
  .img3 img {
    height: 280px;
  }
}
@media screen and (min-width:1025px) {
  .img2 img,
  .img3 img {
    width: 512px;
    height: 320px;
  }
}
@media screen and (min-width:1025px) {
  .img2,
  .img3 {
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

.img3 img {
  width: calc(33.3% - 1px);
}
.img3 img:last-child {
  width: 33.3%;
}
@media screen and (min-width:640px) {
  .img3 img {
    height: 240px;
  }
}
@media screen and (min-width:1025px) {
  .img3 img {
    width: 33.3%;
    height: 280px;
  }
}
@media screen and (min-width:1025px) {
  .img3 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }
}

.opT {
  -o-object-position: 50% 0;
  object-position: 50% 0;
}

.opB {
  -o-object-position: 50% 100%;
  object-position: 50% 100%;
}

.full-width {
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
}

.bg-gray {
  background-color: #ffffff;
  padding: 24px;
}
@media screen and (min-width:640px) {
  .bg-gray {
    padding: 24px 64px;
  }
}

.waku-box {
  border: 2px solid #E5DDD3;
  padding: 24px;
  border-radius: 16px;
}

hr {
  border: none;
  background-color: #ffffff;
  border-width: 2px 0 0 0;
  border-top: 1px solid;
  border-color: #000000;
}

/*---------------------------------------
misc
---------------------------------------*/
.pc {
  display: none;
}
@media screen and (min-width:640px) {
  .pc {
    display: inherit;
  }
}

.sp {
  display: inherit;
}
@media screen and (min-width:640px) {
  .sp {
    display: none;
  }
}

@media screen and (min-width:640px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}/*# sourceMappingURL=style.css.map */