@charset "UTF-8";

/*
 + mixin , variableのimportはここで呼び出す
 +
 + ※mixinで使われる可能性があるので、variableが先になるように
 */
/*
 +	common variable
 */
@font-face {
  font-family: 'Fortunates December';
  font-style: normal;
  font-weight: normal;
  src: local("Fortunates December"), url("../fonts/Fortunates_December.woff") format("woff");
}

/*
 + 	カラーを格納する変数
 +
 + 用途(できるだけ伝わりやすい英語)-種類(英字1文字)で変数名をつけること
 + ex : primary(サイトイメージカラー)-s(セカンダリカラー)  lはライトカラー,dは暗いカラーのように
 */

/*
 +	共通で使うmixinはここにまとめる
 */
.util-txt, .about-timelineTxt, .app-itemTxt, .archives-cardDetail_excerpt, .entry-content {
  text-align: justify;
  text-justify: inter-ideograph;
}

/*
 +	core css
 */
/*
 +	core css
 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #444;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, Verdana, Meiryo, sans-serif !important;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
}

p a {
  color: #444;
  text-decoration: underline;
}

p a:hover {
  color: #444;
}

/*
 +	partsのimportはここで呼び出す
 */
.contact-wrap .wpcf7-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #eac3c3;
  border: none;
  border-radius: 5px;
  color: #794f4f;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: 46px;
  line-height: 46px;
  margin-top: 34px;
  outline: none;
  padding: 0;
  position: relative;
  text-align: center;
  width: 225px;
}

.contact-wrap .wpcf7-submit:after {
  border: solid 1px #eac3c3;
  border-radius: 5px;
  content: '';
  display: block;
  height: 46px;
  -webkit-transform: translate(4px, calc(-100% + 4px));
  transform: translate(4px, calc(-100% + 4px));
  width: 225px;
}

.contact-wrap .wpcf7-submit:hover {
  color: #794f4f;
}

@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
    box-shadow: 0 2.5em 0 0;
  }
}

@keyframes load7 {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
    box-shadow: 0 2.5em 0 0;
  }
}

.load-spinner, .load-spinner:before, .load-spinner:after {
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border-radius: 50%;
  height: 2.5em;
  width: 2.5em;
}

.load-wrap {
  background: #eac3c3;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: opacity .8s, visibility .8s;
  transition: opacity .8s, visibility .8s;
  z-index: 1000;
}

.is-loaded .load-wrap {
  opacity: 0;
  visibility: hidden;
}

.load-spinner {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  color: #ffffff;
  font-size: 10px;
  left: 50%;
  margin: 80px auto;
  margin: auto;
  position: relative;
  position: absolute;
  text-indent: -9999em;
  top: 50%;
  -webkit-transform: translate(-50%, -50%, 0);
  transform: translate(-50%, -50%, 0);
}

.load-spinner:before, .load-spinner:after {
  content: '';
  position: absolute;
  top: 0;
}

.load-spinner:before {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  left: -3.5em;
}

.load-spinner:after {
  left: 3.5em;
}

.header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-bottom: solid 1px #f0edea;
  border-top: solid 5px #eac3c3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  left: 0;
  padding: 0 40px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.header-button {
  background-color: transparent;
  border: 0;
  color: transparent;
  height: 37px;
  padding: 0;
  position: fixed;
  right: 14px;
  top: 18px;
  width: 37px;
}

.header-button:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header-button:focus {
  outline: none;
}

.header-button:before, .header-button:after {
  background-color: #000;
  content: '';
  display: block;
  height: 1px;
  left: 8px;
  position: absolute;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  width: 21px;
}

.header-button:before {
  -webkit-transform: translate(0, -5px);
  transform: translate(0, -5px);
}

.is-active .header-button:before {
  -webkit-transform: translate(0, 0) rotate(45deg);
  transform: translate(0, 0) rotate(45deg);
}

.header-button:after {
  -webkit-transform: translate(0, 5px);
  transform: translate(0, 5px);
}

.is-active .header-button:after {
  -webkit-transform: translate(0, 0) rotate(-45deg);
  transform: translate(0, 0) rotate(-45deg);
}

.header-buttonInline {
  background-color: #000;
  display: block;
  height: 1px;
  left: 8px;
  position: absolute;
  -webkit-transition: opacity .4s, -webkit-transform .4s;
  transition: opacity .4s, -webkit-transform .4s;
  transition: opacity .4s, transform .4s;
  transition: opacity .4s, transform .4s, -webkit-transform .4s;
  width: 21px;
}

.is-active .header-buttonInline {
  opacity: 0;
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
}

.header-ttl {
  margin: 6px auto 0;
  width: 224px;
}

.header-ttlLink {
  display: block;
}

.header-navList {
  list-style: none;
  padding: 0;
}

.header-navList > li a {
  color: #444;
  display: block;
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 14px;
  white-space: nowrap;
}

.header-navList > li.current a {
  color: #c7b17c;
}

.footer {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-top: solid 1px #f0edea;
  padding: 28px 20px 16px;
}

.footer-nav {
  margin-left: 35px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
}

.footer-nav-list > li {
  list-style: none;
}

.footer-nav-list > li + li {
  margin-left: 20px;
}

.footer-nav-list > li a {
  color: #666;
  font-size: 12px;
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-left: auto;
  margin-top: 0;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  padding: 0;
}

.footer-list > li {
  display: block;
}

.footer-list > li + li {
  margin-left: 30px;
}

.footer-list > li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  height: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
}

.footer-copyright {
  color: #666;
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 10px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding-top: 4px;
}

.util-container {
  overflow: hidden;
  padding: 100px 20px 0;
}

.util-inner {
  margin: 0 auto;
  max-width: 1000px;
}

.util-ttl {
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: .1em;
  margin: 0;
  text-align: center;
}

.util-ttl:after {
  background: #c7b17c;
  content: '';
  display: block;
  height: 1px;
  margin: 16px auto 0;
  width: 20px;
}

.util-subTtl {
  font-size: 30px;
  margin: 20px 0 0 0;
  text-align: center;
  white-space: nowrap;
}

.util-subTtl_img, .util-subTtl_fd {
  color: #e6baba;
  display: block;
  font-family: "Fortunates December", "Amiri", serif;
  letter-spacing: -.008em;
  margin: 0 auto;
}

.util-subTtl_txt {
  display: block;
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 14px;
  margin-top: 12px;
}

.util-figure {
  background-color: #f7f4f0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: solid #f7f4f0 8px;
  -webkit-box-shadow: 0 2px 3px #e5e5e5;
  box-shadow: 0 2px 3px #e5e5e5;
  margin: 30px 0 0 0;
  padding-top: 144%;
}

.about .util-figure {
  background-image: url(../img/about/img_hero01.jpg);
}

.youtube .util-figure {
  background-image: url(../img/youtube/img_hero01.jpg);
}

.instagram .util-figure {
  background-image: url(../img/instagram/img_hero01.jpg);
}

.trips .util-figure {
  background-image: url(../img/trips/img_hero01.jpg);
}

.works .util-figure {
  background-image: url(../img/works/img_hero01.jpg);
}

.util-figure > img {
  width: 100%;
}

.util-txt {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 36px;
}

.util-txt + .util-txt {
  margin-top: 1.7em;
}

/*
+	pageのimportはここで呼び出す
*/
.about .util-figure {
  background-position: left 45% center;
}

.about-timeline {
  background: #f8eeee;
  margin: 90px calc(-50vw + 50%) 0;
  padding: 60px 20px 120px;
}

.about-timeline .util-subTtl {
  margin: 0;
}

.about-timelineInner {
  background: #fff;
  margin: 38px auto 0;
  max-width: 1000px;
  padding: 50px 20px 70px 42px;
}

.about-timelineList {
  list-style: none;
  position: relative;
}

.about-timelineList > li {
  position: relative;
}

.about-timelineList > li + li {
  margin-top: 50px;
}

.about-timelineList > li:after {
  background: #c7b17c;
  border-radius: 100%;
  content: '';
  display: block;
  height: 8px;
  left: -25px;
  position: absolute;
  top: 15px;
  width: 8px;
}

.about-timelineYear_number {
  background: #c7b17c;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 22px;
  text-align: center;
  width: 162px;
}

.about-timelineTtl {
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  margin-top: 8px;
}

.about-timelineTxt {
  display: inline-block;
  font-size: 14px;
  margin: 4px 0 0 0;
  max-width: 370px;
}

.app {
  padding-bottom: 100px;
}

.app .util-figure {
  background-image: url(../img/app-books/img_hero01.jpg);
}

.app-utilLink {
  background: #eac3c3;
  border-radius: 5px;
  color: #794f4f;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: 46px;
  line-height: 46px;
  position: relative;
  text-align: center;
  width: 260px;
}

.app-utilLink.mod-pc {
  margin-top: 34px;
  width: 225px;
}

.app-utilLink.mod-sp {
  margin: 40px auto 0;
}

.app-utilLink:after {
  border: solid 1px #eac3c3;
  border-radius: 5px;
  content: '';
  display: block;
  height: 46px;
  left: 4px;
  position: absolute;
  top: 4px;
  width: 100%;
}

.app-utilLink:hover {
  color: #794f4f;
}

.app-list {
  background: #f7f4f0;
  border: solid 1px #e9e3da;
  list-style: none;
  margin-top: 74px;
  padding: 0;
}

.app-list > li + li {
  margin-top: 54px;
}

.app-itemTtl {
  color: #c7b17c;
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 18px;
  margin: 0;
}

.app-itemTxt {
  font-size: 14px;
  margin: 18px 0 0 0;
}

.app-dlList {
  list-style: none;
  margin-top: 40px;
  padding: 0;
}

.app-dlLink {
  display: block;
}

.app-itemFig {
  text-align: center;
}

.app-movie {
  margin-top: 80px;
  padding-top: 56.25%;
  position: relative;
}

.app-movie > iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.books {
  background: #f8eeee;
  margin: 0 calc(50% - 50vw);
  padding: 56px 20px 120px;
}

.books .util-figure {
  background-image: url(../img/app-books/img_hero02.jpg);
  border-color: #fff;
}

.books-inner {
  margin: 0 auto;
  max-width: 1000px;
}

.books-box {
  background: #fff;
  margin-top: 54px;
  padding: 28px 20px 72px;
}

.books-footerList {
  list-style: none;
  margin-top: 88px;
  padding: 0;
  padding-top: 60px;
  position: relative;
}

.books-footerList:before {
  background: -webkit-repeating-linear-gradient(left, #aaa, #aaa 4px, transparent 4px, transparent 6px);
  background: repeating-linear-gradient(90deg, #aaa, #aaa 4px, transparent 4px, transparent 6px);
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.books-footerTxt {
  font-size: 14px;
  margin-top: 54px;
  text-align: center;
}

.books-footerTxt_inline {
  color: #999;
  display: block;
  font-size: 10px;
}

.archive .pagination, .single .pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

.archive .pagination__item, .single .pagination__item {
  border-radius: 50%;
  font-size: 12px;
  height: 34px;
  width: 34px;
}

.archives {
  padding-bottom: 115px;
}

.archives-cardInner {
  height: 100%;
}

.archives-link {
  background: #f7f4f0;
  color: #444;
  display: block;
  height: 100%;
  padding: 12px 16px 28px;
}

.archives-link:hover {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  color: #444;
}

.archives-cardHeader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.archives-cardHeader .icon-new {
  color: #c73e3e;
  font-weight: bold;
  margin-right: .5em;
}

.archives-date {
  margin-right: auto;
}

.archives-cardFig {
  margin: 5px 0 0 0;
  overflow: hidden;
  padding-top: 67.5%;
  position: relative;
}

.archives-cardFig_inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  width: 100%;
}

.archives-link:hover .archives-cardFig_inner {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.archives-cardDetail {
  margin-top: 14px;
}

.archives-cardDetail_ttl {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}

.archives-cardDetail_excerpt {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 6px;
}

.post-wrap {
  margin-top: 40px;
}

.post-wrap .widget {
  background: #f7f4f0;
  color: #444;
  margin-bottom: 0;
}

.post-wrap .widget + .widget {
  margin-top: 26px;
}

.post-wrap .widget ul {
  margin-top: 6px;
  padding: 0;
}

.post-wrap .widget li {
  list-style: none;
  padding-left: 1em;
  position: relative;
}

.post-wrap .widget li + li {
  margin-top: .5em;
}

.post-wrap .widget li:before {
  border-right: solid 1px #444;
  border-top: solid 1px #444;
  content: '';
  display: block;
  height: 5px;
  left: 0;
  position: absolute;
  top: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 5px;
}

.post-wrap .widget li > a {
  color: #444;
  font-size: 12px;
}

.post-wrap .widget.widget_search {
  padding: 12px 14px 18px;
}

.post-wrap .widget.widget_search .widget-title {
  font-size: 12px;
  margin: 0;
}

.post-wrap .widget.widget_search .widget-title:after {
  content: ':';
}

.post-wrap .widget.widget_search .search-field {
  background: #f7f4f0;
  border: solid 2px #e4e1dd;
  font-size: 13px;
}

.post-wrap .widget.widget_search .search-submit {
  border-left: solid 2px #e4e1dd;
  color: #ccc;
  font-size: .8em;
  padding: .5em .8em;
}

.post-wrap .widget:not(.widget_search) {
  padding: 8px 12px 26px;
}

.post-wrap .widget:not(.widget_search) .widget-title {
  border-bottom: solid 2px #8b8986;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  padding-bottom: 4px;
}

.post-wrap .widget .tag-cloud-link {
  color: #333;
}

.single .util-container {
  padding-top: 60px;
}

.single .post-paging__item {
  color: #333;
  font-size: 12px;
}

.single .sns-bg--twitter {
  background-color: #fff;
  color: #2b97f0;
}

.single .sns-bg--twitter.-hover:hover {
  background-color: #2b97f0;
  color: #fff;
  opacity: 1;
}

.single .sns-bg--facebook {
  background-color: #fff;
  color: #3b5a9b;
}

.single .sns-bg--facebook.-hover:hover {
  background-color: #3b5a9b;
  color: #fff;
  opacity: 1;
}

.single .sns-bg--hatenabookmark {
  background-color: #fff;
  color: #007ad2;
}

.single .sns-bg--hatenabookmark.-hover:hover {
  background-color: #007ad2;
  color: #fff;
  opacity: 1;
}

.single .sns-bg--pocket {
  background-color: #fff;
  color: #ea4654;
}

.single .sns-bg--pocket.-hover:hover {
  background-color: #ea4654;
  color: #fff;
  opacity: 1;
}

.single .sns-bg--line {
  background-color: #fff;
  color: #2cbf13;
}

.single .sns-bg--line.-hover:hover {
  background-color: #2cbf13;
  color: #fff;
  opacity: 1;
}

.single .sns-bg--rss {
  background-color: #fff;
  color: #fb8501;
}

.single .sns-bg--rss.-hover:hover {
  background-color: #fb8501;
  color: #fff;
  opacity: 1;
}

.entry-content h1 {
  font-weight: bold;
}

.entry-content h2 {
  background: #eac3c3;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  padding: .5em 1em;
}

.entry-content h3 {
  border-left: solid 5px #eac3c3;
  font-size: 1.1em;
  font-weight: bold;
  padding-left: .5em;
}

.entry-content h4 {
  border-bottom: solid 2px #eac3c3;
  font-size: 1em;
  font-weight: bold;
  padding-bottom: .2em;
}

.entry-content p {
  font-size: 14px;
  line-height: 2;
}

/*added by Keita START*/
.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
  -moz-appearance: textfield !important;
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/*added by Keita END*/
.community {
  /* util
  --------------------------------------------------------------*/
}

.community .u-text-link {
  color: #794F4F;
}

.community .util-txt a {
  color: #794F4F;
}

.community .app-utilLink {
  background: #eac3c3;
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #794f4f;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: 46px;
  line-height: 46px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 260px;
}

.community .app-utilLink:after {
  border: solid 1px #eac3c3;
  content: '';
  display: block;
  height: 46px;
  left: 4px;
  position: absolute;
  top: 4px;
  width: 100%;
}

.community .app-utilLink:hover {
  color: #794f4f;
  opacity: 0.7;
}

.community .util-subTtl.-logo {
  font-size: 0;
  margin-top: 40px;
}

.community .util-subTtl_txt {
  letter-spacing: 0.1em;
}

.community-logo {
  display: inline-block;
  width: 240px;
}

.community-header-image {
  margin: 38px 0 0 0;
}

.community-header-content {
  margin-top: 60px;
  padding-bottom: 120px;
}

.community-header-content .util-txt {
  letter-spacing: 0.12em;
}

.community-header-content .util-txt:first-child {
  margin-top: 0;
}

.community .util-contentTtl {
  font-family: "Amiri", "Noto Serif JP", serif;
  margin: 0;
}

.community .util-contentTtl_sub {
  color: #c7b17c;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.community .util-contentTtl_txt {
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 13px;
}

.community .util-contentTtl_tag {
  background-color: #c7b17c;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  margin-right: 9px;
  padding: 6px 3px 2px 6px;
}

.util-num-serif {
  font-size: 120%;
  letter-spacing: 0.04em;
}

.util-num-serif.-s {
  font-size: 110%;
}

.numColor {
  display: inline-block;
  font-size: 105%;
  font-weight: bold;
  left: -10px;
  position: absolute;
  text-align: right;
  top: -1px;
  width: 30px;
}

.-basic .numColor {
  color: #e6baba;
}

.-plus .numColor {
  color: #c7b17c;
}

.-small .numColor {
  width: 25px;
}

.community-guide {
  background-color: #f7f4f0;
  margin: 0 calc(50% - 50vw);
  padding: 25px 40px 120px;
}

.community-guide .app-utilLink {
  font-size: 22px;
  height: 62px;
  line-height: 62px;
  margin-top: 80px;
  width: 276px;
}

.community-guide .app-utilLink::after {
  height: 62px;
}

.community-guide .util-subTtl_txt {
  margin-top: 3px;
}

.community-guide .util-txt {
  letter-spacing: 0.1em;
}

.community-guide-inner {
  margin: 0 auto;
  max-width: 1000px;
}

.community-guide-content {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; */
  margin-top: 55px;
  width: 100%;
}

.community-guide-columnItem {
  width: 490px;
  margin: 0 auto;
}

.community-guide-img {
  max-width: 490px;
}

.community-guide-content-body {
  margin-top: 12px;
}

.guideTtl {
  font-family: "Amiri", "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

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

.guideTtl_en {
  color: #794F4F;
  display: block;
  font-size: 24px;
}

.guideTtl_sub {
  display: block;
  font-size: 14px;
  margin-top: 2px;
}

.guide-txt {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.plan-box {
  background-color: #fff;
  margin-top: 30px;
  padding: 25px 30px;
}

.plan-box + .plan-box {
  margin-top: 20px;
}

.plan-box_ttl {
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  margin-top: 0;
}

.plan-box_ttl.-basic {
  color: #e6baba;
}

.plan-box_ttl.-plus {
  color: #c7b17c;
}

.plan-box_txt {
  font-size: 18px;
  margin-top: 0;
}

.plan-box_txt.-small {
  font-size: 14px;
}

.plan-box_txt.-serif {
  font-family: "Amiri", "Noto Serif JP", serif;
}

.community-detail {
  margin-top: 80px;
}

.community-detail .guideTtl_sub {
  margin-top: 8px;
}

.community-detail_body {
  margin-top: 36px;
}

.detail-box_head {
  font-family: "Amiri", "Noto Serif JP", serif;
  margin-top: 0;
  text-align: center;
}

.detail-box_head-name {
  display: block;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.detail-box_head-name.-basic {
  color: #e6baba;
}

.detail-box_head-name.-plus {
  color: #c7b17c;
}

.detail-box_head-price {
  display: inline-block;
  font-size: 18px;
  margin-top: 5px;
}

.detail-box_head-price.-small {
  font-size: 16px;
}

.detail-box_txt {
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 1.45;
  margin-top: 10px;
}

.detail-box_txt.-center {
  text-align: center;
}

.detail-box_body {
  margin-top: 30px;
}

.detail-box_base {
  max-width: 450px;
}

.detail-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-top: 10px;
}

.detail-lead_img {
  margin-top: 0;
  max-width: 450px;
}

.detail-lead_txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 31px;
  text-align: left;
}

.plan-detail {
  background-color: #fff;
  padding: 34px 40px 40px;
}

.plan-detail + .plan-detail {
  margin-top: 40px;
}

.plan-info {
  border: 2px solid;
  border-radius: 5px;
  padding: 26px 30px 30px;
}

.plan-info.-basic {
  border-color: #e6baba;
}

.plan-info.-plus {
  border-color: #c7b17c;
}

.plan-info.-small {
  padding: 20px 24px 16px;
  width: 450px;
}

.plan-info_list {
  list-style: none;
  padding-left: 0;
}

.plan-info_item + .plan-info_item {
  margin-top: 38px;
}

.-small .plan-info_item {
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding-left: 16px;
  position: relative;
}

.-small .plan-info_item + .plan-info_item {
  margin-top: 1px;
}

.plan-info_item dl {
  margin-top: 10px;
}

.plan-info_item dl + dl {
  margin-top: 20px;
}

.plan-info_item-heading {
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 20px;
  position: relative;
}

.plan-info_item-heading small {
  font-size: 73%;
}

.plan-info_item-txt {
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 6px;
}

.plan-info_item-sub {
  font-family: "Amiri", "Noto Serif JP", serif;
  font-weight: normal;
}

.plan-info_item-sub + .plan-info_item-txt {
  margin-left: 0;
  margin-top: 0;
}

.supported-icon {
  display: inline-block;
  height: 40px;
  position: relative;
  width: 40px;
}

.supported-icon.-basic:after {
  background-color: #e6baba;
  border-color: #e6baba;
}

.supported-icon.-active:after {
  background-color: #c7b17c;
  border-color: #c7b17c;
}

.supported-icon.-true:after {
  background-color: transparent;
  border-radius: 50%;
  border-style: solid;
  border-width: 3px;
  content: '';
  display: inline-block;
  height: 26px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 26px;
}

.supported-icon.-false:after {
  border-color: transparent;
  border-radius: 1.5px;
  content: '';
  display: inline-block;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 26px;
}

.scroll-hint-icon-wrap {
  display: none;
}

.to-registration {
  padding-bottom: 70px;
  padding-top: 40px;
}

.to-registration .util-subTtl {
  font-size: 44px;
  margin-top: 0;
  padding-left: 10px;
}

.to-registration .util-subTtl_img {
  background: url(../img/community/text_pc.png) center center/cover;
  height: 0;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 53px;
  width: 482px;
}

.to-registration .util-subTtl_txt {
  font-size: 14px;
  margin-top: 6px;
}

.to-registration-body {
  margin-top: 40px;
}

.to-registration .app-utilLink {
  font-size: 22px;
  height: 62px;
  line-height: 62px;
  width: 276px;
}

.to-registration .app-utilLink::after {
  height: 62px;
}

.registration-signup {
  padding-bottom: 120px;
}

.form-block {
  background-color: #f7f4f0;
  margin-top: 60px;
  max-width: 996px;
}

.form-block-inner {
  padding: 60px 98px;
}

.registration-form .app-utilLink {
  line-height: 1;
  margin-top: 56px;
  width: 158px;
}

.registration-form-list {
  padding-left: 0;
}

.registration-form-item {
  list-style: none;
}

.registration-form-item + .registration-form-item {
  margin-top: 26px;
}

.registration-form-label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.registration-form-required {
  font-size: 14px;
}

.registration-form-input {
  border: none;
  color: #444;
  height: 30px;
  margin-top: 10px;
  padding: 0 0.5rem;
  width: 100%;
}

.registration-form-input::-webkit-input-placeholder {
  font-size: 14px;
}

.registration-form-input::-moz-placeholder {
  font-size: 14px;
}

.registration-form-input:-ms-input-placeholder {
  font-size: 14px;
}

.registration-form-input::-ms-input-placeholder {
  font-size: 14px;
}

.registration-form-input::placeholder {
  font-size: 14px;
}

.registration-complete {
  padding-bottom: 80px;
}

.registration-complete .util-subTtl_txt {
  font-size: 19px;
}

.complete-message {
  margin-top: 33px;
}

.complete-message p {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.registration {
  margin: 0 auto;
  max-width: 800px;
  padding-bottom: 124px;
}

.registration a {
  color: #794F4F;
  text-decoration: underline;
}

.registration a:hover {
  color: #794F4F;
}

.registration .app-utilLink {
  margin-top: 20px;
  text-decoration: none;
  width: 266px;
}

.registration-lead {
  margin-top: 40px;
  text-align: center;
}

.registration-lead-text {
  font-size: 14px;
}

.terms-section {
  margin-top: 40px;
}

.terms-section:first-of-type {
  margin-top: 60px;
}

.terms-section h2 {
  color: #c7b17c;
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin: 40px auto 3px;
}

.terms-section h3 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin: 7px auto 2px;
}

.terms-section p {
  color: #444;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin: 0;
}

.terms-section p + p {
  margin-top: 26px;
}

.terms-section p.has-x-small-font-size {
  font-size: 12px;
  margin-top: 0;
}

.terms-section p + h3 {
  margin-top: 25px;
}

.terms-section p.-mt {
  margin-top: 17px;
}

.terms-section .terms-text.-center {
  text-align: center;
}

.terms-btn-wrap {
  margin-top: 80px;
}

.terms-of-use {
  margin: 0 auto;
  max-width: 1000px;
}

.terms-of-use .util-ttl {
  font-size: 18px;
}

.terms-of-use p {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.terms-of-use p a {
  color: #794F4F;
}

.terms-of-use-content {
  margin-top: 40px;
  padding-bottom: 160px;
}

.contact {
  padding-bottom: 100px;
}

.contact-txt {
  font-size: 14px;
  margin-top: 35px;
}

.contact-wrap {
  background: #f7f4f0;
  margin-top: 52px;
  padding: 34px 20px;
}

.contact-wrap .wpcf7-not-valid-tip {
  font-size: 10px;
  margin-top: .1em;
}

.contact-wrap .wpcf7-submit {
  margin: 60px auto 0;
}

.contact-wrap div.wpcf7-validation-errors,
.contact-wrap div.wpcf7-acceptance-missing,
.contact-wrap div.wpcf7-mail-sent-ng,
.contact-wrap div.wpcf7-aborted {
  border: none;
  color: #f00;
  font-size: 14px;
  margin-top: 40px;
  text-align: center;
}

.contact-wrap div.wpcf7-mail-sent-ok {
  border: none;
  color: #398f14;
  font-size: 14px;
  margin-top: 40px;
  text-align: center;
}

.contact-wrap .your-subject {
  display: block;
  position: relative;
}

.contact-wrap .your-subject:after {
  border-bottom: solid 1px #666;
  border-right: solid 1px #666;
  content: '';
  display: block;
  height: 6px;
  pointer-events: none;
  position: absolute;
  right: 1em;
  top: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
}

.contact-wrap textarea,
.contact-wrap select,
.contact-wrap input[type="text"],
.contact-wrap input[type="email"],
.contact-wrap input[type="tel"],
.contact-wrap input[type="email"],
.contact-wrap input[type="url"] {
  border: 0;
  font-size: 14px;
  width: 100%;
}

.contact-wrap textarea {
  resize: vertical;
}

.contact-wrap dl, .contact-wrap dt, .contact-wrap dd {
  margin: 0;
}

.contact-wrap dt {
  font-size: 14px;
  font-weight: normal;
}

.contact-wrap dd + dt {
  margin-top: 24px;
}

.home {
  background: #eac3c3;
}

.home-wrap {
  background: url(../img/home/sp/img_hero01.jpg) center top/cover no-repeat;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 70px;
  z-index: -1;
}

.home-player {
  height: 100%;
  width: 100%;
}

.home-cover {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.home-info {
  background: rgba(255, 255, 255, 0.85);
  bottom: 0;
  padding: 18px 20px;
  position: fixed;
  right: 0;
}

.home-infoTtl {
  color: #c7b17c;
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 16px;
  margin: 0;
}

.home-infoList {
  font-size: 12px;
  list-style: none;
  margin: 1em 0 0 0;
  padding: 0;
}

.home-infoList > li {
  line-height: 1.6;
}

.home-infoList > li + li {
  margin-top: .8em;
}

.home-infoLink {
  color: #e48f8f;
  display: inline-block;
  text-decoration: underline;
}

.home-infoLink:hover {
  color: #e48f8f;
}

.instagram {
  padding-bottom: 100px;
}

.instagram-wrap {
  margin: 46px auto 0;
  max-width: 920px;
}

.trips {
  padding-bottom: 65px;
}

.trips .util-ttl {
  color: #fff;
}

.trips-container {
  margin-top: 60px;
  position: relative;
}

.trips-wrapper {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "title" "playlist" "text";
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
  left: 0;
  position: absolute;
  top: 0;
}

.trips-wrapper.is-current {
  position: relative;
  z-index: 1;
}

.trips-ttlBox {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
}

.trips-ttl {
  display: inline-block;
  margin: 0;
  opacity: 0;
  position: relative;
  -webkit-transform: translate(0, 100%) scale(0.6);
  transform: translate(0, 100%) scale(0.6);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, transform .8s;
  transition: opacity .8s, transform .8s, -webkit-transform .8s;
}

.is-current .trips-ttl {
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.is-current.is-animate .trips-ttl {
  opacity: 0;
  -webkit-transform: translate(0, -100%) scale(0.6);
  transform: translate(0, -100%) scale(0.6);
}

.trips-ttlInline_city {
  color: #fff;
  display: inline-block;
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: .15em;
  line-height: .8;
  position: relative;
  text-shadow: 3px 2px 0 #000;
  z-index: 1;
}

.trips-ttlInline_country {
  bottom: -18px;
  font-family: "Fortunates December", "Amiri", serif;
  font-size: 20px;
  position: absolute;
  right: 6%;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
}

.trips-ttlInline_country:before {
  background: url(../img/trips/bg_item01.png) center center/contain no-repeat;
  content: '';
  display: block;
  left: 50%;
  padding-top: 44%;
  position: absolute;
  top: calc(50% + .4em);
  -webkit-transform: rotate(6deg) translate(-50%, -50%);
  transform: rotate(6deg) translate(-50%, -50%);
  width: 145.3%;
  z-index: -1;
}

.trips-txtBox {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: text;
  margin-top: 40px;
}

.trips-txt {
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  opacity: 0;
  padding: 16px 18px;
  -webkit-transition: opacity .8s;
  transition: opacity .8s;
}

.is-current .trips-txt {
  opacity: 1;
}

.is-current.is-animate .trips-txt {
  opacity: 0;
}

.trips-playlistBox {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: playlist;
}

.trips-playlistInner {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.trips-playlistInner iframe {
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: opacity .8s, -webkit-transform .4s;
  transition: opacity .8s, -webkit-transform .4s;
  transition: opacity .8s, transform .4s;
  transition: opacity .8s, transform .4s, -webkit-transform .4s;
  width: 100%;
}

.is-current .trips-playlistInner iframe {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.is-current.is-animate .trips-playlistInner iframe {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.trips-bgslider {
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}

.trips-bgslider > li {
  background-position: center center;
  background-size: cover;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity .8s;
  transition: opacity .8s;
  width: 100%;
}

.trips-bgslider > li.is-current {
  opacity: 1;
}

.trips-bgslider > li.is-animate {
  opacity: 1;
}

.trips-pagination {
  margin-top: 24px;
  text-align: center;
}

.trips-dot {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 2px;
  opacity: .4;
  width: 8px;
}

.trips-dot.is-current {
  opacity: 1;
}

.works {
  padding-bottom: 100px;
}

.works-list {
  background: #f7f4f0;
  list-style: none;
  margin-top: 62px;
  padding: 56px 24px 92px;
  text-align: center;
}

.works-list > dt {
  color: #c7b17c;
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 18px;
  margin: 0;
}

.works-list > dd {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.works-list > dd + dt {
  margin-top: 26px;
}

.youtube {
  padding-bottom: 112px;
}

.youtube-list {
  list-style: none;
  margin: 55px 0 0 0;
  padding: 0;
}

.youtube-list > li + li {
  margin-top: 52px;
}

.youtube-itemTtl {
  font-family: "Amiri", "Noto Serif JP", serif;
  font-size: 20px;
  margin: 0;
}

.youtube-itemTtl_inline {
  color: #c7b17c;
  display: block;
  font-size: 18px;
}

.youtube-itemTxt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  font-size: 14px;
}

.youtube-playlistInner {
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.youtube-playlistInner iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/*
 +	print対策用
 */

@media screen and (max-width: 767px) {
  .sp-hidden, .app-utilLink.mod-pc, .app-dlList.mod-pc {
    display: none;
  }
  .footer-nav {
    margin-left: 0;
    margin-top: 20px;
  }
  .footer-nav-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-copyright {
    display: block;
    margin-top: 10px;
    padding-top: 0;
    text-align: center;
  }
  .util-txt {
    padding: 0 10px;
  }
  .about-subTtl_name {
    width: 230px;
  }
  .about-timelineBox {
    margin-top: 30px;
  }
  .app-subTtl_img {
    width: 250px;
  }
  .app-list > li {
    padding: 24px 20px;
  }
  .app-list > li + li {
    border-top: solid 1px #e9e3da;
  }
  .app-dlList > li {
    text-align: center;
  }
  .app-dlList > li + li {
    margin-top: 20px;
  }
  .books .util-figure {
    background-position: left 28% center;
  }
  .books-footerList > li {
    text-align: center;
  }
  .books-footerList > li + li {
    margin-top: 40px;
  }
  .archives-card + .archives-card {
    margin-top: 30px;
  }
  .community-logo {
    width: 220px;
  }
  .community-header-image {
    margin: 38px calc(50% - 50vw) 0;
    text-align: center;
  }
  .community-header-content {
    margin-top: 40px;
    padding-bottom: 80px;
  }
  .community-header-content .util-txt {
    padding: 0;
  }
  .community-header-content .util-txt + .util-txt {
    margin-top: 1.6em;
  }
  .community .util-contentTtl_txt {
    line-height: 1.5;
    margin-top: 9px;
  }
  .community .util-contentTtl_tag {
    margin-bottom: 10px;
  }
  .community-header .util-subTtl_txt {
    margin-top: 20px;
  }
  .community-guide {
    padding: 34px 20px 80px;
  }
  .community-guide .app-utilLink {
    font-size: 18px;
    margin-top: 58px;
  }
  .community-guide .util-subTtl {
    font-size: 52px;
  }
  .community-guide .util-subTtl_txt {
    margin-top: 11px;
  }
  .community-guide .util-subTtl_inline {
    display: block;
    margin-top: -10px;
  }
  .community-guide-content {
    display: block;
  }
  .community-guide-columnItem {
    margin-top: 35px;
    width: 100%;
  }
  .community-guide-img {
    margin: 0 auto;
    text-align: center;
  }
  .community-guide-img img {
    margin-left: -20px;
    margin-right: -20px;
    max-width: 112%;
  }
  .community-guide-content-body {
    margin-top: 16px;
  }
  .community-guide-content-body .util-txt {
    padding: 0;
  }
  .guideTtl {
    text-align: center;
  }
  .guide-txt {
    text-align: center;
  }
  .plan-box {
    padding: 14px 19px 21px;
  }
  .community-detail {
    margin-top: 60px;
  }
  .detail-box_txt {
    margin-top: 8px;
  }
  .detail-box_body {
    margin-top: 32px;
  }
  .detail-lead {
    display: block;
    margin-bottom: 30px;
    padding-top: 0;
  }
  .detail-lead_img {
    margin-top: 31px;
  }
  .plan-detail {
    padding: 34px 20px 20px;
  }
  .plan-info {
    padding: 16px 19px;
  }
  .plan-info.-small {
    padding: 15px 12px 16px 19px;
    width: 100%;
  }
  .-small .plan-info_item {
    font-size: 14px;
  }
  .-small .plan-info_item + .plan-info_item {
    margin-top: 5px;
  }
  .plan-info_item-txt {
    line-height: 1.45;
  }
  .scroll-hint-icon-wrap {
    background: url(../img/community/icon-swipe.svg) 0 0/cover;
    bottom: 20px;
    display: block;
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 60px;
    position: absolute;
    right: 4px;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    width: 55px;
  }
  .scroll-hint-icon-wrap.is-active {
    opacity: 1;
  }
  .to-registration {
    padding-bottom: 60px;
    padding-top: 35px;
  }
  .to-registration .util-subTtl {
    padding-left: 4px;
  }
  .to-registration .util-subTtl_img {
    background: url(../img/community/text_sp.png) center center/cover;
    padding-top: 92px;
    width: 283px;
  }
  .to-registration .util-subTtl_txt {
    margin-top: 16px;
  }
  .to-registration-body {
    margin-top: 35px;
  }
  .to-registration .app-utilLink {
    font-size: 18px;
  }
  .form-block {
    margin-top: 40px;
  }
  .form-block-inner {
    padding: 40px 20px 80px;
  }
  .registration-form .app-utilLink {
    margin-top: 60px;
    width: 165px;
  }
  .registration-form-item + .registration-form-item {
    margin-top: 30px;
  }
  .registration-form-input {
    padding: 6px;
  }
  .registration-complete .util-subTtl_inline {
    display: block;
  }
  .registration-complete .util-subTtl {
    margin-top: 45px;
  }
  .registration-complete .complete-subTtl_img {
    font-size: 50px;
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .registration-complete .util-subTtl_txt {
    letter-spacing: 0.2em;
    margin-top: 22px;
  }
  .complete-message p {
    text-align: left;
  }
  .complete-message br {
    display: none;
  }
  .registration .app-utilLink {
    height: 56px;
    line-height: 56px;
    width: 100%;
  }
  .registration .app-utilLink::after {
    height: 56px;
  }
  .terms-btn-wrap {
    margin-top: 60px;
  }
  .terms-of-use-content {
    padding-bottom: 125px;
  }
  .contact-txt {
    padding: 0 20px;
  }
  .contact-txt > br {
    display: none;
  }
  .home-movie {
    display: none;
  }
  .home-info {
    left: 0;
  }
  .works .util-figure {
    background-position: right center;
  }
  .works-list > dd + dd {
    margin-top: .6em;
  }
  .youtube-subTtl_img {
    width: 260px;
  }
  .youtube-subTtl_txt {
    margin-top: 4px;
  }
  .youtube-itemBox {
    margin-top: 36px;
  }
  .youtube-itemTtl_inline {
    margin-bottom: .4em;
  }
}

@media screen and (min-width: 768px) {
  .sp-visible, .app-utilLink.mod-sp, .app-dlList.mod-sp {
    display: none;
  }
  a {
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  a:hover {
    opacity: 0.7;
  }
  .header {
    height: 85px;
  }
  .footer {
    height: 80px;
    padding: 0 40px;
  }
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer-list > li + li {
    margin-left: 20px;
  }
  .footer-list > li a {
    height: 25px;
    width: 25px;
  }
  .util-container {
    min-height: calc(100vh - 80px);
    padding: 160px 40px 0;
  }
  .util-ttl {
    font-size: 22px;
  }
  .util-ttl:after {
    margin: 12px auto 0;
    width: 25px;
  }
  .util-subTtl {
    font-size: 52px;
    margin: 44px 0 0 0;
  }
  .util-subTtl_inline {
    display: inline-block;
    margin-left: .5em;
  }
  .util-subTtl_txt {
    font-size: 16px;
  }
  .util-figure {
    margin: 36px 0 0 0;
    padding-top: 65.6%;
  }
  .about-timeline {
    padding: 60px 40px 120px;
  }
  .about-timelineInner {
    padding: 80px 20px;
  }
  .about-timelineList {
    padding: 36px 0 32px;
  }
  .about-timelineList:after {
    background: #c7b17c;
    bottom: 0;
    content: '';
    display: block;
    left: 50%;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 1px;
  }
  .about-timelineList > li:after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .about-timelineList > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .about-timelineList > li:nth-child(odd) .about-timelineYear {
    text-align: right;
  }
  .about-timelineList > li:nth-child(even) .about-timelineYear {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .about-timelineList > li:nth-child(even) .about-timelineBox {
    text-align: right;
  }
  .about-timelineYear {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .about-timelineYear_inline {
    padding: 0 25px;
  }
  .about-timelineBox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .about-timelineBox_inner {
    padding: 0 25px;
  }
  .app-list {
    padding: 32px 40px;
  }
  .app-list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .app-list > li:nth-child(odd) .app-itemFig {
    margin: 0 0 0 54px;
  }
  .app-list > li:nth-child(even) .app-itemFig {
    margin: 0 54px 0 0;
  }
  .app-list > li:nth-child(even) .app-itemDetail {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .app-itemDetail {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 410px;
    flex: 0 1 410px;
    margin-top: 24px;
  }
  .app-dlList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
  .app-dlList > li + li {
    margin-left: 20px;
  }
  .app-itemFig {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 290px;
    flex: 0 0 290px;
    margin: 0 0 0 54px;
  }
  .books {
    padding: 80px 40px 120px;
  }
  .books-box {
    padding: 50px 40px 75px;
  }
  .books-boxInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .books-boxInner .app-itemDetail {
    margin-top: 5px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .books-boxInner .app-itemFig {
    margin: 0 54px 0 0;
  }
  .books-footerList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
  }
  .books-footerList > li + li {
    margin-left: 40px;
  }
  .books-footerList:before {
    left: -30px;
    right: -30px;
  }
  .books-footerTxt {
    margin-top: 36px;
  }
  .books-footerTxt br {
    display: none;
  }
  .archive .pagination, .single .pagination {
    margin-top: 48px;
  }
  .archives-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .archives-card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .archives-cardInner {
    padding: 20px 8px;
  }
  .single .util-container {
    padding-top: 100px;
  }
  .single .post-paging__item {
    font-size: 14px;
  }
  .entry-content h2 {
    font-size: 1.4em;
  }
  .entry-content h3 {
    font-size: 1.2em;
  }
  .entry-content h4 {
    font-size: 1.1em;
  }
  .-reverse .community-guide-img {
    margin-left: 20px;
    margin-right: 0;
  }
  .contact {
    padding-bottom: 135px;
  }
  .contact-txt {
    text-align: center;
  }
  .contact-wrap {
    padding: 60px 100px;
  }
  .home-wrap {
    top: 85px;
  }
  .home-movie {
    height: 56.25vw;
    left: 50%;
    position: absolute;
    position: relative;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100vw;
  }
  .home-movie.is-resize {
    height: calc(100vh - 70px);
    width: calc(177.77777vh - 101.11111px);
  }
  .home-info {
    padding: 24px;
  }
  .home-infoList {
    font-size: 14px;
  }
  .instagram {
    padding-bottom: 110px;
  }
  .trips {
    padding-bottom: 112px;
  }
  .trips-container {
    margin-top: 102px;
  }
  .trips-ttlInline_country {
    font-size: 24px;
    right: -10%;
  }
  .works {
    padding-bottom: 125px;
  }
  .works-list {
    padding: 56px 40px 98px;
  }
  .works-list > dd br {
    display: none;
  }
  .youtube {
    padding-bottom: 100px;
  }
  .youtube-list > li + li {
    margin-top: 60px;
  }
  .youtube-list > li {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .youtube-list > li:nth-child(odd) .youtube-itemBox {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-left: 20px;
  }
  .youtube-list > li:nth-child(odd) .youtube-itemBox_inner {
    padding-left: 20px;
  }
  .youtube-list > li:nth-child(odd) .youtube-playlistBox {
    padding-right: 20px;
  }
  .youtube-list > li:nth-child(even) .youtube-itemBox_inner {
    padding-right: 20px;
  }
  .youtube-list > li:nth-child(even) .youtube-playlist {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .youtube-list > li:nth-child(even) .youtube-playlistBox {
    padding-left: 20px;
  }
  .youtube-itemBox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .youtube-playlist {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

@media screen and (min-width: 1040px) {
  .header-button {
    display: none;
  }
  .header-ttl {
    margin: 12px auto 0 0;
    width: 300px;
  }
  .header-nav {
    margin-left: 20px;
  }
  .header-navList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-navList > li + li {
    margin-left: 20px;
  }
  .app-list {
    padding: 32px 100px;
  }
  .books-box {
    padding: 50px 100px 75px;
  }
  .archive.has-sidebar .content__wrap, .single.has-sidebar .content__wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 280px);
    flex: 0 0 calc(100% - 280px);
    max-width: calc(100% - 280px);
    padding-bottom: 100px;
  }
  .archive.has-sidebar .sidebar, .single.has-sidebar .sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 235px;
    flex: 0 0 235px;
    max-width: 235px;
  }
  .archives-wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-top: -20px;
    max-width: calc(100% - 280px);
  }
  .post-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .trips-wrapper {
    grid-template-areas: "title playlist" "text playlist";
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .trips-ttlInline_city {
    font-size: 50px;
  }
  .trips-txtBox {
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    margin-top: 54px;
  }
  .trips-txt {
    margin: 54px 54px 0 0;
  }
  .trips-playlist {
    margin: 0 calc(100% - 50vw + 20px) 0 20px;
  }
  .trips-ttlBox {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .trips-txtBox {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .trips-playlistBox {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
  }
}

@media screen and (min-width: 768px) and (max-width: 1039px) {
  .header-button {
    top: 26px;
  }
}

@media screen and (max-width: 1039px) {
  .header-nav {
    background-color: #f7f4f0;
    bottom: 0;
    left: 0;
    opacity: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 70px;
    -webkit-transition: visibility .4s, opacity .4s;
    transition: visibility .4s, opacity .4s;
    visibility: hidden;
  }
  .is-active .header-nav {
    opacity: 1;
    visibility: visible;
  }
  .header-navList {
    height: 100%;
    overflow: auto;
    padding: 34px 20px;
  }
  .header-navList > li + li {
    margin-top: 18px;
  }
  .header-navList > li a {
    padding: .5em;
    text-align: center;
  }
  .plan-box_txt .-spBlock {
    display: block;
    font-size: 12px;
    margin-top: -5px;
  }
  .detail-box_base {
    margin: 0 auto;
  }
  .detail-lead {
    display: block;
  }
  .detail-lead_img {
    margin: 30px auto 0;
  }
  .trips-ttlBox {
    text-align: center;
  }
  .trips-ttl {
    text-align: center;
  }
  .trips-playlistBox {
    margin-top: 60px;
  }
}

@media screen and (max-width: 1039px) and (min-width: 768px) and (max-width: 1039px) {
  .header-nav {
    top: 85px;
  }
}

@media screen and (max-width: 375px) {
  .registration-complete .complete-subTtl_img {
    font-size: 42px;
  }
  .registration-complete .util-subTtl_txt {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .home-movie.is-resize {
    height: calc(100vh - 85px);
    width: calc(177.77777vh - 122.77778px);
  }
}

@media screen and (max-width: 374px) {
  .trips-ttlInline_city {
    font-size: 11.8vw;
  }
}

@media screen and (min-width: 1040px) and (min-width: 1240px) {
  .trips-playlist {
    margin: 0 -100px 0 20px;
  }
}

@media print {
  html {
    zoom: 0.8;
  }
}
