@charset "UTF-8";
/* Make box model predictable: include padding/border inside width/height calculations.
   This prevents elements with width:100% plus horizontal padding from causing horizontal overflow. */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/earlyaccess/roundedmplus1c.css");
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/*/////////////////////////////
共通装飾クラス
/////////////////////////////*/
.ttl_01 {
  font-family: "Jost", sans-serif;
  font-size: 40px;
  border-bottom: solid 1px #fff;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .ttl_01 {
    font-size: 30px;
  }
}

.ttl_02 {
  font-family: "Jost", sans-serif;
  color: #1E2D39;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .ttl_02 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

.ttl_03 {
  font-family: "Jost", sans-serif;
  color: #BCA270;
  font-size: 48px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .ttl_03 {
    font-size: 30px;
  }
}

.ttl_04 {
  font-family: "Jost", sans-serif;
  font-size: 40px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .ttl_04 {
    font-size: 30px;
  }
}

.btns {
  text-align: center;
  padding: 30px 0;
}

.btn_01 {
  min-width: 280px;
  display: inline-block;
  background-color: #BA2730;
  color: #fff;
  text-decoration: none;
  padding: 15px 0;
  border-radius: 100px;
  background-image: url(../img/cmn/cursor_01.svg);
  background-repeat: no-repeat;
  /* vertically centered and 15px from the right */
  background-position: right 15px center;
  background-size: 20px;
  transition: 0.3s ease-in-out;
}
.btn_01:hover {
  background-color: #6c191f;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

/*フォントウェイト　300,400,500,700,900*/
/*
100=Thin (Hairline)
300=Light
400=Normal
500=Medium
700=Bold
800=Extra Bold (Ultra Bold)
900=Black (Heavy)
*/
/*フォントウェイト　100,300,350,400,500,700,900*/
body {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  /*メインで使用するフォントが明朝体のとき
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  */
  /*メインで使用するフォントが丸ゴシックのとき
  font-family: "Rounded Mplus 1c",'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';*/
  /*メインで使用するフォントはNotoSansのとき
  font-family: 'Noto Sans Japanese', sans-serif;*/
}

html, body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/*/////////////////////////////
共通レイアウト＋トップページ
/////////////////////////////*/
#contents_lp {
  width: 100%;
}
#contents_lp p {
  line-height: 1.75;
  margin-bottom: 1em;
}
#contents_lp img {
  max-width: 100%;
}

.inner_1200 {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inner_1200 {
    width: 86%;
    padding: 0;
  }
}

.inner_800 {
  width: 100%;
  max-width: 800px;
  padding: 0 40px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inner_800 {
    width: 86%;
    padding: 0;
  }
}

.grid_container_01 .grid {
  display: grid;
  grid-template-columns: 1fr 575px;
  gap: 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .grid_container_01 .grid {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
.grid_container_01 .grid .grid_item_01 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .grid_container_01 .grid .grid_item_01 {
    order: 2;
    height: 200px;
    width: 100%;
  }
}
.grid_container_01 .grid .grid_item_01 .image_bg {
  border: solid 1px #BCA270;
  border-left: none;
  min-height: 350px;
  position: absolute;
  z-index: 9;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .grid_container_01 .grid .grid_item_01 .image_bg {
    min-height: auto;
    height: 200px;
    width: 94%;
  }
}
.grid_container_01 .grid .grid_item_01 .image {
  min-height: 350px;
  position: absolute;
  z-index: 10;
  width: 100%;
  left: -20px;
  top: -20px;
}
@media screen and (max-width: 767px) {
  .grid_container_01 .grid .grid_item_01 .image {
    position: relative;
    width: 94%;
    height: 200px;
    min-height: auto;
    left: -10px;
    top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .grid_container_01 .grid .grid_item_02 {
    order: 1;
    min-height: auto;
    width: 93%;
    margin-left: 7%;
    margin-bottom: 40px;
  }
}
.grid_container_01 .grid .grid_item_02 .inner {
  max-width: 575px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .grid_container_01 .grid .grid_item_02 .inner {
    padding-right: 7%;
  }
}

.grid_container_02 {
  overflow: hidden;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .grid_container_02 {
    padding-bottom: 0;
  }
}
.grid_container_02 .grid {
  display: grid;
  grid-template-columns: 575px 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .grid_container_02 .grid {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
.grid_container_02 .grid_item_01 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .grid_container_02 .grid_item_01 {
    width: 93%;
    margin-right: 7%;
  }
}
.grid_container_02 .grid_item_01 h3 {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .grid_container_02 .grid_item_01 h3 {
    padding-left: 7%;
  }
}
.grid_container_02 .grid_item_01 .inner {
  max-width: 575px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .grid_container_02 .grid_item_01 .inner {
    padding-left: 0;
    width: 93%;
    margin-left: 7%;
  }
}
.grid_container_02 .grid_item_02 {
  position: relative;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .grid_container_02 .grid_item_02 {
    height: 200px;
    width: 93%;
    margin-left: 7%;
  }
}
.grid_container_02 .grid_item_02 .image_bg {
  border: solid 1px #BCA270;
  border-right: none;
  min-height: 400px;
  position: absolute;
  z-index: 9;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .grid_container_02 .grid_item_02 .image_bg {
    min-height: auto;
    height: 200px;
    width: 100%;
  }
}
.grid_container_02 .grid_item_02 .image {
  min-height: 400px;
  position: absolute;
  z-index: 10;
  width: 100%;
  right: -20px;
  top: -20px;
  margin-top: 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .grid_container_02 .grid_item_02 .image {
    position: relative;
    width: 100%;
    height: 200px;
    min-height: auto;
    right: -10px;
    top: -30px;
  }
}

#lp_main {
  min-height: 900px;
  background-image: url(../img/top/main.jpg);
  background-size: cover;
  background-color: #1E2D39;
}
@media screen and (max-width: 767px) {
  #lp_main {
    min-height: 70vh;
  }
}
#lp_main .kv_area {
  min-height: 900px;
  position: relative;
  /* decorative background moved to pseudo-element so it can layer above the video */
}
@media screen and (max-width: 767px) {
  #lp_main .kv_area {
    min-height: 90vh;
  }
}
#lp_main .kv_area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1; /* above video (z=0), below h1 (z=2) */
  background-image: url(../img/top/bg_01.svg);
  background-repeat: repeat-x;
  background-size: 100% auto;
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  #lp_main .kv_area::before {
    background-size: 250% auto;
  }
}
#lp_main .kv_area h1 {
  position: relative;
  z-index: 2; /* keep title above overlay */
}
#lp_main .kv_area h1 img {
  max-width: 800px;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(35%);
}
@media screen and (max-width: 767px) {
  #lp_main .kv_area h1 img {
    max-width: 90%;
    right: 5%;
    top: 50%;
    transform: translateY(100%);
  }
}

#why {
  background-color: #1E2D39;
  background-image: url(../img/top/bg_02.svg);
  background-repeat: no-repeat;
  background-position: center bottom -5px;
  background-size: 100% auto;
  width: 100%;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  #why {
    padding-bottom: 50px;
    padding-top: 15px;
    margin-top: -10px;
  }
}
#why h2 {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #why h2 {
    margin-bottom: 50px;
  }
}
#why h2 img {
  height: 60px;
}
@media screen and (max-width: 767px) {
  #why h2 img {
    height: 50px;
  }
}
#why ul.points {
  display: flex;
}
@media screen and (max-width: 767px) {
  #why ul.points {
    flex-wrap: wrap;
  }
}
#why ul.points li {
  width: 33%;
  padding-right: 50px;
  margin-right: 50px;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  #why ul.points li {
    width: 100%;
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    border-bottom: solid 1px #fff;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
#why ul.points li p {
  font-size: 16px;
  color: #fff;
}
#why ul.points li h3 {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #why ul.points li h3 {
    margin-bottom: 10px;
  }
}
#why ul.points li h4 {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #why ul.points li h4 {
    margin-bottom: 20px;
  }
}
#why ul.points li h4 img {
  height: 35px;
}
#why ul.points li:first-child h4 img {
  height: 40px;
}
#why ul.points li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  #why ul.points li:last-child {
    border: none;
  }
}
#why .sec_area {
  padding-top: 150px;
  background-image: url(../img/top/map.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 600px auto;
}
@media screen and (max-width: 767px) {
  #why .sec_area {
    padding-top: 0;
    background-size: 70% auto;
    background-position: right 0 top 50px;
  }
}
#why .sec_area .msg {
  max-width: 800px;
  margin: auto;
  border: solid 1px #fff;
  padding: 35px;
  background-color: rgba(30, 45, 57, 0.58);
}
@media screen and (max-width: 767px) {
  #why .sec_area .msg {
    padding: 5%;
  }
}
#why .sec_area .area_overview {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  #why .sec_area .area_overview {
    margin-top: 100px;
  }
}
#why .sec_area .area_overview h2 img {
  height: 45px;
}
@media screen and (max-width: 767px) {
  #why .sec_area .area_overview h2 img {
    height: auto;
    width: 80%;
    margin: auto;
  }
}
#why .sec_area .area_overview ul.points_area {
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #why .sec_area .area_overview ul.points_area {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
#why .sec_area .area_overview ul.points_area li {
  width: 33%;
  padding-right: 50px;
  margin-right: 50px;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  #why .sec_area .area_overview ul.points_area li {
    width: 100%;
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    border-bottom: solid 1px #fff;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
#why .sec_area .area_overview ul.points_area li p {
  font-size: 16px;
  color: #fff;
}
#why .sec_area .area_overview ul.points_area li h3 {
  margin-bottom: 25px;
}
#why .sec_area .area_overview ul.points_area li h3 img {
  height: 60px;
}
@media screen and (max-width: 767px) {
  #why .sec_area .area_overview ul.points_area li h3 img {
    height: 55px;
  }
}
#why .sec_area .area_overview ul.points_area li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
  border: none;
}
#why .sec_area .grid_item_01 .image {
  background-image: url(../img/top/pic_001.jpg);
  background-size: cover;
  background-position: center bottom;
}
#why .sec_area .grid_item_02 .image {
  background-image: url(../img/top/pic_map.jpg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
}
#why .bg_mount {
  min-height: 150px;
}

#slider_01 {
  background-color: #fff;
  background-image: url(../img/top/bg_03.svg);
  background-repeat: no-repeat;
  background-position: center bottom -5px;
  background-size: 100% auto;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  #slider_01 {
    padding-top: 80px;
    padding-bottom: 100px;
    background-size: 200% auto;
  }
}
#slider_01 .swiper {
  width: 100%;
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper {
    padding-bottom: 10px;
  }
}
#slider_01 .swiper .swiper-wrapper {
  position: relative;
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-wrapper {
    width: 100%;
  }
}
#slider_01 .swiper .swiper-slide {
  /* right 60% colored with $color_gold, left transparent */
  background: linear-gradient(to right, transparent 40%, #BCA270 40% 100%);
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-slide {
    background: linear-gradient(to bottom, transparent 15%, #BCA270 15% 100%);
  }
}
#slider_01 .swiper .swiper-slide .grid {
  display: grid;
  grid-template-columns: 1fr 575px;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-slide .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
#slider_01 .swiper .swiper-slide .grid .left .image {
  min-height: 400px;
  background-repeat: no-repeat;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-slide .grid .left .image {
    width: 93%;
    margin: auto;
    min-height: 250px;
  }
}
#slider_01 .swiper .swiper-slide .grid .left .img_01 {
  background-image: url(../img/top/slide_01_01.jpg);
  background-size: cover;
  background-position: center;
}
#slider_01 .swiper .swiper-slide .grid .left .img_02 {
  background-image: url(../img/top/slide_01_02.jpg);
  background-size: cover;
  background-position: center;
}
#slider_01 .swiper .swiper-slide .grid .right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-slide .grid .right {
    display: block;
  }
}
#slider_01 .swiper .swiper-slide .grid .right .inner {
  padding-right: 100px;
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-slide .grid .right .inner {
    padding-right: 0;
    padding: 7%;
  }
}
#slider_01 .swiper .swiper-button-prev {
  background-image: url(../img/cmn/btn_prev.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  z-index: 10;
  top: 35%;
  transform: translateY(-50%);
  left: 20px;
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-button-prev {
    top: 110px;
    left: -5px;
  }
}
#slider_01 .swiper .swiper-button-next {
  background-image: url(../img/cmn/btn_next.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  z-index: 10;
  top: 35%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-button-next {
    top: 110px;
    right: -5px;
  }
}
#slider_01 .swiper .swiper-button-prev,
#slider_01 .swiper .swiper-button-next {
  width: 70px;
  height: 70px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-button-prev,
  #slider_01 .swiper .swiper-button-next {
    width: 55px;
    height: 55px;
  }
}
#slider_01 .swiper .swiper-button-prev:hover,
#slider_01 .swiper .swiper-button-next:hover {
  opacity: 0.8;
  cursor: pointer;
}
#slider_01 .swiper .swiper-pagination {
  padding: 30px 0;
  text-align: center;
}
#slider_01 .swiper .swiper-pagination span {
  border: solid 1px #BCA270;
  width: 50px;
  display: inline-block;
  height: 5px;
  margin: 10px;
}
@media screen and (max-width: 767px) {
  #slider_01 .swiper .swiper-pagination span {
    width: 35px;
  }
}
#slider_01 .swiper .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #BCA270;
}

/* /#slider_01 */
#adventure {
  background-color: #1E2D39;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #adventure {
    padding-bottom: 20px;
  }
}
#adventure .intro {
  text-align: center;
}
#adventure .points {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #adventure .points {
    display: none;
  }
}
#adventure .points ul {
  display: flex;
  gap: 40px;
  align-items: stretch;
  /* ensure children fill the ul height */
}
#adventure .points ul li {
  width: 25%;
}
#adventure .points ul li h2 {
  font-size: 35px;
  font-family: "Jost", sans-serif;
  margin-bottom: 10px;
}
#adventure .points ul li .img_02 {
  background-image: url(../img/top/pic_003.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 250px;
  margin-top: 20px;
}
#adventure .points ul li .img_04 {
  background-image: url(../img/top/pic_005.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 250px;
  margin-top: 20px;
}
#adventure .points ul li:last-child p {
  padding-right: 20px;
}
#adventure .points ul li.img_01 {
  background-image: url(../img/top/pic_002.jpg);
  background-size: cover;
}
#adventure .points ul li.img_03 {
  background-image: url(../img/top/pic_004.jpg);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  #adventure .swiper_point {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #adventure .swiper_point {
    display: block;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
#adventure .swiper_point .swiper-wrapper {
  width: 86%;
}
#adventure .swiper_point .swiper-slide {
  width: auto;
}
#adventure .swiper_point .swiper-slide h2 {
  font-size: 30px;
  font-family: "Jost", sans-serif;
  margin-bottom: 10px;
}
#adventure .swiper_point .swiper-slide p {
  margin-bottom: 20px;
  font-size: 12px;
}
#adventure .swiper_point .swiper-slide img {
  max-width: 100%;
}
#adventure .swiper_point .swiper-button-prev {
  background-image: url(../img/cmn/btn_prev.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  z-index: 10;
  top: 35%;
  transform: translateY(-50%);
  left: 20px;
}
@media screen and (max-width: 767px) {
  #adventure .swiper_point .swiper-button-prev {
    left: -5px;
  }
}
#adventure .swiper_point .swiper-button-next {
  background-image: url(../img/cmn/btn_next.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  z-index: 10;
  top: 35%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #adventure .swiper_point .swiper-button-next {
    right: -5px;
  }
}
#adventure .swiper_point .swiper-button-prev,
#adventure .swiper_point .swiper-button-next {
  width: 70px;
  height: 70px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  #adventure .swiper_point .swiper-button-prev,
  #adventure .swiper_point .swiper-button-next {
    top: 210px;
    width: 55px;
    height: 55px;
  }
}
#adventure .swiper_point .swiper-button-prev:hover,
#adventure .swiper_point .swiper-button-next:hover {
  opacity: 0.8;
  cursor: pointer;
}
#adventure .swiper_point .swiper-pagination {
  padding: 30px 0;
  text-align: center;
}
#adventure .swiper_point .swiper-pagination span {
  border: solid 1px #BCA270;
  width: 50px;
  display: inline-block;
  height: 5px;
  margin: 10px;
}
@media screen and (max-width: 767px) {
  #adventure .swiper_point .swiper-pagination span {
    width: 35px;
  }
}
#adventure .swiper_point .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #BCA270;
}
#adventure .swiper_02 {
  width: 100%;
  position: relative;
  margin-top: 80px;
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #adventure .swiper_02 {
    margin-bottom: 20px;
  }
}
#adventure .swiper_02 .swiper-wrapper {
  overflow: visible;
}
#adventure .swiper_02 .img_01 {
  background-image: url(../img/top/slide_01_01.jpg);
}

#access {
  width: 100%;
  overflow: hidden;
}
#access .grid_container {
  display: grid;
  grid-template-columns: 1fr 575px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #access .grid_container {
    grid-template-columns: 1fr;
  }
}
#access .grid_container .left {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  #access .grid_container .left {
    order: 2;
    width: 100%;
    height: 300px;
  }
}
#access .grid_container .left .image {
  background-image: url(../img/top/pic_access.jpg);
  background-size: cover;
  background-position: right center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #access .grid_container .left .image {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  #access .grid_container .right {
    order: 1;
  }
}
#access .grid_container .right .inner {
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  #access .grid_container .right .inner {
    padding: 40px 7%;
  }
}
#access .grid_container .right .inner h2 img {
  height: 45px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #access .grid_container .right .inner h2 img {
    height: 35px;
  }
}
#access .grid_container .right .inner p {
  color: #1E2D39;
}

/* /#access *//*# sourceMappingURL=aizu_lp.css.map */