@charset "utf-8";
/* CSS Document */

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#fff;
  text-align:center;
  color:#333;
	max-width: 1600px;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

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

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










.top-header {
  max-width: 1600px;
  margin: 0 auto;
}
.top-header__image {
  height: 100vh;
  max-height: 850px;
  width: auto;
  min-width: 1100px;
  background-image: url("../images/top/pc-salon.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.top-header__image-text {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.top-header h2 {
  color: #f5f5f5;
  font-family: A-OTF Ryumin Pr6N KL,YuMincho, 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 4rem;
  position: absolute;
  top: 21%;
  left: 7%;
}
.top-header h3 {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.50);
  padding: 30px;
}

.modaal-open a{
	color: #707070;
}

/*moodal*/
/*infoエリアをはじめは非表示*/
#info{
	display: none;
}
#info p {
	color: #707070;
}
/*モーダルの横幅を変更したい場合*/
/*
.modaal-container{
    max-width: 600px;
}
*/

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
background:#f5f5f5;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
background: #6A8079;
}



.top-header-content-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  border-bottom: solid 1px #DED7E9;
  padding: 2.2% 0;
}
.top-header__upper-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.top-header__upper-nav img {
  width: 30px;
  padding-left: 20px;
}
.top-header__upper-nav p {
	padding-left: 8px;
	margin-top: -2px;
	color: #707070;
	font-size: 1.6rem;
}
.top-header__lower-nav {
  display: flex;
  align-items: center;
  position: relative;
}
.top-header__logo {
  width: 230px;
  height: 100%;
  display: inline-block;
}
.top-header__lower-nav nav {
  margin-left: auto;
}
.top-header__lower-nav nav ul {
  display: flex;
  justify-content: flex-end;
}
.top-header__lower-nav nav ul li {
  padding: 0px 30px 0 30px;
}
.top-header__lower-nav nav ul li a {
  color: #897e9c;
  text-decoration: none;
  font-size: 2rem;
  height: 83px;
}
.top-header nav ul li:last-child {
  padding-right: 0;
}
.top-header-content-wrapper .top-header__upper-nav {
  display: none;
}
.DownMove.top-header-content-wrapper {
  max-width: none;
  padding: 0 7% 1.5%;
  box-sizing: border-box;
}
.DownMove.top-header-content-wrapper .top-header__upper-nav {
  display: block;
  display: flex;
  justify-content: flex-end;
  margin: 2% 0 0.5%;
}
.DownMove.top-header-content-wrapper .top-header__upper-nav img {
  width: 30px;
  height: 30px;
  padding-left: 20px;
}
/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/
#top-header.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#top-header.DownMove {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #f3f3f3;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media(max-width: 1024px) {
  .br-SP {
    display: block;
  }
  .top-header-content-wrapper {
    display: none;
  }
  .header__SP {
    display: flex;
    width: 100%;
    height: 70px;
    background-color: rgb(255, 255, 255, 0.6);
  }
  /*ハンバーガーボタン*/
  .openbtn {
    display: block;
    position: fixed;
    width: 50px;
	  top: 10px;
    right: 15px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #897e9c;
  }
  .openbtn span:nth-of-type(1) {
    top: 18px;
    width: 50%;
  }
  .openbtn span:nth-of-type(2) {
    top: 26px;
    width: 30%;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .header__sp-menu {
    display: none;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #F3F3F3;
    width: 100%;
    height: 100%;
    padding: 100px 0px 50px;
  }
  .header__sp-menu ul li {
    padding: 15px;
    border-top: solid 0.5px #cadbd5;
    list-style: none;
    text-align: left;
    margin: 0 24px;
  }
  .header__sp-menu ul li:last-child {
    border-bottom: solid 0.5px #cadbd5;
  }
  .header__sp-menu ul li a {
    color: #6A8079;
    font-size: 1.8rem;
  }
  .header__logo {
    width: 160px;
    height: auto;
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
  }
  .header__contact {
    text-align: center;
    display: block;
    color: #897e9c;
    margin: 30px auto;
    font-size: 1.8rem;
  }
  .header__contact span {
    font-size: 2.4rem;
  }
  .header__telephone {
    display: flex;
    justify-content: center;
  }
  .header__tel {
    width: 25px;
    height: 25px;
    margin: 5px;
  }
	.header__tel-number a{
		color: #897e9c;
	}
  .header__telephone {
    color: #897e9c;
  }
  .header__maker-link {
    font-size: 1.8rem;
    color: #6A8079;
    padding: 50px 24px;
  }
  .top-header__image {
    background-image: url("../images/top/sp-salon.JPG");
    height: 60vh;
    min-width: 0;
  }
  .top-header h2 {
    font-size: 3rem;
    position: relative;
    top: 0%;
    left: 0%;
    margin: 30% auto;
  }
  .top-header h3 {
    width: 40%;
    max-width: 300px;
    font-size: 1.4rem;
    line-height: 2.5rem;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(-0%, -0%);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.50);
    padding: 20px;
    margin: 60% auto 0;
  }
	#info p {
	font-size: 1.6rem;
		line-height: 2.8rem;
}
}
@media(max-width: 599px) {
  .top-header-content-wrapper {
    display: none;
  }
  .top-header__image {
    background-image: url("../images/top/sp-salon.JPG");
    height: 60vh;
    min-width: 0;
    max-height: 500px;
  }
  .top-header h2 {
    font-size: 3rem;
    position: relative;
    top: 0%;
    left: 0%;
    margin: 30% auto;
  }
  .top-header h3 {
    width: 60%;
    font-size: 1.4rem;
    line-height: 2.5rem;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-70%, -0%);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.50);
    padding: 20px;
    margin: 8vh 0 0 15%;
	font-weight: normal;
  }
}
.section-top {
  max-width: 1700px;
  margin: 30px auto 0;
}
.section-top__wrapper {
  display: flex;
  position: relative;
}
.bg {
  content: "";
  width: 70vw;
  height: 600px;
  position: relative;
  background: rgb(202, 219, 213, 0.8);
}
.section-top__text {
  margin: 100px 0 0 100px;
  position: absolute;
  z-index: 10;
}
.section-top__text h2 {
  color: #6a8079;
  font-family: A-OTF Ryumin Pr6N KL, YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 4rem;
  position: absolute;
  margin-bottom: 50px;
}
.section-top__text p {
	margin-top: 30px;
}
.section-top__wrapper img {
  width: 60vw;
  max-width: 750px;
  position: absolute;
  right: 0;
  z-index: 0;
}
.section-top__more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  position: absolute;
  top: 400px;
  left: 120px;
  text-transform: uppercase;
  font-family: Baskerville URW, Libre Baskerville;
}
.section-top__more-button::before {
  border-top: 1px solid #f5f5f5;
  content: "";
  width: 3em;
  margin-right: 0.5em;
}
@media(max-width: 1024px) {
  .section-top {
    margin: 50px auto 0;
  }
  .bg {
    display: none;
  }
  .section-top__text {
    position: relative;
    margin: 0;
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .section-top__text p {
    margin: 0 50px 80px;
  }
  .section-top__text h2 {
    font-size: 3rem;
    position: relative;
    margin: 45% 0 -35px 0;
    width: max-content;
    padding: 20px;
    background-color: rgb(202, 219, 213, 0.8);
  }
  .section-top__wrapper img {
    width: 75%;
    max-width: 600px;
    height: auto;
    position: absolute;
    right: 0;
    z-index: 0;
  }
  .section-top__more-button {
    color: #897e9c;
    position: relative;
    top: 0;
    left: 0;
    margin: 30px auto 60px;
    font-size: 20px;
  }
  .section-top__more-button::before {
    border-top: 1px solid #897e9c;
  }
}
@media(max-width: 599px) {
  .section-top {
    margin: 50px auto 0;
  }
  .bg {
    display: none;
  }
  .section-top__text {
    position: relative;
    margin: 0;
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .section-top__text p {
    margin: 0 24px 50px;
  }
  .section-top__text h2 {
    font-size: 3rem;
    position: relative;
    margin: 50% 0 -35px 0;
    width: max-content;
    padding: 20px;
    background-color: rgb(202, 219, 213, 0.8);
  }
  .section-top__wrapper img {
    width: 90%;
    height: auto;
    position: absolute;
    right: 0;
    z-index: 0;
  }
  .section-top__more-button {
    color: #897e9c;
    position: relative;
    top: 0;
    left: 0;
    margin: 30px auto 60px;
  }
  .section-top__more-button::before {
    border-top: 1px solid #897e9c;
  }
}
.section-reason {
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 95px 0 30px;
}
.section-reason h4 {
  color: #897e9c;
  text-transform: uppercase;
  font-family: Baskerville URW, Libre Baskerville;
  position: absolute;
  top: 95px;
  left: 100px;
  writing-mode: vertical-rl;
  line-height: 1;
}
.section-reason h4::before { /*下線を引く*/
  content: "";
  width: 1px;
  height: 180px;
  background-color: #897e9c;
  display: block; /*疑似要素はdisplay:block; で指定しておく*/
  position: absolute;
  bottom: 0;
  left: 0; /*フォントの仕様で文字の下ぴったりの線は引けなかった*/
}
.section-reason h2 {
  font-family: A-OTF Ryumin Pr6N KL,YuMincho, 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.2rem;
  position: absolute;
  top: 140px;
  left: 170px;
  color: #897e9c;
}
.section-reason__moistsynagy {
 display: block;
    margin: 10% auto;
    width: 80%;
    max-width: 1440px;
}
.section-reason__mt {
  width: 30vw;
  max-width: 500px;
  position: absolute;
  top: 180px;
  left: -3%;
}
.section-reason__lotion {
  width: 18vw;
  max-width: 300px;
  position: absolute;
  top: 210px;
  right: 3%;
}
.section-reason h3 {
  font-size: 4rem;
    font-family: A-OTF Ryumin Pr6N KL,YuMincho, 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", "serif";
    color: #897e9c;
    font-weight: 700;
    letter-spacing: 10px;
    text-shadow: 2px 2px 3px #dfd8ea;
    margin: 250px auto;
    text-align: center;
}
.section-reason h3 span {
  font-weight: 400;
}
.section-reason p {
  width: 60%;
	margin: -50px auto;
}
.more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: Baskerville URW, Libre Baskerville;
	
}
.more-button a {
	color: #897e9c;
}
.more-button::before {
  border-top: 1px solid #897e9c;
  content: "";
  width: 3em;
  margin-right: 0.5em;
}
.section-reason__more-button {
 margin: 120px auto;
}
.section-reason__water {
  margin-top: -500px;
}
@media(max-width: 1024px) {
  .section-reason h4 {
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-reason h4::before { /*下線を引く*/
    height: 130px;
    bottom: 0;
    left: 0; /*フォントの仕様で文字の下ぴったりの線は引けなかった*/
  }
  .section-reason h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin-left: 70px;
  }
  .section-reason__moistsynagy {
    display: block;
    margin: 5% auto;
    width: 80%;
  }
  .section-reason__mt, .section-reason__lotion, .section-reason h3 {
    display: none;
  }
  .section-reason p {
    width: auto;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    font-size: 1.6rem;
    line-height: 2.8rem;
        padding: 60px 50px 0;
  }
  .section-reason__more-button {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    margin: 70px auto 0px;
  }
  .section-reason__water {
    padding-top: 0px;
    margin-top: -25%;
  }
}
@media(max-width: 599px) {
  .section-reason h4 {
    position: absolute;
	  top: 88px;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-reason h4::before { /*下線を引く*/
    height: 130px;
    bottom: 0;
    left: 0; /*フォントの仕様で文字の下ぴったりの線は引けなかった*/
  }
  .section-reason h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin-left: 70px;
  }
  .section-reason__moistsynagy {
    display: block;
    margin-top: 20px;
  }
  .section-reason__mt, .section-reason__lotion, .section-reason h3 {
    display: none;
  }
  .section-reason p {
    width: auto;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding: 20% 24px 40px;
  }
  .section-reason__more-button {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    margin: 50px auto 0px;
  }
  .section-reason__water {
    padding-top: 0px;
    margin-top: -20%;
  }
}
.section-offer {
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
  padding: 70px 0;
}
.section-offer h4 {
  color: #897e9c;
  text-transform: uppercase;
  font-family: Baskerville URW, Libre Baskerville;
  position: absolute;
  left: 100px;
  writing-mode: vertical-rl;
  line-height: 1;
  top: 72px;
}
.section-offer h4::before {
  content: "";
  width: 1px;
  height: 180px;
  background-color: #897e9c;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-offer h2 {
  font-family: A-OTF Ryumin Pr6N KL,YuMincho, 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.2rem;
  position: absolute;
  top: 140px;
  left: 170px;
  color: #897e9c;
}
.section-offer__bg {
  content: "";
  width: 70vw;
  height: 700px;
  position: relative;
  background: rgb(202, 219, 213, 0.8);
  margin-top: 250px;
}
.section-offer img {
  width: 43vw;
  height: auto;
  max-width: 620px;
  position: absolute;
  top: 250px;
  left: 100px;
}
.section-offer p {
  width: 40vw;
  position: absolute;
  top: 400px;
  right: 5%;
}
.section-offer__more-button {
  position: absolute;
  top: 900px;
  right: 25%;
}
@media(max-width: 1024px) {
  .section-offer h4 {
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-offer h4::before { /*下線を引く*/
    height: 130px;
    bottom: 0;
    left: 0; /*フォントの仕様で文字の下ぴったりの線は引けなかった*/
  }
  .section-offer h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin: 20px 0 0 70px;
  }
  .section-offer__bg {
    display: none;
  }
  .section-offer img {
    width: 90vw;
    position: relative;
    top: 0px;
    left: 0px;
    margin-top: 20px;
  }
  .section-offer p {
    width: auto;
    position: relative;
    top: 0px;
    right: 0%;
    font-size: 1.6rem;
    line-height: 2.8rem;
    background-color: rgb(202, 219, 213, 0.8);
    padding: 30px 50px 90px;
    margin: -40px 0 0 200px;
  }
  .section-offer__more-button {
    position: absolute;
    top: 93%;
    left: 10%;
    width: 100%;
    margin: -65px auto 0px;
  }
}
@media(max-width: 599px) {
  .section-offer h4 {
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-offer h4::before { /*下線を引く*/
    height: 130px;
    bottom: 0;
    left: 0; /*フォントの仕様で文字の下ぴったりの線は引けなかった*/
  }
  .section-offer h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin: 20px 0 0 70px;
  }
  .section-offer__bg {
    display: none;
  }
  .section-offer img {
    width: 90vw;
    position: relative;
    top: 0px;
    left: 0px;
    margin-top: 20px;
  }
  .section-offer p {
    width: auto;
    position: relative;
    top: 0px;
    right: 0%;
    font-size: 1.6rem;
    line-height: 2.8rem;
    background-color: rgb(202, 219, 213, 0.8);
    padding: 30px 24px 90px;
    margin: -40px 0 0 50px;
  }
  .section-offer__more-button {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: -65px auto 0px;
  }
}
.section-flow {
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
  padding: 70px 0;
}
.section-flow h4 {
  color: #897e9c;
  text-transform: uppercase;
  font-family: Baskerville URW, Libre Baskerville;
  position: absolute;
  left: 100px;
  writing-mode: vertical-rl;
  line-height: 1;
  top: 72px;
}
.section-flow h4::before {
  content: "";
  width: 1px;
  height: 180px;
  background-color: #897e9c;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-flow h2 {
  font-family: A-OTF Ryumin Pr6N KL,YuMincho, 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.2rem;
  position: absolute;
  top: 95px;
  left: 170px;
  color: #897e9c;
}
.section-flow__bg {
  content: "";
  width: 80vw;
  height: 700px;
  position: relative;
  background: #fff;
  margin-top: 120px;
  margin-left: auto;
}
.section-flow ul {
  display: flex;
  position: absolute;
  top: 280px;
  left: 6.94%;
}
.section-flow ul li {
  list-style: none;
  width: 30%;
  margin: 0 100px 0 0;
}
.section-flow ul img {
  width: 100%;
}
.section-flow ul h3 {
  font-family: Baskerville URW, Libre Baskerville;
  font-size: 2.4rem;
  color: #6a8079;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-flow__title1::after {
  border-top: 1px solid #6a8079;
  content: "";
  width: 100%;
  margin-left: 0.5em;
}
.section-flow__title2::after {
  border-top: 1px solid #6a8079;
  content: "";
  width: 100%;
  margin-left: 0.5em;
}
.section-flow__title3::after {
  border-top: 1px solid #6a8079;
  content: "";
  width: 100%;
  margin-left: 0.5em;
}
.section-flow__more-button {
  position: absolute;
  bottom: 10%;
  left: 43%;
}
@media(max-width: 1024px) {
  .section-flow h4 {
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-flow h4::before {
    height: 130px;
    bottom: 0;
    left: 0;
  }
  .section-flow h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin: 20px 0 0 70px;
  }
  .section-flow__bg {
    display: none;
  }
  .section-flow ul {
    display: block;
    position: relative;
    top: 0px;
    left: 0%;
    margin: 40px auto 0;
    max-width: 650px;
    width: 90%;
  }
  .section-flow ul li {
    list-style: none;
    width: 100%;
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .section-flow__more-button {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 30px;
  }
}
@media(max-width: 599px) {
  .section-flow h4 {
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-flow h4::before {
    height: 130px;
    bottom: 0;
    left: 0;
  }
  .section-flow h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin: 20px 0 0 70px;
  }
  .section-flow__bg {
    display: none;
  }
  .section-flow ul {
    display: block;
    position: relative;
    top: 0px;
    left: 0%;
    margin: 40px auto 0;
  }
  .section-flow ul li {
    list-style: none;
    width: 100%;
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .section-flow__more-button {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 30px;
  }
}
.section-access {
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
  padding: 50px 0;
}
.section-access h4 {
  color: #897e9c;
  text-transform: uppercase;
  font-family: Baskerville URW, Libre Baskerville;
  position: absolute;
  left: 100px;
  writing-mode: vertical-rl;
  line-height: 1;
  top: 72px;
}
.section-access h4::before {
  content: "";
  width: 1px;
  height: 180px;
  background-color: #897e9c;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-access h2 {
  font-family: A-OTF Ryumin Pr6N KL,YuMincho, 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.2rem;
  position: absolute;
  top: 110px;
  left: 170px;
  color: #897e9c;
}
.section-access__bg {
  content: "";
  width: 70vw;
  height: 740px;
  position: relative;
  background: rgb(202, 219, 213, 0.8);
  margin-top: 150px;
}
.section-access img {
  width: 40%;
  position: absolute;
  top: 290px;
  left: 5%;
}
.section-access address {
  width: 41%;
  font-style: normal;
  position: absolute;
  top: 330px;
  right: 6%;
}
.section-access__more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 80%;
  right: 20%;
  font-family: Baskerville URW, Libre Baskerville;
}
.section-access__more-button a {
  color: #897e9c;
}
.section-access__more-button::before {
  border-top: 1px solid #897e9c;
  content: "";
  width: 3em;
  margin-right: 0.5em;
}
@media(max-width:1024px) {
  .section-access {
    position: relative;
    max-width: 1700px;
    margin: 0 auto;
    padding: 100px 0;
    background-color: rgb(202, 219, 213, 0.8);
  }
  .section-access h4 {
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-access h4::before {
    height: 130px;
    bottom: 0;
    left: 0;
  }
  .section-access h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin: 5px 0 0 70px;
  }
  .section-access__bg {
    display: none;
  }
  .section-access__content {
    display: flex;
    flex-direction: column-reverse;
  }
  .section-access img {
    width: 60%;
    position: relative;
    top: 0px;
    left: 20%;
  }
  .section-access address {
    width: auto;
    font-style: normal;
    position: relative;
    top: 0px;
    right: 0%;
    font-size: 1.6rem;
    line-height: 2.8rem;
        padding: 40px 50px 50px 50px;
    margin: 0 auto;
  }
  .section-access__more-button {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 60px;
  }
}
@media(max-width:599px) {
  .section-access {
    position: relative;
    max-width: 1700px;
    margin: 0 auto;
    padding: 100px 0;
    background-color: rgb(202, 219, 213, 0.8);
  }
  .section-access h4 {
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-access h4::before {
    height: 130px;
    bottom: 0;
    left: 0;
  }
  .section-access h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin: 5px 0 0 70px;
  }
  .section-access__bg {
    display: none;
  }
  .section-access__content {
    display: flex;
    flex-direction: column-reverse;
  }
  .section-access img {
    width: 80%;
    position: relative;
    top: 0px;
    left: 8%;
  }
  .section-access address {
    width: auto;
    font-style: normal;
    position: relative;
    top: 0px;
    right: 0%;
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding: 40px 24px 50px 24px;
    margin: 0 auto;
  }
  .section-access__more-button {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 60px;
  }
}