
:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --box-shadow3: .1rem .2rem .2rem rgba(133, 133, 133, 0.05);
  --box-shadow4: .3rem .2rem .2rem rgba(133, 133, 133, 0.124);
  --box-shadow-hover: 0 .2rem .2rem rgba(0, 0, 0, .08);
  --color-text: #000;
  --color-text-accent: #00aaca;
  --color-bg: #c5edf1;
  --color-bg-lighter: #d6f5f9;
  --color-bg-transparent: #e8ffff;
  --color-bg-brands: #5cd0e0;
  --color-bg-footer: #ddfaf9;
  --color-accent: #5cd0e0;
  --color-highlight: #e7d362;
  --color-store: #fd3d85;
  --color-white: #ffffff;
  --color-silver: rgb(98, 113, 134);
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #303030;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

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

/* header */
header {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  width: 100%;
  max-width: 100%;
  border-bottom: solid 1px #cef1f6;
  background-color: #fff;
}
header .sp_menu_btn {
  cursor: pointer;
}
header .header_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 110px;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  header .header_in {
    height: 65px;
  }
}
header .header_in .header_logo {
  width: 23.42%;
  max-width: 240px;
  margin-left: 30px;
  font-size: 0;
}

@media screen and (max-width: 820px) {
  header .header_in .header_logo {
    width: 83.46%;
    max-width: 150px;
    margin-left: 20px;
  }
}
header .header_in .pc_nav {
  width: 72.84%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  /*.nav_list_btn{
    width: 150px;
    height: 110px;
    margin-right: 1px;
    @include max-screen($breakpoint-tablet){
      position: absolute;
      right: 80px;
      top: 0px;
      width: 80px;
      height: 65px;
    }
    a{
      @include flex;
      justify-content: center;
      @include aic;
      background-color: $c_blue;
      @include bs;
      @include f(11);
      height: 110px;
      @include max-screen($breakpoint-tablet){
        height: 65px;
      }
      color: #fff;
      span{
        @include db;
        @include tc;
        img{
          @include db;
          width: 40px;
          height: 40px;
          @include ma;
          @include mb(10);
          @include max-screen($breakpoint-tablet){
            width: 20px;
            height: 20px;
            @include dn;
          }
        }
        i{
          @include db;
        }
      }
      &._on{
        background-color: #E4F9FC;
        color: $c_blue;
      }
    }
  }*/
}
@media screen and (max-width: 820px) {
  header .header_in .pc_nav {
    display: block;
    margin-left: auto;
    width: 16.53%;
    height: 100%;
    min-width: 62px;
  }
}
header .header_in .pc_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 820px) {
  header .header_in .pc_nav ul {
    display: none;
  }
}
header .header_in .pc_nav ul .nav_link {
  margin: 0px 1em;
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
header .header_in .pc_nav ul .nav_link::after {
  content: "";
  width: 0px;
  display: block;
  height: 3px;
  background-color: #49cbde;
  position: absolute;
  left: 0px;
  bottom: -10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header .header_in .pc_nav ul .nav_link:hover::after {
  width: 100%;
  max-width: 100%;
}
header .header_in .pc_nav ul .nav_link a {
  color: #303030;
  cursor: pointer;
}
header .header_in .pc_nav ul .nav_link.has-child {
  position: relative;
  cursor: pointer;
}
header .header_in .pc_nav ul .nav_link.has-child .nav_link_child {
  position: absolute;
  top: 40px;
  z-index: 4;
  background: var(--color-bg-lighter);
  width: 330px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px 20px 0;
  border-radius: 5px;
}
@media screen and (max-width: 1040px) {
  header .header_in .pc_nav ul .nav_link.has-child .nav_link_child {
    width: 235px;
  }
}
header .header_in .pc_nav ul .nav_link.has-child .nav_link_child h3 {
  font-size: 16px;
  margin-bottom: 20px;
  margin-left: 2px;
  font-weight: 500;
  border-bottom: solid 2px var(--color-white);
}
header .header_in .pc_nav ul .nav_link.has-child .nav_link_child ul li {
  width: 100%;
  max-width: 100%;
}
header .header_in .pc_nav ul .nav_link.has-child .nav_link_child ul li a {
  color: var(--color-text);
  border-bottom: solid 1px rgb(255, 255, 255);
  margin-left: 25px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
header .header_in .pc_nav ul .nav_link.has-child .nav_link_child ul li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  position: absolute;
  background-color: var(--color-text);
  top: 10px;
  left: -20px;
}
header .header_in .pc_nav ul .nav_link.has-child:hover .nav_link_child {
  visibility: visible;
  opacity: 1;
}
header .header_in .pc_nav .nav_tenpo, header .header_in .pc_nav .nav_list_btn {
  width: 150px;
  height: 110px;
}
@media screen and (max-width: 820px) {
  header .header_in .pc_nav .nav_tenpo, header .header_in .pc_nav .nav_list_btn {
    position: absolute;
    top: 0px;
    width: 80px;
    height: 65px;
  }
}
header .header_in .pc_nav .nav_tenpo a, header .header_in .pc_nav .nav_list_btn a {
  /* display: block; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  width: 100%;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 0px;
  height: 110px;
}
header .header_in .pc_nav .nav_tenpo a img, header .header_in .pc_nav .nav_list_btn a img {
  width: 50px;
  margin: -10px auto 4px;
}
header .header_in .pc_nav .nav_tenpo a i, header .header_in .pc_nav .nav_list_btn a i {
  width: 100%;
}
@media screen and (max-width: 820px) {
  header .header_in .pc_nav .nav_tenpo a, header .header_in .pc_nav .nav_list_btn a {
    padding: 15px 0px;
    font-size: 10px;
    height: 65px;
  }
  header .header_in .pc_nav .nav_tenpo a img, header .header_in .pc_nav .nav_list_btn a img {
    width: 30px;
    margin: -6px auto 2px;
  }
  header .header_in .pc_nav .nav_list_btn a i{
    display: block;
  }
  header .header_in .pc_nav .nav_tenpo a i, header .header_in .pc_nav .nav_list_btn a i {
    font-weight: bold;
  }
}
header .header_in .pc_nav .nav_tenpo {
  background-color: #FB4E69;
}
@media screen and (max-width: 820px) {
  header .header_in .pc_nav .nav_tenpo {
    right: 0px;
  }
}
header .header_in .pc_nav .nav_list_btn {
  background-color: #49cbde;
}
@media screen and (max-width: 820px) {
  header .header_in .pc_nav .nav_list_btn {
    right: 80px;
  }
}
header .header_in .pc_nav .nav_list_btn a._on {
  background-color: #E4F9FC;
  color: #49cbde;
}

.header_nav {
  width: 100%;
  max-width: 100%;
  position: fixed;
  left: 0px;
  top: 110px;
  display: none;
}
@media screen and (max-width: 820px) {
  .header_nav {
    top: 65px;
    overflow-y: scroll;
    height: 100vh;
  }
}
.header_nav .footer {
  padding-bottom: 45px;
}
main {
  display: block;
  padding-bottom: 100px;
}
#scene_index{
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  main {
    margin-bottom: 20px;
    overflow: hidden;
  }
}
main.-mb_none {
  margin-bottom: 0px;
}

/* footer */
.footer {
  background-color: #E4F9FC;
}
.footer .footer_logo {
  padding: 20px 0px;
  background-color: #fff;
  font-size: 0px;
}
.footer .footer_logo .top {
  display: none;
}
.footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 45px 0px 0px;
  gap: 15px 2.18%;
}
@media screen and (max-width: 820px) {
  .footer nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .footer nav {
    padding-top: 20px;
    display: block;
  }
}
.footer nav .nav_in {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 820px) {
  .footer nav .nav_in {
    width: 31.88%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer nav .nav_in {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.footer nav .nav_tit {
  border-bottom: solid 1px #49cbde;
  padding-bottom: 15px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
  color: #303030;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .footer nav .nav_tit {
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.footer nav .nav_tit .-blank {
  width: 12px;
  height: 12px;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
  margin-left: 10px;
}
.footer nav .nav_tit .eng {
  display: block;
  font-family: "urbane-rounded", sans-serif;
  font-size: 0.8em;
  font-weight: bold;
}
.footer nav .nav_list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer nav .nav_list_wrap {
    display: block;
  }
}
.footer nav .nav_list_wrap .nav_list {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer nav .nav_list_wrap .nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 89.55%;
    margin: 0px auto;
  }
}
.footer nav .nav_list_wrap .nav_list li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: .7em;
  position: relative;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .footer nav .nav_list_wrap .nav_list li {
    width: 48%;
  }
}
.footer nav .nav_list_wrap .nav_list li::before {
  display: block;
  content: "";
  border: solid 2px #49cbde;
  position: absolute;
  left: 0px;
  top: 0.5em;
  width: 0.42em;
  height: 0.42em;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  border-bottom: none;
  border-left: none;
}
.footer nav .nav_list_wrap .nav_list li a {
  color: #303030;
}
.footer nav .photobook_goods {
  width: 42.78%;
}
@media screen and (max-width: 820px) {
  .footer nav .photobook_goods {
    width: 65.94%;
  }
}
@media screen and (max-width: 767px) {
  .footer nav .photobook_goods {
    width: 100%;
    max-width: 100%;
  }
}
.footer nav .photobook_goods .nav_list_wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer .pay_otherlink_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .footer .pay_otherlink_wrap {
    display: block;
    margin-bottom: 20px;
  }
}
.footer .pay_otherlink_wrap .howToPay {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer .pay_otherlink_wrap .howToPay {
    margin-bottom: 20px;
  }
}
.footer .pay_otherlink_wrap .howToPay .tit {
  font-size: 15px;
  border-bottom: solid 1px #49cbde;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer .pay_otherlink_wrap .howToPay .tit {
    font-size: 14px;
    border: none;
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
.footer .pay_otherlink_wrap .howToPay .txt {
  font-size: 12px;
}
.footer .otherlink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer .otherlink ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer .otherlink ul li {
  padding: 0px 1em;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.footer .otherlink ul li::before {
  content: "｜";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.footer .otherlink ul li:last-child::after {
  content: "｜";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.footer .otherlink ul li a {
  color: #303030;
}
.footer .bg_white_wrap {
  background-color: #fff;
  padding: 25px 0px 45px;
}
@media screen and (max-width: 767px) {
  .footer .bg_white_wrap {
    padding: 30px 0px 100px;
  }
}
.footer .corp_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer .corp_area {
    display: block;
    margin-bottom: 10px;
  }
}
.footer .corp_area__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .footer .corp_area__txt {
    text-align: center;
    margin-bottom: 10px;
  }
}
.footer .corp_area__logo {
  width: 14.9%;
  margin-right: 13.07%;
}
@media screen and (max-width: 767px) {
  .footer .corp_area__logo {
    width: 100%;
    max-width: 155px;
    margin: 0px auto;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .footer .corp_area__link {
    margin-bottom: 10px;
  }
}
.footer .corp_area__sns {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer .corp_area__sns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.footer .corp_area__sns li {
  width: 1.92em;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .footer .corp_area__sns li {
    margin-left: 15px;
  }
}
.footer .corp_area__sns li:first-child {
  margin-left: 0px;
}
.footer .corp_area__sns li:nth-child(2) a{
  padding: 1px;
}
.footer small {
  display: block;
  font-family: "urbane-rounded", sans-serif;
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer small {
    text-align: center;
    font-size: 10px;
  }
}

/* 改行位置調整 */
@media screen and (max-width: 767px) {
  .pc, .pc_inline {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pctab, .pctab_inline {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 820px) {
  .tab {
    display: inherit;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    display: none;
  }
}

.tab_inline {
  display: none;
}
@media screen and (max-width: 820px) {
  .tab_inline {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .tab_inline {
    display: none;
  }
}

.tabsp {
  display: none;
}
@media screen and (max-width: 820px) {
  .tabsp {
    display: inherit;
  }
}

.tabsp_inline {
  display: none;
}
@media screen and (max-width: 820px) {
  .tabsp_inline {
    display: inline-block;
  }
}

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

.sp_inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_inline {
    display: inline-block;
  }
}