@charset "UTF-8";
#overlay {
  position: fixed;
  z-index: 99999;
  top: 0;
  display: none;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  -webkit-transition: 1s 0.4s;
  transition: 1s 0.4s;
  /* opacity: 0; */
  -webkit-transition: 1s all;
  transition: 1s all;
}

#overlay .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 270px;
  width: 96%;
}

#overlay.hide {
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  #overlay .loader {
    width: 100%;
  }
}

#lead {
  padding-bottom: 20vw;
}

#lead .img {
  margin: 0 -6vw;
}

#lead .col {
  margin-top: 10vw;
}

#lead .col h2 {
  margin-bottom: 9vw;
}

#lead .col h2 span {
  margin-left: -4vw;
}

#lead .col .txt p + p {
  margin-top: 30px;
}
#lead .img2 {
    width: 50%;
    position: relative;
    left: 25%;
    bottom: -50px;
    z-index: -1;
  }
@media screen and (min-width: 768px) {
  #lead {
    padding: 48px 0 114px;
    position: relative;
  }
  #lead .img2 {
    width: calc(50% - 600px);
    height: 499px;
    object-fit: cover;
    object-position: right top;
    position: absolute;
    left: calc(50% - 900px);
    bottom: 86px;
    z-index: -1;
  }
  #lead .img {
    width: 574px;
    float: right;
    margin: 0 -80px 0 0;
  }
  #lead .col {
    width: 420px;
    float: left;
    margin: 100px 0 0 0px;
  }
  #lead .col h2 {
    margin-bottom: 56px;
  }
  #lead .col h2 span {
    margin-left: -20px;
    letter-spacing: 0.04em;
  }
  #lead .col .txt p + p {
    margin-top: 36px;
  }
}

@media screen and (min-width: 1200px) {
  #lead .img {
    margin-right: -240px;
  }
  #lead .col {
    margin-left: 100px;
  }
}

#news {
  padding-bottom: 18vw;
}

#news #feed {
  margin: 8vw 0 10vw;
}

#news #feed .item {
  width: 100%;
  display: table;
  margin-bottom: 3vw;
}

#news #feed .item .photo {
  width: 33%;
  display: table-cell;
  vertical-align: middle;
}

#news #feed .item .photo a span {
  transition: 0.3s all ease-in-out;
}

#news #feed .item dl {
  display: table-cell;
  vertical-align: middle;
  padding-left: 8%;
}

#news #feed .item dl dt {
  font-size: 12px;
  color: #616161;
}

#news #feed .item dl dd {
  font-size: 15px;
  line-height: 25px;
}

#news .more a {
  display: block;
  border: 1px solid #d2d2d2;
  text-align: center;
  font-size: 16px;
  position: relative;
  padding: 15px 10px 13px 0;
}

#news .more a:after {
  content: '';
  width: 11px;
  background-image: url("../img/shared/arrow_right.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8%;
}

@media screen and (max-width: 767px) {
  #news #feed .item .photo a span {
    width: 100% !important;
    height: 0 !important;
    padding-top: 29vw;
  }
}

@media screen and (min-width: 768px) {
  #news {
    padding: 15px 0 125px;
  }
  #news h2 {
    text-align: left;
    margin: 0 0 28px -33px;
  }
  #news #feed {
    display: flex;
    margin: 0 -70px;
  }
  #news #feed .item {
    width: 300px;
    display: block;
    margin: 0 40px;
  }
  #news #feed .item .photo {
    width: 100%;
    display: block;
  }
  #news #feed .item .photo a:hover span {
    opacity: 0.8;
  }
  #news #feed .item dl {
    display: block;
    padding: 27px 0 0;
  }
  #news #feed .item dl dt {
    font-size: 14px;
    margin-bottom: 6px;
  }
  #news #feed .item dl dd {
    font-size: 16px;
    line-height: 24px;
  }
  #news #feed .item dl dd a:hover {
    text-decoration: underline;
  }
  #news .more {
    width: 137px;
    position: absolute;
    top: -15px;
    right: -21px;
    z-index: 1;
  }
  #news .more a {
    font-size: 14px;
    line-height: 30px;
    padding: 5px 15px 1px 0;
    overflow: hidden;
    border-color: #6f6f6f;
  }
  #news .more a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #443a3a;
    border-radius: 100%;
    transform: scale(0);
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
  }
  #news .more a:after {
    width: 10px;
    right: 19px;
    transition: 0.3s all ease-in-out;
  }
  #news .more a:hover {
    color: #fff;
  }
  #news .more a:hover:before {
    transform: scale(2);
  }
  #news .more a:hover:after {
    background-image: url("../img/shared/arrow_right_white.png");
  }
}

#point {
  background: #f1f1f1;
  padding-top: 10vw;
}

#point h2 {
  width: 100%;
  background-image: url("../img/shared/ttl_deco1.png");
  background-repeat: no-repeat;
  background-size: 83%;
  background-position: center bottom;
  padding-bottom: 8vw;
}

#point #point_slide {
  max-width: none !important;
  height: calc(100vh - 65px) !important;
  width: 100% !important;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#point #point_slide .inner {
  display: flex;
  width: max-content;
  padding: 0 6%;
  position:relative;
}

#point #point_slide .panel {
  padding-right: 20vw;
}

#point #point_slide .panel3 {
  padding-right: 5vw;
}

#point #point_slide h3 .fz50 {
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 5vw;
}

#point #point_slide .img1 {
  width: 95.6vw;
  margin: 4vw 6vw 0 12vw;
}

#point #point_slide .col {
  width: 78vw;
  margin-top: 4vw;
}

#point #point_slide .col .txt {
  padding: 5vw 4vw 0;
}

@media screen and (min-width: 768px) {
  #point{
    padding-top: 80px;
  }
  #point h2 {
    background-size: auto;
    padding-bottom: 32px;
  }
  #point h2 small {
    letter-spacing: 0.02em;
    margin-bottom: -16px;
  }
  #point #point_slide {
    height: 100vh !important;
  }
  #point #point_slide .inner {
    padding: 0 6%;
  }
  #point #point_slide .panel {
    padding-right: 112px;
  }
  #point #point_slide .panel3 {
    padding-right: 30px;
  }
  #point #point_slide h3 .fz50 {
    margin: 0 0 35px 5px;
  }
  #point #point_slide .img1 {
    width: 485px;
    margin: 19px 32px 0 83px;
  }
  #point #point_slide .col {
    width: 396px;
    margin-top: 15px;
  }
  #point #point_slide .col .txt {
    padding: 47px 18px 0;
  }
}

#lineup {
  padding: 12vw 0 20vw;
}

#lineup h2 {
  background-image: url("../img/shared/ttl_deco2.png");
  background-repeat: no-repeat;
  background-size: 41%;
  background-position: center bottom;
  padding-bottom: 4vw;
}

#lineup .note {
  font-size: 12px;
  line-height: 20px;
  margin: 4vw 0 12vw;
}
#lineup .note_02 {
  font-size: 14px;
  line-height: 20px;
  margin: 8vw 0;
	text-align: center;
}

#lineup .blk {
  margin: 0 -3%;
}

#lineup .blk p {
  width: 48%;
  transition: 1s all ease-in-out;
}

#lineup .blk p a {
  display: block;
}

#lineup .blk .ttl {
  margin: 2vw 0 1vw;
}

#lineup .blk .arrow {
  width: 21px;
  height: 21px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  border: 1px solid #b6b6b6;
}

#lineup .blk .arrow:before {
  content: '';
  background-image: url("../img/shared/icon_down.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  #lineup {
    padding: 89px 0 162px;
  }
  #lineup h2 {
    background-size: auto;
    padding-bottom: 36px;
    margin-bottom: 32px;
  }
  #lineup .note {
    font-size: 14px;
    line-height: 30px;
    margin: 0;
    position: absolute;
    top: 13px;
    right: -29px;
    text-align: right;
  }
	
#lineup .note_02{
	text-align: center;
	margin-bottom: 60px;
	display: block;
	font-size: 18px;
}	
	
  #lineup .blk {
    margin: 0 -26px;
  }
  #lineup .blk p {
    width: 480px;
  }
  #lineup .blk .img img {
    transition: 0.3s all ease-in-out;
  }
  #lineup .blk .ttl {
    font-size: 24px;
    margin: 44px 0 20px;
  }
  #lineup .blk .arrow {
    width: 41px;
    height: 41px;
    overflow: hidden;
  }
  #lineup .blk .arrow:before {
    transition: 0.3s all ease-in-out;
  }
  #lineup .blk .arrow:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #443a3a;
    border-radius: 100%;
    transform: scale(0);
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
  }
  #lineup .blk a:hover .img img {
    transform: scale(1.1);
    opacity: 1 !important;
  }
  #lineup .blk a:hover .arrow:before {
    background-image: url("../img/shared/icon_down_white.png");
  }
  #lineup .blk a:hover .arrow:after {
    transform: scale(2);
  }
}

@media screen and (min-width: 1250px) {
  #lineup .note {
    right: -99px;
  }
	#lineup .note_02 {
    margin-top: 30px;
		font-size: 16px;
		margin-bottom: 80px;
  }
}

#osozai .row1 {
  margin-top: 13vw;
  padding-bottom: 18vw;
}

#osozai .row1 .coll {
  position: relative;
}

#osozai .row1 .coll ul {
  position: absolute;
  bottom: 15vw;
  left: 13%;
  z-index: 1;
}

#osozai .row1 .coll ul li {
  background: #fff;
  font-size: 3.2vw;
  line-height: 4.8vw;
  padding: 0 1vw;
}

#osozai .row1 .coll ul .tt2 {
  margin: 0 3vw;
}

#osozai .row1 .colr {
  padding: 0 6%;
}

#osozai .row1 .colr .circle {
  width: 37.867vw;
  height: 37.867vw;
  margin: 8vw auto;
  border-radius: 50%;
  border: 1px solid #8b8b8b;
  font-size: 4vw;
  line-height: 7.73334vw;
  padding-top: 11.7vw;
}

#osozai .row1 .colr .txt {
  margin: 7vw 0 10vw;
}

#osozai .row1 .colr ul li {
  width: 48%;
}

#osozai .row2 {
  padding-bottom: 18vw;
}

#osozai .row2 .img1 {
  margin: 0 -6vw 12vw;
}

#osozai .row2 .col .txt {
  margin: 8vw 0 12vw;
}

#osozai .row3 {
  padding-bottom: 10vw;
}

#osozai .row3 .col {
  margin-bottom: 12vw;
}

#osozai .row3 .col .img {
  margin-bottom: 6vw;
}

@media screen and (min-width: 768px) {
  #osozai {
    border-bottom: 1px solid #d2d2d2;
    position: relative;
  }
  #osozai h2 {
    position: absolute;
    top: -1px;
    right: calc(50% - 500px);
    z-index: 1;
  }
  #osozai .row1 {
    margin: 0 0 191px;
    padding-bottom: 0;
  }
  #osozai .row1 .coll {
    width: 50%;
  }
  #osozai .row1 .coll ul {
    bottom: 199px;
    left: 0;
    right: 24px;
    justify-content: center;
  }
  #osozai .row1 .coll ul li {
    font-size: 18px;
    line-height: 32px;
    padding: 0 10px;
  }
  #osozai .row1 .coll ul .tt2 {
    margin: 0 35px;
  }
  #osozai .row1 .coll .img1 img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    object-position: 50%;
  }
  #osozai .row1 .colr {
    width: 50%;
    padding: 0;
  }
  #osozai .row1 .colr .inner {
    max-width: 376px;
    width: 100%;
    margin: 0 auto;
  }
  #osozai .row1 .colr .circle {
    width: 170px;
    height: 170px;
    margin: 44px 0 96px;
    font-size: 18px;
    line-height: 34.5px;
    padding-top: 52px;
  }
  #osozai .row1 .colr .title {
    text-align: left;
    margin-left: 3px;
  }
  #osozai .row1 .colr .title dd {
    text-align: right;
    margin-right: 30px;
  }
  #osozai .row1 .colr .txt {
    margin: 65px 24px 98px 3px;
  }
  #osozai .row1 .colr ul li {
    width: auto;
  }
  #osozai .row2 {
    padding-bottom: 185px;
  }
  #osozai .row2 .img1 {
    order: 2;
    width: 602px;
    margin: 0 -102px 0 0;
  }
  #osozai .row2 .col {
    order: 1;
    width: 342px;
    margin-top: 78px;
  }
  #osozai .row2 .col .title {
    text-align: left;
  }
  #osozai .row2 .col .title dd {
    text-align: right;
  }
  #osozai .row2 .col .txt {
    margin: 64px 0 79px;
  }
  #osozai .row3 {
    padding-bottom: 123px;
  }
  #osozai .row3 .wrap {
    max-width: 1124px;
    width: 96%;
  }
  #osozai .row3 .col {
    width: 501px;
    margin-bottom: 0;
  }
  #osozai .row3 .col .title2 {
    text-align: left;
    margin-left: 14px;
  }
  #osozai .row3 .col .img {
    margin-bottom: 49px;
  }
}

@media screen and (min-width: 1300px) {
  #osozai h2 {
    right: calc(50% - 623px);
  }
  #osozai .row1 .coll ul .tt2 {
    margin: 0 59px 0 43px;
  }
  #osozai .row1 .colr {
    padding-right: 126px;
  }
}

#fruits .row1 {
  margin-top: 13vw;
  padding-bottom: 20vw;
}

#fruits .row1 .coll {
  position: relative;
}

#fruits .row1 .coll ul {
  position: absolute;
  bottom: 15vw;
  left: 13%;
  z-index: 1;
}

#fruits .row1 .coll ul li {
  background: #fff;
  font-size: 3.2vw;
  line-height: 4.8vw;
  padding: 0 1vw;
}

#fruits .row1 .coll ul .tt2 {
  margin: 0 3vw;
}

#fruits .row1 .colr {
  padding: 0 6%;
}

#fruits .row1 .colr .title {
  margin-top: 10vw;
}

#fruits .row1 .colr .title dd {
  margin-top: 5vw;
}

#fruits .row1 .colr .txt {
  margin: 7vw 0 10vw;
}

#fruits .row1 .colr ul li {
  width: 48%;
}

#fruits .row2 {
  padding-bottom: 20vw;
}

#fruits .row2 .img1 {
  margin: 0 -6vw 10vw;
}

#fruits .row2 .coll .title dd {
  margin-top: 5vw;
}

#fruits .row2 .coll .txt {
  margin: 7vw 0 10vw;
}

#fruits .row2 .coll ul li {
  width: 48%;
}

#fruits .row3 {
  padding-bottom: 10vw;
}

#fruits .row3 .img {
  margin-bottom: 7vw;
}

#fruits .row3 .colr dl {
  margin-bottom: 7vw;
}

#fruits .row4 {
  padding: 0 6% 18vw;
}

#fruits .row4 .colr li {
  width: 49%;
}

#fruits .row4 .txt {
  font-size: 4.8vw;
  line-height: 8vw;
  letter-spacing: 0.1em;
  display: table;
  margin: 10vw auto 0;
}

@media screen and (min-width: 768px) {
  #fruits {
    position: relative;
  }
  #fruits h2 {
    position: absolute;
    top: 3px;
    right: calc(50% - 500px);
    z-index: 1;
  }
  #fruits .row1 {
    margin: 203px 0 191px;
    padding-bottom: 0;
  }
  #fruits .row1 .coll {
    width: 50%;
  }
  #fruits .row1 .coll .img1 img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    object-position: 50%;
  }
  #fruits .row1 .colr {
    width: 50%;
    padding: 0;
  }
  #fruits .row1 .colr .inner {
    max-width: 376px;
    width: 100%;
    margin: 0 auto;
  }
  #fruits .row1 .colr .title {
    text-align: left;
    margin: 351px 0 0 3px;
  }
  #fruits .row1 .colr .title dd {
    text-align: right;
    margin: 45px 30px 0 0;
  }
  #fruits .row1 .colr .txt {
    margin: 65px 33px 120px 3px;
  }
  #fruits .row1 .colr ul li {
    width: auto;
  }
  #fruits .row2 {
    padding-bottom: 114px;
  }
  #fruits .row2 .img1 {
    order: 2;
    width: 600px;
    margin: 0 -100px 0 0;
  }
  #fruits .row2 .coll {
    order: 1;
    width: 376px;
    margin-top: 124px;
  }
  #fruits .row2 .coll .title {
    text-align: left;
  }
  #fruits .row2 .coll .title dd {
    margin: 35px 33px 0 0;
    text-align: right;
  }
  #fruits .row2 .coll .txt {
    margin: 64px 27px 94px 0;
  }
  #fruits .row2 .coll ul {
    margin: 0 -2px 0 2px;
  }
  #fruits .row2 .coll ul li {
    width: auto;
  }
  #fruits .row3 {
    padding-bottom: 118px;
  }
  #fruits .row3 .inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  #fruits .row3 .img {
    width: 50%;
    margin-bottom: 0;
  }
  #fruits .row3 .img img {
    width: 100%;
    height: 690px;
    object-fit: cover;
    object-position: 50%;
  }
  #fruits .row3 .colr {
    margin: 226px 24px 0 0;
  }
  #fruits .row3 .colr dl {
    margin-bottom: 56px;
    text-align: left;
  }
  #fruits .row3 .colr dl dt span {
    display: block;
    margin-left: 67px;
  }
  #fruits .row3 .colr dl dd {
    text-align: right;
    margin: 18px 46px 0 0;
  }
  #fruits .row4 {
    padding: 0 0 165px;
  }
  #fruits .row4 .inner {
    max-width: 1242px;
    width: 100%;
    margin: 0 auto;
  }
  #fruits .row4 .colr {
    order: 2;
    width: 708px;
  }
  #fruits .row4 .colr li {
    width: auto;
  }
  #fruits .row4 .colr .img2 {
    margin-top: 97px;
  }
  #fruits .row4 .txt {
    order: 1;
    font-size: 20px;
    line-height: 50px;
    letter-spacing: 0.1em;
    display: block;
    margin: 170px 0 0 30px;
  }
}

@media screen and (min-width: 1200px) {
  #fruits .row4 .txt {
    margin-left: 81px;
  }
}

@media screen and (min-width: 1300px) {
  #fruits h2 {
    right: calc(50% - 623px);
  }
  #fruits .row1 .colr {
    padding-right: 126px;
  }
}

#bnr {
  padding-bottom: 20vw;
}

#bnr .bg {
  margin: 0 -20vw;
}

#bnr .box {
  position: relative;
  z-index: 1;
  width: 88%;
  margin: -5vw auto 0;
  background: #322f2f;
  color: #fff;
  padding: 6vw 0 8vw;
  transition: 1s all ease-in-out;
}

#bnr .box .icon {
  width: 6.66667vw;
  margin: 0 auto;
}

#bnr .box .ttl {
  position: relative;
  margin-top: 3.5vw;
  padding-bottom: 3vw;
}

#bnr .box .ttl:after {
  content: '';
  width: 18.67vw;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

#bnr .box .txt {
  margin: 6vw 0;
  letter-spacing: 0.15em;
}

#bnr .box .btn-link {
  width: 76%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  #bnr {
    padding: 360px 0 81px;
    position: relative;
  }
  #bnr .bg {
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }
  #bnr .bg img {
    width: 100%;
    height: auto;
  }
  #bnr .box {
    width: 550px;
    margin: 0 auto;
    padding: 42px 0 56px;
  }
  #bnr .box .icon {
    width: 29px;
  }
  #bnr .box .ttl {
    margin-top: 28px;
    padding-bottom: 39px;
  }
  #bnr .box .ttl:after {
    width: 74px;
  }
  #bnr .box .txt {
    margin: 29px 0 35px;
  }
  #bnr .box .btn-link {
    width: 330px;
  }
}

@media screen and (min-width: 1520px) {
  #bnr {
    padding-top: 450px;
  }
}

#message {
  background: #f1f1f1;
  padding: 15vw 0;
}

#message h2 {
  background-image: url("../img/shared/ttl_deco1.png");
  background-repeat: no-repeat;
  background-size: 67%;
  background-position: center bottom;
  padding-bottom: 5vw;
}

#message ul {
  font-size: 16px;
  line-height: 22px;
  margin: 9vw 0 5vw;
  flex-wrap: wrap;
}

#message ul li {
  width: 42%;
  margin: 0 0 7vw;
}

#message ul li img {
  width: 46px;
  margin: 0 auto 2vw;
}

#message .txt {
  letter-spacing: 0;
  margin: 0 -3%;
}

@media screen and (min-width: 768px) {
  #message {
    padding: 121px 0 123px;
    position: relative;
  }
  #message h2 {
    letter-spacing: 0.06em;
    background-size: auto;
    padding-bottom: 60px;
  }
  #message ul {
    font-size: 18px;
    margin: 99px 0 85px 159px;
    justify-content: flex-start;
  }
  #message ul li {
    width: auto;
    margin: 0px;
  }
  #message ul li img {
    width: 76px;
    margin: 0 auto 22px;
  }
  #message ul li:nth-child(2) {
    margin-left: 107px;
  }
  #message ul li:nth-child(3) {
    margin-left: 102px;
  }
  #message ul li:nth-child(4) {
    margin-left: 69px;
  }
  #message .txt {
    letter-spacing: 0.05em;
    margin: 0;
  }
  #message .img {
    position: absolute;
    right: calc(-50vw + 50%);
    top: -146px;
  }
}

@media screen and (min-width: 1500px) {
  #message .img {
    right: calc(50% - 750px);
  }
}

#access .inner {
  padding: 12vw 6% 0;
}

#access .inner .col {
  padding-top: 10vw;
  position: relative;
  z-index: 2;
}

#access .inner .col .txt {
  margin: 8vw 0 6vw;
}

#access .inner .col ul {
  max-width: 261px;
  width: 100%;
  margin: 0 auto;
  font-size: 13px;
  line-height: 23px;
}

#access .inner .col ul li {
  position: relative;
  padding-left: 12px;
}

#access .inner .col ul li:before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}

#access .inner .col .btn-link {
  width: 84%;
  margin: 7vw auto 18vw;
}

#access .inner .floor {
  position: relative;
  z-index: 2;
}

#access .bg-para {
  height: 61.334vw;
}

@media screen and (max-width: 767px) {
  #access .inner {
    padding-bottom: 0;
  }
  #access .inner:after {
    height: 20vw;
    bottom: -20vw;
  }
  #access .img-sp {
    margin-bottom: -20vw;
  }
  #access .img-sp img {
    height: 85vw;
  }
}

@media screen and (min-width: 768px) {
  #access .inner {
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
    padding: 200px 7px 188px 0;
  }
  #access .inner .floor {
    width: calc(100% - 340px);
  }
  #access .inner .floor img {
    width: 100%;
    height: auto;
  }
  #access .inner .col {
    width: 300px;
    padding-top: 0px;
  }
  #access .inner .col h2 {
    text-align: left;
    letter-spacing: 0.07em;
    margin-left: -6px;
  }
  #access .inner .col .txt {
    letter-spacing: 0.05em;
    text-align: left;
    margin: 55px 33px 53px 17px;
  }
  #access .inner .col ul {
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 30px;
  }
  #access .inner .col ul li {
    padding: 0 12px 0 16px;
    letter-spacing: 0.03em;
  }
  #access .inner .col ul li:before {
    left: 3px;
  }
  #access .inner .col .btn-link {
    width: 100%;
    margin: 59px 0 0;
  }
  #access .bg-para {
    height: 700px;
  }
}

@media screen and (min-width: 1200px) {
  #access .inner .floor {
    width: 784px;
  }
  #access .inner .col {
    padding-top: 44px;
  }
}

@media screen and (max-width: 1300px) {
  #access .bg-para {
    display: none !important;
  }
  #access .img-sp {
    display: block !important;
    margin-bottom: -150px;
  }
  #access .img-sp img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: 50%;
  }
  #access .inner {
    position: relative;
    padding-bottom: 38px;
  }
  #access .inner:after {
    content: '';
    height: 300px;
    background: #fff;
    position: absolute;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    bottom: -150px;
    z-index: 1;
  }
}

#shopinfo {
  padding: 16vw 0 18vw;
  position: relative;
  z-index: 2;
  background: #fff;
}

#shopinfo h2 {
  width: 224px;
  margin: 0 auto 30px;
}

#shopinfo .tel {
  font-size: 15px;
  letter-spacing: 0.05em;
}

#shopinfo .tel span {
  font-size: 26px;
  letter-spacing: 0.05em;
  margin: 5px 0 15px;
}

#shopinfo .tel span img {
  width: 14px;
  margin: -4px 5px 0 0;
}

#shopinfo .tel small {
  width: 211px;
  margin: 0 auto;
  border-left: 1px solid;
  border-right: 1px solid;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 20px;
}

#shopinfo .tel a:hover img {
  opacity: 1 !important;
}

#shopinfo .insta {
  width: 30px;
  margin: 45px auto 35px;
}

#shopinfo .info {
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0;
  margin-bottom: 15vw;
  text-align: left;
}

#shopinfo .info dl {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}

#shopinfo .info dl:after {
  content: '';
  width: 94px;
  height: 1px;
  background: #2a2a2a;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
}

#shopinfo .info dl dd {
  padding: 3px 0 0 15px;
}

#shopinfo .info dl dd a {
  display: inline-block;
  margin-left: 12px;
  font-size: 12px;
  letter-spacing: 0;
}

#shopinfo .info dl dd a img {
  width: 9px;
  margin: -2px 6px 0 0;
}

#shopinfo .info dl dd a:hover img {
  opacity: 1 !important;
}

@media screen and (min-width: 768px) {
  #shopinfo {
    padding: 138px 0 140px;
  }
  #shopinfo h2 {
    width: 100%;
    margin: 0 0 46px -4px;
  }
  #shopinfo .tel {
    font-size: 16px;
    letter-spacing: 0;
  }
  #shopinfo .tel span {
    font-size: 28px;
    letter-spacing: 0.05em;
    margin: 5px 0 19px;
  }
  #shopinfo .tel span img {
    width: 15px;
    margin: -5px 8px 0 0;
  }
  #shopinfo .tel small {
    width: 224px;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 18px;
    padding-bottom: 3px;
  }
  #shopinfo .insta {
    width: 31px;
    margin: 38px auto 86px;
  }
  #shopinfo .info {
    width: 700px;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
    margin: 0 auto 107px;
  }
  #shopinfo .info dl {
    width: 100%;
    display: table;
    padding-bottom: 12px;
    margin-bottom: 17px;
  }
  #shopinfo .info dl:after {
    width: 196px;
  }
  #shopinfo .info dl dt {
    width: 209px;
    display: table-cell;
    padding-left: 32px;
  }
  #shopinfo .info dl dd {
    display: table-cell;
    padding: 0;
  }
  #shopinfo .info dl dd a {
    margin-left: 18px;
    font-size: 13px;
    letter-spacing: 0;
  }
  #shopinfo .info dl dd a img {
    width: 10px;
    margin: -2px 8px 0 0;
  }
  #shopinfo .info dl dd a:hover {
    text-decoration: underline;
  }
}

