@charset "UTF-8";
/*
 * Media Break
 */
/*
 * BEM関連
 */
/*
 * clearfix
 */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs
*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul li, ol li {
  list-style: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  width: 100%;
  overflow-x: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #222;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: auto;
  overflow: hidden;
  background-size: 100%;
  position: relative;
  text-align: unset !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

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

header, nav, main, footer, small, button, label {
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

a:hover, a:active, button:hover, button:active {
  color: inherit;
  outline: 0;
  text-decoration: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  border-radius: 0;
}

a:hover, a:active {
  outline: 0;
  opacity: 0.8;
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #a5a5a5;
}

:-ms-input-placeholder {
  color: #a5a5a5;
}

::-moz-placeholder {
  color: #a5a5a5;
}

::-placeholder {
  color: #a5a5a5;
}

input[type=checkbox] {
  cursor: pointer;
}

select {
  cursor: pointer;
}

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

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

.pc {
  display: none !important;
}
@media (min-width: 769px) {
  .pc {
    display: block !important;
  }
}

.mobile {
  display: block !important;
}
@media (min-width: 769px) {
  .mobile {
    display: none !important;
  }
}

.mobile-in {
  display: inline-block !important;
}
@media (min-width: 769px) {
  .mobile-in {
    display: none !important;
  }
}

.is-flex {
  display: flex !important;
}

.is-flex-pc {
  display: block;
}
@media (min-width: 769px) {
  .is-flex-pc {
    display: flex !important;
  }
}

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

.is-flex-column {
  flex-direction: column;
}

.is-flex-row {
  flex-direction: row;
}

.is-row-reverse {
  flex-direction: row-reverse;
}

.is-column-reverse {
  flex-direction: column-reverse;
}

.is-justify-between {
  justify-content: space-between;
}

.is-justify-center {
  justify-content: center;
}

.is-justify-end {
  justify-content: flex-end;
}

.is-align-start {
  align-items: flex-start;
}

.is-align-center {
  align-items: center;
}

.is-align-end {
  align-items: flex-end;
}

.is-hide {
  display: none !important;
}

.is-show {
  display: block !important;
}

.is-fixed {
  position: fixed;
}

.is-relative {
  position: relative;
}

.is-absolute {
  position: absolute;
}

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

.z-front {
  z-index: 100;
}

.z-normal {
  z-index: 0;
}

.z-back {
  z-index: -1;
}

.is-inline-block {
  display: inline-block;
}

.is-inline-flex {
  display: inline-flex;
}

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

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

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

.t-vertical {
  text-orientation: upright;
  writing-mode: vertical-rl;
}

.t-color-brown {
  color: #837C6C;
}

.t-color-c9 {
  color: #C9BBAE;
}

.t-color-bb {
  color: #BBB5AB;
}

.t-color-white {
  color: #fff;
}

.t-color-orange {
  color: #C96F6F;
}

.f-gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.f-poppins {
  font-family: "Poppins", sans-serif;
}

.f-28 {
  font-size: 25px;
}
@media (min-width: 769px) {
  .f-28 {
    font-size: 28px;
  }
}

.f-23 {
  font-size: 21px;
}
@media (min-width: 769px) {
  .f-23 {
    font-size: 23px;
  }
}

.f-22 {
  font-size: 20px;
}
@media (min-width: 769px) {
  .f-22 {
    font-size: 22px;
  }
}

.f-20 {
  font-size: 18px;
}
@media (min-width: 769px) {
  .f-20 {
    font-size: 20px;
  }
}

.f-16 {
  font-size: 14px;
}
@media (min-width: 769px) {
  .f-16 {
    font-size: 16px;
  }
}

.f-14 {
  font-size: 12px;
}
@media (min-width: 769px) {
  .f-14 {
    font-size: 14px;
  }
}

.f-12 {
  font-size: 10px;
}
@media (min-width: 769px) {
  .f-12 {
    font-size: 12px;
  }
}

.f-11 {
  font-size: 10px;
}
@media (min-width: 769px) {
  .f-11 {
    font-size: 11px;
  }
}

.f-light {
  font-weight: 300;
}

.f-reg {
  font-weight: 400;
}

.f-med {
  font-weight: 500;
}

.f-semi {
  font-weight: 600;
}

.f-bold {
  font-weight: 700;
}

.f-extra {
  font-weight: 900;
}

.is-rotated {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg); /* IE 9 */
  -moz-transform: rotate(180deg); /* Firefox */
  -webkit-transform: rotate(180deg); /* Safari and Chrome */
  -o-transform: rotate(180deg); /* Opera */
}

.is-rotated-90 {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg); /* IE 9 */
  -moz-transform: rotate(90deg); /* Firefox */
  -webkit-transform: rotate(90deg); /* Safari and Chrome */
  -o-transform: rotate(90deg); /* Opera */
}

.is-rotated-270 {
  transform: rotate(270deg);
  -ms-transform: rotate(270deg); /* IE 9 */
  -moz-transform: rotate(270deg); /* Firefox */
  -webkit-transform: rotate(270deg); /* Safari and Chrome */
  -o-transform: rotate(270deg); /* Opera */
}

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

.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(70px);
  transition: all 2s;
}
.js-animation.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.header {
  top: 0;
  left: 0;
  width: 100vw;
}
@media (min-width: 769px) {
  .header {
    width: calc(100vw - 15px);
  }
}
.header__content {
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 769px) {
  .header__content {
    justify-content: space-between;
    padding: 21px 0 0 36px;
  }
}
.header__content .logo {
  width: 79px;
  height: 79px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 0 13px;
}
@media (min-width: 769px) {
  .header__content .logo {
    width: 138px;
    height: 138px;
  }
}
.header__content .logo a {
  transition: all 1s;
}
.header__content .title {
  padding: 16px 0;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  width: fit-content;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header__content .btn {
  padding: 13px 12px;
  background-color: rgba(255, 255, 255, 0.3);
  position: fixed;
  top: 0;
  right: 0;
}
.header__content .btn img {
  width: 27px;
}
.header__content .nav {
  margin-top: 25px;
  padding: 50px;
  background-color: #F7F4F1;
  width: 283px;
}
.header__content .nav ul {
  justify-content: space-between;
  align-items: flex-start;
}
.header__content .nav ul li {
  font-weight: bold;
  transition: all 1.2s;
}
.header__content .nav ul li:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.header__content .nav ul li p {
  letter-spacing: 10px;
}
.header__content .nav-sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(131, 124, 108, 0.9);
  padding: 10vw;
  z-index: 90;
}
.header__content .nav-sp div {
  justify-content: center;
  align-items: center;
  height: 100%;
}
.header__content .nav-sp ul {
  justify-content: space-between;
  width: 100%;
  padding: 15%;
}
.header__content .nav-sp ul li {
  font-weight: bold;
  letter-spacing: 8px;
}

.main__contact {
  padding-top: 2.5vw;
  padding-right: 25vw;
  padding-bottom: 22px;
  display: none;
}
@media (min-width: 769px) {
  .main__contact {
    display: flex;
  }
}
.main__contact div {
  padding-left: 1.4vw;
}
.main__contact div span:first-of-type {
  width: 70px;
  display: inline-block;
}
@media (min-width: 769px) {
  .main__contact div span:first-of-type {
    width: fit-content;
    padding-right: 14px;
  }
}
.main__contact p {
  padding-left: 3vw;
}
.main__mv {
  margin: 51px 0 20px;
}
@media (min-width: 769px) {
  .main__mv {
    margin: 0 4.4vw 27px;
  }
}
.main__mv img {
  width: 100%;
  max-width: 1750px;
}
.main__breadcrumb {
  justify-content: space-between;
  padding: 0 4.4vw;
}
.main__breadcrumb .f-12 {
  letter-spacing: 3px;
  font-weight: bold;
}
.main__breadcrumb .content {
  align-items: center;
}
.main__breadcrumb .content span {
  padding: 0 3px 2px;
}

.footer {
  width: 100%;
  background-color: #222;
}
.footer .content {
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 10px 40px 20px;
}
@media (min-width: 769px) {
  .footer .content {
    align-items: flex-end;
    padding: 78px 85px 0;
  }
}
.footer .content .nav ul li {
  margin-right: 25px;
  transition: all 1.2s;
}
.footer .content .nav ul li:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
@media (min-width: 769px) {
  .footer .content .nav ul li {
    margin-right: 44px;
  }
}
.footer .content .nav ul li p {
  letter-spacing: 7px;
}
.footer .content .nav ul li:last-of-type {
  width: 16px;
}
.footer .content .nav ul li:last-of-type p {
  letter-spacing: 15px;
}
.footer .copyright {
  padding: 30px 9px 90px;
  background: url(../../assets/images/misc-dots-copyright.png) no-repeat;
  background-position: 78.5% top;
  text-align: center;
  background-size: auto 12px;
  font-size: 9px;
  line-height: 1.3;
}
@media (min-width: 415px) {
  .footer .copyright {
    font-size: 10px;
  }
}
@media (min-width: 769px) {
  .footer .copyright {
    font-size: 12px;
    text-align: right;
    padding: 30px 106px 70px;
  }
}

.btn {
  cursor: pointer;
}
.btn:hover {
  opacity: 0.8;
}
.btn-return {
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: all 2s;
  position: fixed;
  bottom: 92px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: rgba(131, 124, 108, 0.35);
  border-radius: 30px;
}
@media (min-width: 769px) {
  .btn-return {
    bottom: 40px;
    right: 40px;
  }
}
.btn-return img {
  height: 18px;
}
.btn-return.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
@media (min-width: 769px) {
  .btn-return.is-visible:hover {
    background-color: #837c6c;
    transform: translateY(-10px);
    opacity: 1;
  }
}
.btn-map {
  width: 80%;
  max-width: 450px;
  height: 65px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../../assets/images/ico-arr-white-right.png) no-repeat;
  background-position: 95% center;
  background-size: 18px;
  background-color: #837C6C;
  transition: all 1s;
}
.btn-map:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.sp-fixed-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-fixed-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #C9BBAE;
    box-sizing: border-box;
    padding: 2.4vw 2.9vw;
    z-index: 10;
  }
  .sp-fixed-tel {
    flex: 1;
    padding: 4.2vw 5.3vw;
    border-radius: 5px;
    background: #333;
    color: #FFF;
    font-size: 5vw;
    font-weight: bold;
    margin-right: 9px;
    box-sizing: border-box;
  }
  .sp-fixed-tel span {
    font-size: 110%;
    margin-top: 10px;
    position: relative;
  }
  .sp-fixed-tel span:before {
    content: "はいしゃ おーいいは";
    font-size: 40%;
    position: absolute;
    bottom: 100%;
    left: 24vw;
    white-space: nowrap;
  }
  .sp-fixed-access {
    width: 29.6vw;
    background: #fff;
    border-radius: 5px;
    color: #837C6C;
    font-size: 4.5vw;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    padding: 2.4vw 5.3vw;
    box-sizing: border-box;
  }
}
.table {
  border-collapse: collapse;
}

.slide-image {
  content: "";
  width: 100vh;
  height: 525px;
  box-shadow: inset 0 0 0 1000px rgba(131, 124, 108, 0.22);
}
@media (min-width: 769px) {
  .slide-image {
    width: 100%;
    max-width: 1750px;
    height: 47.4vw;
  }
}
.slide-1 {
  background: url(../../assets/images/top-mv-1.png) no-repeat;
  background-size: cover;
  background-position: -80px 0;
}
@media (min-width: 769px) {
  .slide-1 {
    background-size: contain;
    background-position: unset;
  }
}
.slide-2 {
  background: url(../../assets/images/top-mv-2.png) no-repeat;
  background-size: cover;
  background-position: -465px 0;
}
@media (min-width: 769px) {
  .slide-2 {
    background-size: contain;
    background-position: unset;
  }
}
.slide-3 {
  background: url(../../assets/images/top-mv-3.png) no-repeat;
  background-size: cover;
  background-position: -517px 0;
}
@media (min-width: 769px) {
  .slide-3 {
    background-size: contain;
    background-position: unset;
  }
}

.slick-slider {
  margin-bottom: 0 !important;
}

.slick-list {
  width: 100%;
  max-width: 100vw !important;
}
@media (min-width: 769px) {
  .slick-list {
    max-width: 1750px !important;
  }
}

.slick-dots {
  display: none !important;
}
@media (min-width: 769px) {
  .slick-dots {
    display: flex !important;
    flex-direction: column;
    bottom: 0;
    align-items: flex-end;
    padding: 22px;
  }
}
.slick-dots li button {
  padding: 3px;
}
.slick-dots li button:before {
  font-size: 12px;
  width: 8px;
  height: 8px;
  color: #837C6C;
}
.slick-dots li.slick-active button:before {
  color: #175D36;
}

.top {
  margin-top: 44px;
}
@media (min-width: 769px) {
  .top {
    margin-top: 85px;
  }
}
.top__mv {
  align-items: center;
}
.top__mv__text {
  letter-spacing: 4px;
  padding: 0 35px;
}
.top__mv__slider {
  width: 100vw;
}
@media (min-width: 769px) {
  .top__mv__slider {
    width: 91vw;
  }
}
.top__mv__slider img {
  width: 272px;
  height: auto;
  pointer-events: none;
}
.top__contact {
  padding: 19px 30px 0;
}
@media (min-width: 769px) {
  .top__contact {
    padding: 26px 51px 0;
  }
}
.top__contact p {
  padding-bottom: 13px;
}
@media (min-width: 769px) {
  .top__contact p {
    padding-bottom: 0;
    padding-right: 32px;
  }
}
.top__contact div {
  padding-bottom: 11px;
}
@media (min-width: 769px) {
  .top__contact div {
    padding-bottom: 0;
    padding-right: 27px;
  }
}
.top__contact div span:first-of-type {
  width: 70px;
  display: inline-block;
}
@media (min-width: 769px) {
  .top__contact div span:first-of-type {
    width: max-content;
    width: -moz-max-content;
    padding-right: 14px;
  }
}
.top__news {
  padding: 78px 0 69px;
}
@media (min-width: 769px) {
  .top__news {
    padding: 5.7vw 0 9.9vw;
  }
}
.top__news .container {
  margin: 0 7% 0 20%;
}
@media (min-width: 769px) {
  .top__news .container {
    padding-top: 85px;
    margin: 0 auto;
  }
}
.top__news .container .title {
  top: 0;
  left: -50px;
  height: 100%;
}
@media (min-width: 769px) {
  .top__news .container .title {
    left: 13vw;
  }
}
.top__news .container .title p {
  letter-spacing: 9px;
  width: 12px;
  line-height: 1.3;
  writing-mode: initial;
}
@media (min-width: 769px) {
  .top__news .container .title p {
    width: initial;
    line-height: initial;
    writing-mode: vertical-rl;
  }
}
.top__news .container .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 30px;
  writing-mode: initial;
}
@media (min-width: 769px) {
  .top__news .container .title p:nth-of-type(2) {
    width: initial;
    margin-left: 15px;
    margin-top: 12px;
  }
}
.top__news .container .content {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .top__news .container .content {
    width: 48.4vw;
  }
}
.top__news .container .content ul li {
  margin-bottom: 20px;
  background-color: #F9F7F4;
  padding: 16px 21px;
  align-items: center;
}
@media (min-width: 769px) {
  .top__news .container .content ul li {
    padding: 27px 36px;
  }
}
.top__news .container .content ul li p:first-of-type {
  padding-bottom: 8px;
}
@media (min-width: 769px) {
  .top__news .container .content ul li p:first-of-type {
    padding-bottom: 0;
    padding-right: 44px;
  }
}
.top__news .container .content ul li p {
  line-height: 1.5;
}
.top .banner {
  height: 150px;
}
@media (min-width: 769px) {
  .top .banner {
    height: unset;
  }
}
.top .banner img {
  width: 100%;
  height: 150px;
}
@media (min-width: 769px) {
  .top .banner img {
    height: unset;
  }
}
.top__greetings {
  margin-top: 60px;
  background: url(../../assets/images/bg-sp.png) no-repeat;
  background-size: 80%;
  height: 592px;
}
@media (min-width: 415px) {
  .top__greetings {
    margin-top: 125px;
  }
}
@media (min-width: 769px) {
  .top__greetings {
    margin-top: 172px;
    background: url(../../assets/images/bg-1.png) no-repeat;
    background-size: 85%;
    height: 37.49vw;
  }
}
.top__greetings .container {
  justify-content: space-between;
}
@media (min-width: 769px) {
  .top__greetings .container {
    padding-right: 155px;
  }
}
.top__greetings .container .content {
  flex-direction: column-reverse;
  padding-top: 51px;
}
@media (min-width: 415px) {
  .top__greetings .container .content {
    padding-top: 72px;
  }
}
@media (min-width: 769px) {
  .top__greetings .container .content {
    flex-direction: row;
    align-items: center;
  }
}
.top__greetings .container .title {
  position: absolute;
  top: 0;
  right: 27px;
  height: 100%;
}
@media (min-width: 769px) {
  .top__greetings .container .title {
    right: 2.5vw;
  }
}
@media (min-width: 1025px) {
  .top__greetings .container .title {
    right: 6vw;
  }
}
.top__greetings .container .title p {
  letter-spacing: 9px;
  width: 25px;
}
.top__greetings .container .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 47px;
}
@media (min-width: 769px) {
  .top__greetings .container .title p:nth-of-type(2) {
    margin-left: 29px;
    margin-top: 0;
  }
}
.top__greetings .container .text {
  width: 69%;
  padding-top: 27px;
  margin-left: 6%;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .top__greetings .container .text {
    width: 16.46vw;
    margin-left: 10vw;
    margin-right: 2.6vw;
    min-width: 360px;
  }
}
@media (min-width: 769px) {
  .top__greetings .container .text {
    width: 16.46vw;
    margin-left: 10vw;
    margin-right: 2.6vw;
    min-width: 360px;
  }
}
@media (min-width: 1025px) {
  .top__greetings .container .text {
    margin-left: 13vw;
  }
}
.top__greetings .container .text span {
  font-size: 1.1em;
  display: block;
}
.top__greetings .container .image {
  width: 75%;
}
@media (min-width: 769px) {
  .top__greetings .container .image {
    width: 41.35vw;
    margin-bottom: 103px;
  }
}
.top__greetings .container .image img {
  width: 831px;
}
.top__greetings .viewmore {
  background-color: #222;
  height: 50px;
  width: 258px;
  margin-left: 20px;
  margin-top: 70px;
  transition: transform 1.5s;
}
.top__greetings .viewmore-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .top__greetings .viewmore-mobile {
    display: none;
  }
}
.top__greetings .viewmore-pc {
  display: none;
}
@media (min-width: 769px) {
  .top__greetings .viewmore-pc {
    transform-origin: top right;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.top__greetings .viewmore:hover {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1607843137);
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.top__greetings .viewmore:hover p {
  text-decoration: underline;
}
@media (min-width: 415px) {
  .top__greetings .viewmore {
    margin-left: 8%;
  }
}
@media (min-width: 769px) {
  .top__greetings .viewmore {
    margin-top: unset;
    height: 103px;
    width: 103px;
    margin-left: unset;
    left: -103px;
  }
}
.top__about {
  margin-top: 60px;
  background: url(../../assets/images/bg-sp.png) no-repeat;
  background-size: 80%;
  height: 592px;
}
@media (min-width: 415px) {
  .top__about {
    margin-top: 125px;
  }
}
@media (min-width: 769px) {
  .top__about {
    margin-top: 172px;
    background: url(../../assets/images/bg-2.png) no-repeat;
    background-size: 85%;
    height: 37.49vw;
    background-position-x: 100%;
  }
}
.top__about .container {
  justify-content: space-between;
}
@media (min-width: 769px) {
  .top__about .container {
    padding-left: 8vw;
  }
}
.top__about .container .content {
  flex-direction: column-reverse;
  padding-top: 51px;
}
@media (min-width: 415px) {
  .top__about .container .content {
    padding-top: 72px;
  }
}
@media (min-width: 769px) {
  .top__about .container .content {
    flex-direction: row;
    align-items: center;
    margin-right: 4.53vw;
  }
}
.top__about .container .title {
  position: absolute;
  top: 0;
  right: 27px;
  height: 100%;
}
@media (min-width: 769px) {
  .top__about .container .title {
    position: unset;
  }
}
.top__about .container .title p {
  letter-spacing: 9px;
  width: 25px;
  white-space: nowrap;
}
.top__about .container .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 47px;
}
@media (min-width: 769px) {
  .top__about .container .title p:nth-of-type(2) {
    margin-left: 29px;
    margin-top: 0;
  }
}
.top__about .container .text {
  width: 69%;
  padding-top: 27px;
  margin-left: 6%;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .top__about .container .text {
    width: 16.46vw;
    margin-left: 13vw;
    margin-right: 2.6vw;
    min-width: 316px;
  }
}
.top__about .container .image {
  width: 75%;
}
@media (min-width: 769px) {
  .top__about .container .image {
    width: 41.35vw;
    margin-bottom: 103px;
  }
}
.top__about .container .image img {
  width: 831px;
}
.top__about .viewmore {
  background-color: #222;
  height: 50px;
  width: 258px;
  margin-left: 20px;
  margin-top: 70px;
  transition: transform 1.5s;
}
.top__about .viewmore-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .top__about .viewmore-mobile {
    display: none;
  }
}
.top__about .viewmore-pc {
  display: none;
}
@media (min-width: 769px) {
  .top__about .viewmore-pc {
    transform-origin: top right;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.top__about .viewmore:hover {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1607843137);
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.top__about .viewmore:hover p {
  text-decoration: underline;
}
@media (min-width: 415px) {
  .top__about .viewmore {
    margin-left: 8%;
  }
}
@media (min-width: 769px) {
  .top__about .viewmore {
    margin-top: unset;
    height: 103px;
    width: 103px;
    margin-left: unset;
    left: -103px;
  }
}
.top__info {
  margin-top: 60px;
  background: url(../../assets/images/bg-sp.png) no-repeat;
  background-size: 80%;
  height: 592px;
}
@media (min-width: 415px) {
  .top__info {
    margin-top: 125px;
  }
}
@media (min-width: 769px) {
  .top__info {
    margin-top: 172px;
    background: url(../../assets/images/bg-1.png) no-repeat;
    background-size: 85%;
    height: 37.49vw;
    margin-bottom: 162px;
  }
}
.top__info .container {
  justify-content: space-between;
}
@media (min-width: 769px) {
  .top__info .container {
    padding-right: 155px;
  }
}
.top__info .container .content {
  flex-direction: column-reverse;
  padding-top: 51px;
}
@media (min-width: 415px) {
  .top__info .container .content {
    padding-top: 72px;
  }
}
@media (min-width: 769px) {
  .top__info .container .content {
    flex-direction: row;
    align-items: center;
  }
}
.top__info .container .title {
  position: absolute;
  top: 0;
  right: 27px;
  height: 100%;
}
@media (min-width: 769px) {
  .top__info .container .title {
    right: 2.5vw;
  }
}
@media (min-width: 1025px) {
  .top__info .container .title {
    right: 6vw;
  }
}
.top__info .container .title p {
  letter-spacing: 9px;
  width: 25px;
}
.top__info .container .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 47px;
}
@media (min-width: 769px) {
  .top__info .container .title p:nth-of-type(2) {
    margin-left: 29px;
    margin-top: 0;
  }
}
.top__info .container .text {
  width: 69%;
  padding-top: 27px;
  margin-left: 6%;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .top__info .container .text {
    width: 16.46vw;
    margin-left: 13vw;
    margin-right: 2.6vw;
    min-width: 316px;
  }
}
.top__info .container .image {
  width: 75%;
}
@media (min-width: 769px) {
  .top__info .container .image {
    width: 41.35vw;
    margin-bottom: 103px;
  }
}
.top__info .container .image img {
  width: 831px;
}
.top__info .viewmore {
  background-color: #222;
  height: 50px;
  width: 258px;
  margin-left: 20px;
  margin-top: 70px;
  transition: transform 1.5s;
  transform-origin: top right;
}
.top__info .viewmore-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .top__info .viewmore-mobile {
    display: none;
  }
}
.top__info .viewmore-pc {
  display: none;
}
@media (min-width: 769px) {
  .top__info .viewmore-pc {
    transform-origin: top right;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.top__info .viewmore:hover {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1607843137);
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.top__info .viewmore:hover p {
  text-decoration: underline;
}
@media (min-width: 415px) {
  .top__info .viewmore {
    margin-left: 8%;
  }
}
@media (min-width: 769px) {
  .top__info .viewmore {
    margin-top: unset;
    height: 103px;
    width: 103px;
    margin-left: unset;
    left: -103px;
  }
}
.top__access {
  padding: 80px 0 0;
  background: url(../../assets/images/banner-1.png) no-repeat;
  background-position: center top;
  background-size: 170%;
}
@media (min-width: 769px) {
  .top__access {
    padding: 245px 0 0;
    background-size: 100%;
  }
}
.top__access .container {
  padding: 30px 0;
  background-color: #fff;
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .top__access .container {
    padding: 7.8vw 0 0;
    width: 100%;
    max-width: 1500px;
  }
}
.top__access .container .map-area {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  max-width: 1200px;
}
.top__access .container .button {
  margin: 3.9vw auto;
}
.top__access .container .text {
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .top__access .container .text {
    padding: 0 0 40px;
  }
}
.top__access .container .text .icon {
  width: 60px;
  background-color: #F0ECE6;
  margin-right: 31px;
}
@media (min-width: 769px) {
  .top__access .container .text .icon {
    height: 60px;
  }
}
.top__access .container .text .icon img {
  width: 36px;
}
@media (min-width: 769px) {
  .top__access .container .text .title {
    padding-right: 125px;
  }
}
.top__access .container .text .title p:first-of-type {
  letter-spacing: 8px;
  padding-bottom: 16px;
}
.top__access .container .text .address {
  line-height: 1.3;
  padding-top: 20px;
}
@media (min-width: 769px) {
  .top__access .container .text .address {
    padding-top: unset;
  }
}
.top__schedule {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px 20px;
}
@media (min-width: 769px) {
  .top__schedule {
    padding: 0 0 8.54vw;
  }
}
.top__schedule div:first-of-type {
  justify-content: space-between;
}
@media (min-width: 769px) {
  .top__schedule div:first-of-type .text {
    width: 250px;
    margin-right: 170px;
  }
}
.top__schedule div:first-of-type .text div:first-of-type {
  justify-content: flex-start;
}
.top__schedule div:first-of-type .text .icon {
  width: 60px;
  height: 60px;
  background-color: #F0ECE6;
  margin-right: 23px;
}
.top__schedule div:first-of-type .text .icon img {
  width: 27px;
  margin: 0 auto;
}
.top__schedule div:first-of-type .text .title {
  display: inline-block;
}
.top__schedule div:first-of-type .text .title p:first-of-type {
  letter-spacing: 8px;
  padding-bottom: 16px;
}
.top__schedule div:first-of-type .text .contact {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 769px) {
  .top__schedule div:first-of-type .text .contact {
    padding-top: 37px;
  }
}
.top__schedule div:first-of-type .text .contact p:first-of-type {
  padding-bottom: 9px;
}
.top__schedule div:first-of-type .table table, .top__schedule div:first-of-type .table th, .top__schedule div:first-of-type .table td {
  border: 1px solid #fff;
}
.top__schedule div:first-of-type .table table {
  border-collapse: collapse;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .top__schedule div:first-of-type .table table {
    margin: unset;
  }
}
.top__schedule div:first-of-type .table table thead tr th {
  color: #fff;
  background-color: #A79A8D;
  width: 84px;
  padding: 19px 0;
}
.top__schedule div:first-of-type .table table thead tr th:first-of-type {
  width: 105px;
}
@media (min-width: 769px) {
  .top__schedule div:first-of-type .table table thead tr th:first-of-type {
    width: 203px;
  }
}
.top__schedule div:first-of-type .table table tbody tr td {
  vertical-align: middle;
  text-align: center;
  background-color: #F7F4F1;
  padding: 22px 0;
}
.top__schedule div:first-of-type .table table tbody tr td img {
  width: 12px;
}
@media (min-width: 769px) {
  .top__schedule div:first-of-type .table table tbody tr td img {
    width: 16px;
  }
}
.top__schedule div:first-of-type .table > p {
  line-height: 1.3;
  text-align: left !important;
}
@media (min-width: 769px) {
  .top__schedule div:first-of-type .table > p {
    text-align: right !important;
  }
}
.top__schedule .calendar {
  margin-top: 30px;
  padding: 15px;
  background-color: #F7F4F1;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 1.5s;
}
@media (min-width: 769px) {
  .top__schedule .calendar {
    margin-top: 60px;
    padding: 24px 41px 24px 29px;
  }
}
.top__schedule .calendar:hover {
  opacity: 0.6;
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.top__schedule .calendar .icon {
  width: 38px;
}
.top__schedule .calendar .icon:nth-of-type(2) {
  width: 28px;
}
.top__schedule .calendar p {
  font-weight: bold;
}

.about__section {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 769px) {
  .about__section {
    margin-top: 5.6vw;
  }
}
.about__section .title {
  top: 0;
  left: 30px;
  height: 100%;
}
@media (min-width: 769px) {
  .about__section .title {
    left: 4.4vw;
  }
}
.about__section .title p {
  letter-spacing: 9px;
}
.about__section .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 47px;
}
@media (min-width: 769px) {
  .about__section .title p:nth-of-type(2) {
    margin-left: 29px;
    margin-top: 0;
  }
}
.about__section .content {
  margin: 0 4.4vw 0 auto;
  width: 100%;
  background: url(../../assets/images/misc-dots-three.png) no-repeat;
  background-size: 50%;
  background-position-x: 95%;
  background-position-y: top;
  padding-top: 75px;
}
@media (min-width: 415px) {
  .about__section .content {
    background-size: 25%;
  }
}
@media (min-width: 769px) {
  .about__section .content {
    display: flex;
    align-items: center;
    width: 77vw;
    max-width: 1480px;
    height: 41vw;
    max-height: 780px;
    background: url(../../assets/images/bg-3.png) no-repeat;
    background-size: contain;
    background-position-x: 100%;
    background-position-y: unset;
    padding-top: unset;
  }
}
.about__section .content .container {
  width: 80%;
  justify-content: center;
  align-items: flex-start;
  background-color: #F7F4F1;
  margin: 0 0 0 auto;
  padding: 20px 0 25px;
}
@media (min-width: 769px) {
  .about__section .content .container {
    width: 100%;
    margin-top: 65px;
  }
}
.about__section .content .container .text {
  width: 85%;
  margin: 0 auto;
  line-height: 2;
  text-align: left;
}
@media (min-width: 769px) {
  .about__section .content .container .text {
    text-align: center;
    line-height: 3;
    letter-spacing: 6px;
    width: unset;
    margin: unset;
  }
}
.about__section__secondary {
  padding: 0 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.about__section__secondary .content {
  margin-bottom: 4.6vw;
}
.about__section__secondary .content dl {
  border-bottom: 1px solid #707070;
  padding: 5.4vw 0;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .about__section__secondary .content dl {
    min-height: unset;
    justify-content: unset;
  }
}
.about__section__secondary .content dl:last-of-type {
  border-bottom: none;
}
.about__section__secondary .content dl dt {
  width: 100%;
}
@media (min-width: 769px) {
  .about__section__secondary .content dl dt {
    width: 40%;
  }
}
.about__section__secondary .content dl dt p:first-of-type {
  line-height: 1.5;
  padding-bottom: 10px;
}
@media (min-width: 769px) {
  .about__section__secondary .content dl dt p:first-of-type {
    line-height: 2.5;
    letter-spacing: 6px;
  }
}
.about__section__secondary .content dl dd {
  line-height: 2;
  width: 100%;
  padding-top: 30px;
}
@media (min-width: 769px) {
  .about__section__secondary .content dl dd {
    padding-top: unset;
    line-height: 2.5;
    width: 60%;
  }
}
.about__section__infoForCustomar {
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  background: #EFEFEF;
}
.about__section__infoForCustomar .content h2 {
  margin-bottom: 30px;
}
.about__section__infoForCustomar .content dl {
  margin: 0 2.6vw;
}
.about__section__infoForCustomar .content dl dt {
  margin: 0 0 20px;
  font-weight: bold;
}
.about__section__infoForCustomar .content dl dd {
  padding-left: 1em;
  text-indent: -1em;
}
.about__section__infoForCustomar .content dl dd:not(:last-child) {
  margin-bottom: 30px;
}
.about .banner {
  margin: 10vw 0 4.6vw;
}

.greeting__section {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 769px) {
  .greeting__section {
    margin-top: 5.6vw;
  }
}
.greeting__section .title {
  top: 0;
  left: 30px;
  height: 100%;
}
@media (min-width: 769px) {
  .greeting__section .title {
    left: 4.4vw;
  }
}
.greeting__section .title p {
  letter-spacing: 9px;
}
.greeting__section .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 47px;
}
@media (min-width: 769px) {
  .greeting__section .title p:nth-of-type(2) {
    margin-left: 29px;
    margin-top: 0;
  }
}
.greeting__section .content {
  margin: 0 4.4vw 0 auto;
  width: 100%;
  background: url(../../assets/images/misc-dots-three.png) no-repeat;
  background-size: 50%;
  background-position-x: 95%;
  background-position-y: top;
  padding-top: 75px;
}
@media (min-width: 415px) {
  .greeting__section .content {
    background-size: 25%;
  }
}
@media (min-width: 769px) {
  .greeting__section .content {
    display: flex;
    align-items: center;
    width: 77vw;
    max-width: 1480px;
    height: 41vw;
    max-height: 780px;
    background: url(../../assets/images/bg-3.png) no-repeat;
    background-size: contain;
    background-position-x: 100%;
    background-position-y: unset;
    padding-top: unset;
  }
}
.greeting__section .content .container {
  width: 80%;
  justify-content: center;
  align-items: flex-start;
  background-color: #F7F4F1;
  margin: 0 0 0 auto;
  padding: 20px 0 25px;
}
@media (min-width: 769px) {
  .greeting__section .content .container {
    padding: unset;
    width: 100%;
    margin-top: 65px;
  }
}
.greeting__section .content .container .photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  padding-top: 10px;
  margin: 0 10px 10px auto;
}
@media (min-width: 769px) {
  .greeting__section .content .container .photo {
    padding-top: unset;
    width: 184px;
    margin: 0 5vw 0 0;
  }
}
.greeting__section .content .container .photo img {
  min-width: 120px;
}
.greeting__section .content .container .photo p {
  padding-top: 25px;
}
.greeting__section .content .container .text {
  width: 85%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .greeting__section .content .container .text {
    width: unset;
    margin: unset;
  }
}
.greeting__section .content .container .text .title {
  align-items: flex-end;
  padding-bottom: 2.6vw;
}
.greeting__section .content .container .text .title .logo {
  width: 45px;
  margin-right: 3vw;
}
@media (min-width: 769px) {
  .greeting__section .content .container .text .title .logo {
    margin-right: 1vw;
  }
}
.greeting__section .content .container .text .title p {
  letter-spacing: normal;
  line-height: 1;
}
.greeting__section .content .container .text p {
  line-height: 2;
}
@media (min-width: 769px) {
  .greeting__section .content .container .text p {
    line-height: 3;
    letter-spacing: 6px;
  }
}
.greeting__section__secondary {
  margin-top: 50px;
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 769px) {
  .greeting__section__secondary {
    margin-top: 5.6vw;
    margin-bottom: 11vw;
  }
}
.greeting__section__secondary .title {
  top: 0;
  left: 30px;
  height: 100%;
}
@media (min-width: 769px) {
  .greeting__section__secondary .title {
    left: 4.4vw;
  }
}
.greeting__section__secondary .title p {
  letter-spacing: 9px;
}
.greeting__section__secondary .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 47px;
}
@media (min-width: 769px) {
  .greeting__section__secondary .title p:nth-of-type(2) {
    margin-left: 29px;
    margin-top: 0;
  }
}
.greeting__section__secondary .content {
  margin: 0 0 0 auto;
  width: 80%;
  background-color: #F7F4F1;
  padding: 7.8vw 0;
}
@media (min-width: 769px) {
  .greeting__section__secondary .content {
    margin: 0 4.4vw 0 auto;
    display: flex;
    align-items: center;
    width: 77vw;
    max-width: 1480px;
    padding: 7.8vw 0;
  }
}
.greeting__section__secondary .content .list {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .greeting__section__secondary .content .list {
    width: 52vw;
  }
}
.greeting__section__secondary .content .list dl {
  border-top: 1px solid #707070;
  padding: 2.5vw 16px;
  line-height: 1.3;
}
.greeting__section__secondary .content .list dl:last-of-type {
  border-bottom: 1px solid #707070;
}
.greeting__section__secondary .content .list dl dt {
  width: 40%;
}
@media (min-width: 769px) {
  .greeting__section__secondary .content .list dl dt {
    width: 30%;
  }
}
.greeting__section__secondary .content .list dl dd {
  width: 60%;
}
@media (min-width: 769px) {
  .greeting__section__secondary .content .list dl dd {
    width: 70%;
  }
}

.access__section {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 769px) {
  .access__section {
    margin-top: 5.6vw;
  }
}
.access__section .title {
  top: 0;
  left: 30px;
  height: 100%;
}
@media (min-width: 769px) {
  .access__section .title {
    left: 4.4vw;
  }
}
.access__section .title p {
  letter-spacing: 9px;
}
.access__section .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 47px;
}
@media (min-width: 769px) {
  .access__section .title p:nth-of-type(2) {
    margin-left: 29px;
    margin-top: 0;
  }
}
.access__section .content {
  margin: 0 4.4vw 0 auto;
  width: 100%;
  background: url(../../assets/images/misc-dots-three.png) no-repeat;
  background-size: 50%;
  background-position-x: 95%;
  background-position-y: top;
  padding-top: 75px;
}
@media (min-width: 415px) {
  .access__section .content {
    background-size: 25%;
  }
}
@media (min-width: 769px) {
  .access__section .content {
    display: flex;
    align-items: center;
    width: 77vw;
    max-width: 1480px;
    height: 41vw;
    max-height: 780px;
    background: url(../../assets/images/misc-dots-three.png) no-repeat;
    background-size: 10vw;
    background-position-x: 95%;
    background-position-y: unset;
    padding-top: unset;
  }
}
.access__section .content .map-here {
  width: 80%;
  justify-content: center;
  align-items: flex-start;
  background-color: #F7F4F1;
  margin: 0 0 0 auto;
  height: 100%;
  min-height: 400px;
}
@media (min-width: 769px) {
  .access__section .content .map-here {
    width: 100%;
    height: 91%;
    margin-top: 65px;
  }
}
.access__section .content .map-here iframe {
  height: 100%;
  min-height: 400px;
}
.access__section .button {
  margin: 3.9vw auto;
}
@media (min-width: 769px) {
  .access__section .button {
    margin: 3.9vw 4.4vw 3.9vw auto;
    width: 77vw;
    max-width: 1480px;
  }
}
.access__section .button a {
  width: 80%;
  max-width: 450px;
  height: 65px;
  margin: 0 auto;
}
.access__section__secondary {
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 769px) {
  .access__section__secondary {
    margin: 0 auto 10vw;
    display: flex;
    align-items: center;
    width: 77vw;
    max-width: 1480px;
  }
}
.access__section__secondary .main-container {
  width: 100%;
}
.access__section__secondary .map {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .access__section__secondary .map {
    max-width: 560px;
    margin-right: 2.3vw;
  }
}
.access__section__secondary .content {
  width: 100%;
  padding-top: 50px;
}
@media (min-width: 769px) {
  .access__section__secondary .content {
    padding-top: unset;
    width: 60%;
  }
}
.access__section__secondary .content .upper {
  width: 95%;
  margin: 0 auto;
  padding: 0 0 2.3vw;
}
@media (min-width: 769px) {
  .access__section__secondary .content .upper {
    width: unset;
    margin: unset;
  }
}
.access__section__secondary .content .upper p:first-of-type {
  padding-bottom: 10px;
}
@media (min-width: 769px) {
  .access__section__secondary .content .upper p:first-of-type {
    padding-right: 4.2vw;
  }
}
.access__section__secondary .content-details {
  justify-content: space-between;
}
.access__section__secondary .content-details .container {
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .access__section__secondary .content-details .container {
    width: 415px;
    margin: unset;
  }
}
.access__section__secondary .content-details .title {
  height: 59px;
  padding-left: 23px;
  align-items: center;
  background-color: #F7F4F1;
  width: 100%;
}
@media (min-width: 769px) {
  .access__section__secondary .content-details .title {
    max-width: 415px;
  }
}
.access__section__secondary .content-details .title .icon {
  margin-right: 16px;
  width: 33px;
}
.access__section__secondary .content-details .title .icon-2 {
  width: 27px;
}
.access__section__secondary .content-details .list {
  padding: 24px;
  line-height: 2.2;
}
.access__section__secondary .content-details .list p {
  letter-spacing: -0.5px;
}

.info__section {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 769px) {
  .info__section {
    margin-top: 5.6vw;
  }
}
.info__section .title {
  top: 0;
  left: 30px;
  height: 100%;
}
@media (min-width: 769px) {
  .info__section .title {
    left: 4.4vw;
  }
}
.info__section .title p {
  letter-spacing: 9px;
}
.info__section .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 47px;
}
@media (min-width: 769px) {
  .info__section .title p:nth-of-type(2) {
    margin-left: 29px;
    margin-top: 0;
  }
}
.info__section .content {
  margin: 0 4.4vw 0 auto;
  width: 100%;
  background: url(../../assets/images/misc-dots-three.png) no-repeat;
  background-size: 50%;
  background-position-x: 95%;
  background-position-y: top;
  padding-top: 75px;
}
@media (min-width: 415px) {
  .info__section .content {
    background-size: 25%;
  }
}
@media (min-width: 769px) {
  .info__section .content {
    display: flex;
    align-items: center;
    width: 77vw;
    max-width: 1480px;
    height: 41vw;
    max-height: 560px;
    background: url(../../assets/images/misc-dots-three.png) no-repeat;
    background-size: 10vw;
    background-position-x: 95%;
    background-position-y: unset;
    padding-top: unset;
  }
}
.info__section .content .container {
  background-color: #F7F4F1;
  width: 80%;
  height: 83%;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
  padding: 25px 0;
}
@media (min-width: 769px) {
  .info__section .content .container {
    width: 100%;
    max-height: 408px;
    margin: unset;
    padding: unset;
  }
}
.info__section .content .container p {
  width: 80%;
  line-height: 2.8;
  letter-spacing: -0.8px;
}
@media (min-width: 769px) {
  .info__section .content .container p {
    width: 53vw;
    max-width: 1100px;
  }
}
.info__section__secondary {
  margin-bottom: 50px;
  position: relative;
}
@media (min-width: 769px) {
  .info__section__secondary {
    margin-bottom: 10.7vw;
  }
}
.info__section__secondary .twoline {
  line-height: 1.5;
}
@media (min-width: 769px) {
  .info__section__secondary .twoline {
    line-height: unset;
  }
}
.info__section__secondary .title {
  top: 0;
  left: 30px;
}
@media (min-width: 769px) {
  .info__section__secondary .title {
    left: 4.4vw;
  }
}
.info__section__secondary .title p {
  letter-spacing: 9px;
}
.info__section__secondary .title p:nth-of-type(2) {
  width: 12px;
  letter-spacing: 0px;
  margin-left: 7px;
  margin-top: 47px;
}
@media (min-width: 769px) {
  .info__section__secondary .title p:nth-of-type(2) {
    margin-left: 29px;
    margin-top: 0;
  }
}
.info__section__secondary .content {
  margin: 0 4.4vw 0 auto;
  width: 100%;
}
@media (min-width: 769px) {
  .info__section__secondary .content {
    width: 77vw;
    max-width: 1480px;
  }
}
.info__section__secondary .content .container {
  width: 80%;
  margin: 0 0 0 auto;
}
@media (min-width: 769px) {
  .info__section__secondary .content .container {
    width: 100%;
    height: fit-content;
  }
}
.info__section__secondary .content .container .image {
  background-color: #F7F4F1;
  display: flex;
  align-items: center;
}
.info__section__secondary .content .container img {
  width: 100%;
}
@media (min-width: 769px) {
  .info__section__secondary .content .container img {
    width: 33vw;
    height: auto;
    max-height: 476px;
    flex: 1;
  }
}
.info__section__secondary .content .container .text {
  background-color: #F7F4F1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 260px;
}
@media (min-width: 769px) {
  .info__section__secondary .content .container .text {
    width: 44vw;
  }
}
.info__section__secondary .content .container .text p {
  width: 85%;
  max-width: 568px;
  line-height: 2.8;
  padding: 10px 0 15px;
}
@media (min-width: 769px) {
  .info__section__secondary .content .container .text p {
    padding: unset;
    width: 95%;
  }
}
.info .content-nav {
  padding: 42px 0 86px;
}
@media (min-width: 769px) {
  .info .content-nav {
    padding: 3.23vw 0 9.17vw;
  }
}
@media (min-width: 769px) {
  .info .content-nav ul {
    margin: 0 4.4vw 0 auto;
    width: 77vw;
    max-width: 1480px;
    justify-content: space-between;
    align-items: center;
  }
}
.info .content-nav ul li {
  width: 95%;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  padding: 28px 8px;
  margin: 0 auto;
  transition: all 1s;
  height: fit-content;
}
@media (min-width: 769px) {
  .info .content-nav ul li {
    width: 15.6vw;
    max-width: 300px;
    margin: unset;
    padding: unset;
  }
}
.info .content-nav ul li a, .info .content-nav ul li div {
  width: 100%;
  height: 100%;
}
.info .content-nav ul li div:not(.icon) {
  padding: 38px 8px;
  align-items: center;
}
.info .content-nav ul li p {
  transition: all 1s;
  transform-origin: left;
}
.info .content-nav ul li.is-active, .info .content-nav ul li:hover {
  border-bottom: 1px solid #222222;
  background-color: #F7F4F1;
}
.info .content-nav ul li.is-active p, .info .content-nav ul li:hover p {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.info .content-nav ul li.is-active .icon, .info .content-nav ul li:hover .icon {
  background-color: #A79A8D;
}
.info .content-nav ul li div:not(.icon) {
  justify-content: space-between;
  align-items: center;
}
.info .content-nav ul li .icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #A79A8D;
}
@media (min-width: 769px) {
  .info .content-nav ul li .icon {
    background-color: rgba(167, 154, 141, 0.2);
  }
}
.info .content-nav ul li .icon img {
  width: 10px;
  margin-top: 2px;
}

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