@charset "UTF-8";
.c-link__under-link {
  position: relative;
}
.c-link__under-link.__event {
  color: #FF8C62;
}
.c-link__under-link.__event > span::after {
  background: no-repeat center/contain url(../img/arrow-top-event.svg);
}
.c-link__under-link.__event:hover > span::after {
  right: -2.5em;
  -webkit-transition: right 0.4s;
  -o-transition: right 0.4s;
  transition: right 0.4s;
}
@media only screen and (max-width: 911px) {
  .c-link__under-link.__event:hover > span::after {
    right: -2em;
  }
}
.c-link__under-link.__news {
  color: #5BD800;
}
.c-link__under-link.__news > span::after {
  background: no-repeat center/contain url(../img/arrow-top-news.svg);
}
.c-link__under-link.__news:hover > span::after {
  right: -2.5em;
  -webkit-transition: right 0.4s;
  -o-transition: right 0.4s;
  transition: right 0.4s;
}
@media only screen and (max-width: 911px) {
  .c-link__under-link.__news:hover > span::after {
    right: -2em;
  }
}
.c-link__under-link.__report {
  color: #467DE5;
}
.c-link__under-link.__report > span::after {
  background: no-repeat center/contain url(../img/arrow-top-report.svg);
}
.c-link__under-link.__report:hover > span::after {
  right: -2.5em;
  -webkit-transition: right 0.4s;
  -o-transition: right 0.4s;
  transition: right 0.4s;
}
@media only screen and (max-width: 911px) {
  .c-link__under-link.__report:hover > span::after {
    right: -2em;
  }
}
.c-link__under-link > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  padding-left: 1em;
}
.c-link__under-link > span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1em;
  right: -1.5em;
  height: 1em;
  -webkit-transition: right 0.4s;
  -o-transition: right 0.4s;
  transition: right 0.4s;
}

.c-link__arrow {
  position: relative;
  display: block;
  padding-left: 1.5em;
}
.c-link__arrow::before {
  content: "➡︎";
  position: absolute;
  display: block;
  top: 50%;
  left: -0.8em;
  transform: translateY(-50%);
  padding-left: 1em;
}

.c-link__arrow-inline {
  position: relative;
  display: inline-block;
  padding-left: 1.5em;
  color: #304E60;
}
.c-link__arrow-inline::before {
  content: "➡︎";
  position: absolute;
  display: block;
  top: 50%;
  left: -0.8em;
  transform: translateY(-50%);
  padding-left: 1em;
}

.c-list__01 {
  line-height: 1.5;
  list-style-type: disc;
  list-style-position: inside;
}
.c-list__01 > li > span {
  display: block;
  padding-left: 1em;
}

.c-ul__01a {
  color: #002B5D;
  font-size: 1rem;
  font-weight: 300;
  font-family: sans-serif;
  list-style: none;
  padding-left: 1em;
  margin-left: 1em;
  margin-bottom: 2em;
}
.c-ul__01a li {
  position: relative;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.c-ul__01a li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: -1em;
  width: 0.3em;
  height: 0.3em;
  border-radius: 50%;
  background-color: #002B5D;
}

.c-ul__02a {
  color: #002B5D;
  font-size: 0.8rem;
  font-weight: 300;
  font-family: sans-serif;
  letter-spacing: 2px;
  list-style: none;
  margin-left: 1em;
  margin-bottom: 2em;
}
.c-ul__02a li {
  margin-bottom: 0.5em;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 700px;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: 33.3333333333%;
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#area01:checked ~ #area01_content,
#area02:checked ~ #area02_content,
#area03:checked ~ #area03_content,
#area04:checked ~ #area04_content,
#area05:checked ~ #area05_content,
#area06:checked ~ #area06_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}

.tab-wrapper {
  width: 100%;
  margin: 30px auto;
}

.tab {
  display: flex;
  flex-wrap: wrap;
}
.tab li a {
  display: block;
  color: #B4C5D1;
  margin: 0 2px;
  width: 12rem;
  padding: 10px 20px;
  background-color: #fff;
}
.tab li.active a {
  color: #fff;
  font-size: 1rem;
  background-color: #B4C5D1;
}

.area {
  display: none;
  opacity: 0;
  padding: 50px 20px;
  background-color: #F2F1ED;
}
.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
.area h2 {
  font-size: 1.3rem;
  margin: 0 0 20px 10px;
}
.area li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5rem;
}

.tab-label {
  position: relative;
  color: #b4c5d1;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  letter-spacing: 2px;
  width: 12rem;
  padding: 0.5em 1em;
  border-radius: 12px 12px 0 0;
  background-color: #fff;
  order: -1;
  z-index: 1;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* アクティブなタブ */
.tab-switch:checked + .tab-label {
  color: #fff;
  background-color: #B4C5D1;
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  padding: 2rem;
  border-top: 4px solid #fff;
  overflow: auto;
  transition: 0.5s opacity;
  opacity: 1;
}

/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

/*==================================================
アコーディオンのためのcss
===================================*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}
.accordion-area li {
  margin-bottom: 2rem;
}
.accordion-area li section {
  /*アコーディオンで現れるエリア*/
}
.accordion-area li section .accordion-box {
  display: none; /*はじめは非表示*/
  padding: 2em 1em;
}
.accordion-area li section .accordion-title {
  color: #304E60;
  text-align: center;
  padding: 0.7em;
  border-radius: 16px;
  border: 1px solid #304E60;
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
}
.accordion-area li section .accordion-title::before, .accordion-area li section .accordion-title::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #304E60;
}
.accordion-area li section .accordion-title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
  transition: 0.8s;
}
.accordion-area li section .accordion-title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
  transition: 0.8s;
}
.accordion-area li section .accordion-title.close::before {
  transition: 0.8s;
}
.accordion-area li section .accordion-title.close::after {
  display: none;
  transition: 0.8s;
}
.accordion-area li section .accordion-title.close {
  color: #fff;
  background-color: #304E60;
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
}
.accordion-area li section .accordion-title.close::before, .accordion-area li section .accordion-title.close::after {
  background-color: #fff;
}
.accordion-area li section .accordion-title.close::before {
  transition: 0.8s;
}
.accordion-area li section .accordion-title.close::after {
  transition: 0.8s;
}
.accordion-area li section .accordion-title.close.close::before {
  transition: 0.8s;
}
.accordion-area li section .accordion-title.close.close::after {
  transition: 0.8s;
}

/*アコーディオンタイトル*/
.accordion-title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}

.c-card-01 {
  margin: 0;
}
.c-card-01 .__head {
  flex-wrap: wrap;
  height: auto;
  min-height: 8rem;
}
@media only screen and (max-width: 911px) {
  .c-card-01 .__head {
    min-height: auto;
    border-bottom: 2rem;
  }
}
.c-card-01 .__head p:nth-of-type(1) {
  color: #304E60;
  font-size: 1rem;
  font-weight: 500;
  font-family: sans-serif;
  width: 100%;
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 911px) {
  .c-card-01 .__head p:nth-of-type(1) {
    font-size: 0.7rem;
  }
}
.c-card-01 .__head p:nth-of-type(2) {
  color: #304E60;
  font-size: 1.65rem;
  font-weight: 600;
  font-family: sans-serif;
  width: 100%;
  letter-spacing: 2px;
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 911px) {
  .c-card-01 .__head p:nth-of-type(2) {
    font-size: 1.3rem;
    margin-bottom: 0.2em;
  }
}
.c-card-01 .__head p:nth-of-type(3) {
  color: #304E60;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: sans-serif;
  width: 100%;
  letter-spacing: 1px;
}
@media only screen and (max-width: 911px) {
  .c-card-01 .__head p:nth-of-type(3) {
    font-size: 0.6rem;
    margin-bottom: 1em;
  }
}
.c-card-01 hr {
  border-top: 3px solid #304E60;
}
@media only screen and (max-width: 911px) {
  .c-card-01 hr {
    border-top: 1px solid #304E60;
  }
}
.c-card-01 .__foot {
  height: auto;
  padding: 2rem 0 1rem;
}
@media only screen and (max-width: 911px) {
  .c-card-01 .__foot {
    padding: 1rem 0 1rem;
  }
}
.c-card-01 .__foot p:nth-of-type(1) {
  position: relative;
  color: #304E60;
  font-size: 1.9rem;
  font-weight: 600;
  font-family: sans-serif;
  letter-spacing: 2px;
  width: max-content;
  padding-left: 1.5em;
  margin: 0 auto 0.5rem;
}
@media only screen and (max-width: 911px) {
  .c-card-01 .__foot p:nth-of-type(1) {
    font-size: 1.5rem;
  }
}
.c-card-01 .__foot p:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: no-repeat center/contain url(../img/icon-tel.svg);
}
.c-card-01 .__foot p:nth-of-type(2) {
  position: relative;
  color: #304E60;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: sans-serif;
  letter-spacing: 1px;
  width: max-content;
  padding-left: 1.5em;
  margin: 0 auto 1em;
}
@media only screen and (max-width: 911px) {
  .c-card-01 .__foot p:nth-of-type(2) {
    font-size: 1.5rem;
    margin: 0 auto 0.3em;
  }
}
.c-card-01 .__foot p:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: no-repeat center/contain url(../img/icon-fax.svg);
}
.c-card-01 .__foot p:nth-of-type(3) {
  color: #002B5D;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: sans-serif;
}
@media only screen and (max-width: 911px) {
  .c-card-01 .__foot p:nth-of-type(3) {
    font-size: 0.6rem;
  }
}

.c-card-02 {
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-template-rows: 200px auto;
  grid-template-areas: "item01 item02" "item03 item03";
}
@media only screen and (max-width: 911px) {
  .c-card-02 {
    grid-template-columns: 35% 1fr;
    grid-template-rows: 140px auto;
  }
}
.c-card-02 > div:nth-child(1) {
  grid-area: item01;
  border-radius: 16px;
  overflow: hidden;
}
.c-card-02 > div:nth-child(2) {
  grid-area: item02;
  padding-left: 2rem;
}
@media only screen and (max-width: 911px) {
  .c-card-02 > div:nth-child(2) {
    padding-left: 1rem;
  }
}
.c-card-02 > div:nth-child(2) p:nth-child(1) {
  color: #195CB9;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: sans-serif;
  margin-bottom: 1rem;
}
.c-card-02 > div:nth-child(2) p:nth-child(2) {
  color: #195CB9;
  font-size: 1.65rem;
  font-weight: 600;
  font-family: sans-serif;
  margin-bottom: 1rem;
}
.c-card-02 > div:nth-child(2) p:nth-child(3), .c-card-02 > div:nth-child(2) p:nth-child(4), .c-card-02 > div:nth-child(2) p:nth-child(5), .c-card-02 > div:nth-child(2) p:nth-child(6) {
  color: #002B5D;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: sans-serif;
  margin-bottom: 1rem;
}
.c-card-02 > div:nth-child(2) p:nth-child(4), .c-card-02 > div:nth-child(2) p:nth-child(5), .c-card-02 > div:nth-child(2) p:nth-child(6) {
  margin-bottom: 0.5rem;
}
.c-card-02 > p {
  grid-area: item03;
  color: #002B5D;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: sans-serif;
  letter-spacing: 1px;
  line-height: 1.8;
  padding-top: 1rem;
}

.c-card__howto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media only screen and (max-width: 911px) {
  .c-card__howto {
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-card__howto > .__l {
  width: 36.5rem;
}
.c-card__howto > .__l > div {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 911px) {
  .c-card__howto > .__l {
    position: absolute;
    top: 11rem;
    left: 0;
    width: 100%;
    height: 12.5rem;
    padding: 0 5rem 0 0;
  }
}
.c-card__howto > .__r {
  position: relative;
  padding: 0 7rem 0 6rem;
  width: calc(100% - 36.5rem);
}
@media only screen and (max-width: 911px) {
  .c-card__howto > .__r {
    width: 100%;
    padding: 0;
  }
}
.c-card__howto > .__r > * {
  margin-bottom: 1.45rem;
}
.c-card__howto > .__r .__title {
  position: absolute;
  top: 0;
  right: 0;
  color: #E6FF26;
  font-size: 7rem;
  font-weight: 800;
  font-family: sans-serif;
  letter-spacing: 0.5rem;
  line-height: 1;
}
@media only screen and (max-width: 911px) {
  .c-card__howto > .__r .__title {
    font-size: 5rem;
  }
}
.c-card__howto > .__r .__tag {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.7px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 1px 4px;
  background-color: #304E60;
}
@media only screen and (max-width: 911px) {
  .c-card__howto > .__r .__tag {
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0);
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 911px) {
  .c-card__howto > .__r .__tag > span.__br {
    padding: 0.1rem 0.3rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 0.5em;
    background-color: #304E60;
  }
}
.c-card__howto > .__r .__catch {
  color: #002B5D;
  font-size: 3.5rem;
  font-weight: 600;
  font-family: sans-serif;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.25em 0.5em 0.1em;
  background-color: #fff;
}
@media only screen and (max-width: 911px) {
  .c-card__howto > .__r .__catch {
    font-size: 1.9rem;
    padding: 0.2em 0.3em 0.1em;
    margin-bottom: 16.5rem;
  }
}
.c-card__howto > .__r .__ex {
  color: #002B5D;
  font-size: 1rem;
  font-weight: 400;
  font-family: sans-serif;
  line-height: 1.8;
  letter-spacing: 2px;
}
.c-card__howto > .__r .__link {
  position: relative;
  display: block;
  color: #304E60;
  font-size: 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 4em 0 auto;
}
.c-card__howto > .__r .__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7.5em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3em;
  height: 1em;
  margin-right: 4em;
  background: no-repeat center/contain url(../img/arrow-top-howto.svg);
  -webkit-transition: right 0.4s;
  -o-transition: right 0.4s;
  transition: right 0.4s;
}
.c-card__howto > .__r .__link:hover::after {
  right: -8em;
  -webkit-transition: right 0.4s;
  -o-transition: right 0.4s;
  transition: right 0.4s;
}
.c-card__howto > .__r .__nolink {
  display: block;
  color: #304E60;
  font-size: 1rem;
  font-weight: 600;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 0 0 auto;
}
.c-card__howto.__reverse > .__l {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media only screen and (max-width: 911px) {
  .c-card__howto.__reverse > .__l {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.c-card__howto.__reverse > .__r {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding: 0 80px 0 160px;
}
@media only screen and (max-width: 911px) {
  .c-card__howto.__reverse > .__r {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0;
  }
}
.c-card__howto.__reverse > .__r .__title {
  right: auto;
  left: 0;
}
@media only screen and (max-width: 911px) {
  .c-card__howto.__reverse > .__r .__title {
    right: 0;
    left: auto;
  }
}

.u-ex-01 {
  color: #002B5D;
  font-size: 1rem;
  font-weight: "";
  font-family: sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
}

.u-label-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #304E60;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: sans-serif;
  letter-spacing: 1px;
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  margin: 0 1rem 1rem 0;
  background-color: #fff;
}
.u-label-01 > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.5em;
  background-color: #304E60;
}

/* u- */
.u-tate {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.p-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 117px;
  height: 117px;
  opacity: 0;
}
@media only screen and (max-width: 911px) {
  .p-logo {
    width: 87px;
    height: 87px;
    opacity: 1;
    z-index: 9999;
  }
}

/* ヘッダーメニュー */
header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  transition: opacity 600mx cubic-bezier(0.19, 1, 0.22, 1), transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
header.__top {
  opacity: 0;
  transform: translateY(-100%);
}
@media only screen and (max-width: 911px) {
  header.__top {
    opacity: 1;
    transform: translateY(0);
  }
}
header.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1000ms cubic-bezier(0.19, 1, 0.22, 1), transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
header > .__inner {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
}
header > .__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
header > .__inner > .__logo {
  width: 117px;
  height: 117px;
  z-index: 10;
}
@media only screen and (max-width: 911px) {
  header > .__inner > .__logo {
    width: 87px;
    height: 87px;
    opacity: 0;
    background-color: #fff;
  }
}
header > .__inner > #mainNav {
  background-color: rgba(255, 255, 255, 0);
  z-index: 10;
}
header > .__inner > #mainNav .navbar-nav {
  display: flex;
  justify-content: right;
  align-items: center;
}
header > .__inner > #mainNav .navbar-nav .nav-item > a {
  display: inline-block;
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  margin-right: 2em;
}
header > .__inner > #mainNav .navbar-nav .nav-item > a.__contact {
  display: inline-block;
  color: #fff;
  padding: 0.5em 2em;
  border-radius: 16px;
  background-color: #304E60;
}
header > .__inner > .__hamburger {
  right: 0;
  mix-blend-mode: difference;
  position: relative;
  width: 48px;
  height: 25px;
  transition: transform 0.4s;
  position: fixed;
  margin-right: 2rem;
  z-index: 9;
}
header > .__inner > .__hamburger > span {
  position: absolute;
  display: block;
  left: 50%;
  width: 100%;
  height: 1.8px;
  border-radius: 4px;
  background-color: #fff;
  transition: transform 0.4s;
}
header > .__inner > .__hamburger > span:nth-child(1) {
  top: 32%;
  transform: translateX(-50%);
}
header > .__inner > .__hamburger > span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 1s, width 0.4s;
}
header > .__inner > .__hamburger > span:nth-child(3) {
  top: 62%;
  transform: translateX(-50%);
}
header > .__inner > .__hamburger.is-active > span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(165deg);
}
header > .__inner > .__hamburger.is-active > span:nth-child(2) {
  width: 0;
  opacity: 0;
}
header > .__inner > .__hamburger.is-active > span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-165deg);
}
@media only screen and (max-width: 911px) {
  header > .__inner {
    background: none;
  }
  header > .__inner::before {
    background-color: rgba(255, 255, 255, 0);
  }
}
@media only screen and (max-width: 911px) {
  header {
    mix-blend-mode: difference;
  }
}

#mainNav-h {
  top: 0;
  right: -100vw;
  width: 100%;
  height: 100vh;
  opacity: 0;
  z-index: 999;
  position: fixed;
  transition: opacity 0.8s, right 0.8s;
  padding-top: 87px;
  overflow-y: scroll;
  background-color: #fff;
}
#mainNav-h.is-active {
  right: 0;
  opacity: 1;
  transition: opacity 0.8s, right 0.8s;
}
#mainNav-h > ul {
  position: relative;
  padding: 117px 38px;
  z-index: 9;
}
#mainNav-h > ul > li {
  border-bottom: 1px dotted #304E60;
  padding-bottom: 1em;
  margin-right: 50%;
  margin-bottom: 1em;
}
#mainNav-h > ul > li > a {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
}
@media only screen and (max-width: 911px) {
  #mainNav-h > ul > li > a {
    font-size: 14px;
  }
}
#mainNav-h > ul > li.__information {
  border: none;
  margin-bottom: 2rem;
}
#mainNav-h > ul > li.__contact {
  position: relative;
  width: fit-content;
  padding: 0.8em 5em 0.8em 1.5em;
  border: 1px solid #304E60;
  border-radius: 32px;
  transition: color 0.4s, background-color 0.4s;
  margin: 0 auto 2rem;
}
#mainNav-h > ul > li.__contact::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-size: 1.5em;
}
#mainNav-h > ul > li.__contact:hover {
  color: #fff;
  transition: color 0.4s, border 0.4s;
  background-color: #304E60;
}
#mainNav-h > ul > li.__second {
  display: inline-block;
  text-align: center;
  width: 49%;
  border: none;
  margin: 0;
}

.top-view {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #F2F1ED;
  z-index: 1;
}
.top-view .header-logo {
  position: absolute;
  width: 24rem;
  height: 4rem;
  top: 0.8rem;
  left: 5.5rem;
  z-index: 9;
}
@media only screen and (max-width: 911px) {
  .top-view .header-logo {
    left: 1em;
    width: 70%;
  }
}
.top-view .header-logo img {
  object-fit: contain;
}
.top-view .header-logo svg {
  width: 100%;
}
.top-view .__body {
  margin-top: 3rem;
}
@media only screen and (max-width: 911px) {
  .top-view .__body {
    margin-top: 5.5rem;
  }
}
.top-view.top .__body {
  height: 38.6rem;
}
@media only screen and (max-width: 911px) {
  .top-view.top .__body {
    height: 19.8rem;
    margin-top: 5.5rem;
  }
}
.top-view.subpage .__body {
  height: 22.5rem;
}
.top-view.single .__body {
  height: 4.4rem;
}
.top-view.single .__body .p-carousel__top {
  display: none;
}
.top-view .__foot {
  width: 100%;
  padding: 2rem 0 0 0;
}
.top-view .__foot #breadcrumb {
  width: 100%;
}
.top-view .__foot .__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
@media only screen and (max-width: 1023px) {
  .top-view .__foot .__menu {
    padding-left: 8.5rem;
  }
}
@media only screen and (max-width: 733px) {
  .top-view .__foot .__menu {
    padding-left: 9.5rem;
  }
}
@media only screen and (max-width: 911px) {
  .top-view .__foot .__menu {
    padding: 0;
    margin: 0 auto;
  }
}
.top-view .__foot .__menu > * {
  width: 50%;
}
@media only screen and (max-width: 911px) {
  .top-view .__foot .__menu > div {
    width: 0;
  }
}
@media only screen and (max-width: 911px) {
  .top-view .__foot .__menu > ul {
    width: 100%;
  }
}

.site-heading {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 60px;
}

.p-carousel__top {
  height: 100%;
}
.p-carousel__top > li {
  height: 100%;
  border-radius: 16px;
  margin: 0 50px;
  background-color: #F2F1ED;
  overflow: hidden;
}
@media only screen and (max-width: 911px) {
  .p-carousel__top > li {
    margin: 0 1rem;
  }
}

.p-topview__under-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 608px;
  padding: 0;
  border-radius: 16px 16px 0 0;
  background-color: #fff;
}
.p-topview__under-link > li {
  text-align: center;
  width: 33.3333333333%;
  height: 3em;
  -webkit-transition: right 0.4s;
  -o-transition: right 0.4s;
  transition: right 0.4s;
}
.p-topview__under-link > li > a {
  font-weight: 600;
  height: 100%;
}
.p-topview__under-link > li:last-of-type span {
  padding-left: 0;
}

#top .p-topview {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 810px;
}
@media only screen and (max-width: 911px) {
  #top .p-topview {
    height: 714px;
  }
}
#top .p-topview > div.p-menu {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  flex-shrink: 0;
  width: 420px;
}
#top .p-topview > div.p-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
#top .p-topview > div.p-menu > .__inner {
  position: relative;
  height: 100%;
  z-index: 10;
}
#top .p-topview > div.p-menu > .__inner > h1 {
  width: 117px;
  height: 117px;
}
#top .p-topview > div.p-menu > .__inner > .__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 117px);
}
#top .p-topview > div.p-menu > .__inner > .__menu > ul > li {
  margin-bottom: 2em;
}
#top .p-topview > div.p-menu > .__inner > .__menu > ul > li > a {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  transition: color 0.4s;
}
#top .p-topview > div.p-menu > .__inner > .__menu > ul > li > a:hover {
  color: #758698;
  transition: color 0.4s;
}
#top .p-topview > div.p-menu > .__inner > .__menu > ul > li > a.__contact {
  display: inline-block;
  color: #304E60;
  padding: 0.5em 2em;
  border: 1px solid #304E60;
  border-radius: 16px;
}
@media only screen and (max-width: 911px) {
  #top .p-topview > div.p-menu {
    display: none;
  }
}
#top .p-topview > div.p-view {
  position: relative;
  width: calc(100% - 420px);
}
#top .p-topview > div.p-view * {
  height: 100%;
}
#top .p-topview > div.p-view > p {
  position: absolute;
  left: 4em;
  bottom: 6em;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 4px;
  height: auto;
  z-index: 10;
}
@media only screen and (max-width: 911px) {
  #top .p-topview > div.p-view > p {
    left: 0.5em;
  }
}
#top .p-topview > div.p-view > p > span {
  display: block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
}
@media only screen and (max-width: 911px) {
  #top .p-topview > div.p-view {
    width: 100%;
  }
}
#top .p-top-quality {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding: 140px 0;
}
#top .p-top-quality::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
#top .p-top-quality > div {
  text-align: center;
  z-index: 10;
}
#top .p-top-quality > div h2 {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  margin-bottom: 1rem;
}
#top .p-top-quality > div h3 {
  color: #304E60;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 2px;
  line-height: 43pt;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 911px) {
  #top .p-top-quality > div h3 {
    line-height: 2;
    letter-spacing: 1px;
  }
}
#top .p-top-quality > div p {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 33pt;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 911px) {
  #top .p-top-quality > div p {
    line-height: 2.2;
    letter-spacing: 0;
  }
}
#top .p-top-quality > div a {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.5em 2em 0.5em 1em;
  width: fit-content;
  margin: 0 auto;
}
#top .p-top-quality > div a::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 3em;
  height: 2em;
  border: 1px solid #304E60;
  border-radius: 32px;
  transition: width 350ms;
}
#top .p-top-quality > div a > span:nth-child(1), #top .p-top-quality > div a > span:nth-child(2) {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
}
#top .p-top-quality > div a > span:nth-child(1) {
  position: relative;
  width: 1.4em;
  height: 1em;
  overflow: hidden;
}
#top .p-top-quality > div a > span:nth-child(1)::before, #top .p-top-quality > div a > span:nth-child(1)::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 1.4em;
  height: auto;
  transition: left 0.4s;
}
#top .p-top-quality > div a > span:nth-child(1)::before {
  left: -1.5em;
}
#top .p-top-quality > div a > span:nth-child(1)::after {
  left: 0;
}
#top .p-top-quality > div a > span:nth-child(2) {
  margin-left: 2em;
}
#top .p-top-quality > div a:hover::before {
  width: 100%;
}
#top .p-top-quality > div a:hover > span:nth-child(1)::before {
  left: 0;
  transition: left 0.4s;
}
#top .p-top-quality > div a:hover > span:nth-child(1)::after {
  left: 2em;
  transition: left 0.4s;
}
#top .p-top-about {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding: 126px 0;
}
#top .p-top-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
@media only screen and (max-width: 911px) {
  #top .p-top-about {
    padding: 60px 0;
  }
}
#top .p-top-about > div {
  z-index: 10;
}
#top .p-top-about > div .__inner {
  position: relative;
}
#top .p-top-about > div .__inner::before {
  content: "";
  position: absolute;
  top: -125px;
  width: calc(50vw + 200px);
  height: calc(100% + 252px);
  padding: 126px 0;
  margin: 0 calc(50% - 50vw);
  background-color: #304E60;
  z-index: -1;
}
@media only screen and (max-width: 911px) {
  #top .p-top-about > div .__inner::before {
    top: -60px;
    width: 100vw;
    padding: 60px 0;
    height: calc(100% + 136px);
  }
}
#top .p-top-about > div .__inner h2 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  margin-bottom: 2rem;
}
#top .p-top-about > div .__inner h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 43pt;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 911px) {
  #top .p-top-about > div .__inner h3 {
    margin-bottom: 24rem;
  }
}
#top .p-top-about > div .__inner p {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 33pt;
  margin-bottom: 3rem;
}
#top .p-top-about > div .__inner a {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.5em 2em 0.5em 1em;
  width: fit-content;
  margin: 0 auto;
  margin: 0 auto 0 0;
}
#top .p-top-about > div .__inner a::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 3em;
  height: 2em;
  border: 1px solid #304E60;
  border-radius: 32px;
  transition: width 350ms;
}
#top .p-top-about > div .__inner a > span:nth-child(1), #top .p-top-about > div .__inner a > span:nth-child(2) {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
}
#top .p-top-about > div .__inner a > span:nth-child(1) {
  position: relative;
  width: 1.4em;
  height: 1em;
  overflow: hidden;
}
#top .p-top-about > div .__inner a > span:nth-child(1)::before, #top .p-top-about > div .__inner a > span:nth-child(1)::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 1.4em;
  height: auto;
  transition: left 0.4s;
}
#top .p-top-about > div .__inner a > span:nth-child(1)::before {
  left: -1.5em;
}
#top .p-top-about > div .__inner a > span:nth-child(1)::after {
  left: 0;
}
#top .p-top-about > div .__inner a > span:nth-child(2) {
  margin-left: 2em;
}
#top .p-top-about > div .__inner a:hover::before {
  width: 100%;
}
#top .p-top-about > div .__inner a:hover > span:nth-child(1)::before {
  left: 0;
  transition: left 0.4s;
}
#top .p-top-about > div .__inner a:hover > span:nth-child(1)::after {
  left: 2em;
  transition: left 0.4s;
}
#top .p-top-about > div .__inner a::before {
  border-color: #fff;
}
#top .p-top-about > div .__inner a > span:nth-child(1), #top .p-top-about > div .__inner a > span:nth-child(2) {
  color: #fff;
}
@media only screen and (max-width: 911px) {
  #top .p-top-about > div .__inner a {
    margin: 0 auto;
  }
}
#top .p-top-about > div .__inner .__image {
  position: absolute;
  top: 46%;
  right: 0;
  transform: translateY(-50%);
  width: 19.09rem;
  height: 19.09rem;
}
@media only screen and (max-width: 911px) {
  #top .p-top-about > div .__inner .__image {
    transform: translateY(-60%);
  }
}
#top .p-top-products {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding: 188px 0;
}
#top .p-top-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
@media only screen and (max-width: 911px) {
  #top .p-top-products {
    padding: 80px 0;
  }
}
#top .p-top-products > div {
  z-index: 10;
}
#top .p-top-products > div > h3 {
  color: #304E60;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
  text-align: center;
  margin-bottom: 4rem;
}
#top .p-top-products > div > h3 > span {
  display: block;
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 2;
}
#top .p-top-products > div .__body {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
#top .p-top-products > div .__body > div {
  width: 50%;
}
@media only screen and (max-width: 911px) {
  #top .p-top-products > div .__body > div {
    width: 100%;
  }
}
#top .p-top-products > div .__body > div.__l {
  padding-right: 10%;
}
@media only screen and (max-width: 911px) {
  #top .p-top-products > div .__body > div.__l {
    padding-right: 0;
  }
}
#top .p-top-products > div .__body > div.__l > ul {
  border-top: 1px solid #B5BDC6;
}
#top .p-top-products > div .__body > div.__l > ul > li {
  border-bottom: 1px solid #B5BDC6;
}
@media only screen and (max-width: 911px) {
  #top .p-top-products > div .__body > div.__l > ul > li {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
}
#top .p-top-products > div .__body > div.__l > ul > li > a {
  display: inline-block;
  position: relative;
  color: #304E60;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  width: 100%;
  padding: 1.2em 0;
}
#top .p-top-products > div .__body > div.__l > ul > li > a::after {
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: color 0.8s, background-color 0.2s;
}
#top .p-top-products > div .__body > div.__l > ul > li > a > span {
  display: block;
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 1.5;
}
#top .p-top-products > div .__body > div.__l > ul > li.is-active > a::after {
  color: #fff;
  background-color: #304E60;
  transition: color 0.8s, background-color 0.4s;
}
@media only screen and (max-width: 911px) {
  #top .p-top-products > div .__body > div.__l > ul > li.is-active > a::after {
    color: #304E60;
    background-color: rgba(255, 255, 255, 0);
  }
}
#top .p-top-products > div .__body > div.__r {
  padding-left: 10%;
}
#top .p-top-products > div .__body > div.__r > div {
  width: 400px;
  height: 300px;
}
#top .p-top-products > div .__body > div.__r > div > ul > li {
  display: none;
}
#top .p-top-products > div .__body > div.__r > div > ul > li.is-active {
  display: block;
}
#top .p-top-products > div .__foot {
  display: flex;
  justify-content: space-between;
  padding: 1em 2em;
  background-color: #E5E8EA;
}
@media only screen and (max-width: 911px) {
  #top .p-top-products > div .__foot {
    flex-wrap: wrap;
    padding: 2em 1em;
  }
}
@media only screen and (max-width: 911px) {
  #top .p-top-products > div .__foot > div {
    width: 100%;
  }
}
@media only screen and (max-width: 911px) {
  #top .p-top-products > div .__foot > div.__l {
    margin-bottom: 2rem;
  }
}
#top .p-top-products > div .__foot h3 {
  color: #304E60;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  margin-bottom: 1em;
  line-height: 1.8;
}
#top .p-top-products > div .__foot p {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 1.5;
}
#top .p-top-products > div .__foot div.__r {
  display: flex;
  align-items: end;
}
#top .p-top-products > div .__foot div.__r > a {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.5em 2em 0.5em 1em;
  width: fit-content;
  margin: 0 auto;
}
#top .p-top-products > div .__foot div.__r > a::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 3em;
  height: 2em;
  border: 1px solid #304E60;
  border-radius: 32px;
  transition: width 350ms;
}
#top .p-top-products > div .__foot div.__r > a > span:nth-child(1), #top .p-top-products > div .__foot div.__r > a > span:nth-child(2) {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
}
#top .p-top-products > div .__foot div.__r > a > span:nth-child(1) {
  position: relative;
  width: 1.4em;
  height: 1em;
  overflow: hidden;
}
#top .p-top-products > div .__foot div.__r > a > span:nth-child(1)::before, #top .p-top-products > div .__foot div.__r > a > span:nth-child(1)::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 1.4em;
  height: auto;
  transition: left 0.4s;
}
#top .p-top-products > div .__foot div.__r > a > span:nth-child(1)::before {
  left: -1.5em;
}
#top .p-top-products > div .__foot div.__r > a > span:nth-child(1)::after {
  left: 0;
}
#top .p-top-products > div .__foot div.__r > a > span:nth-child(2) {
  margin-left: 2em;
}
#top .p-top-products > div .__foot div.__r > a:hover::before {
  width: 100%;
}
#top .p-top-products > div .__foot div.__r > a:hover > span:nth-child(1)::before {
  left: 0;
  transition: left 0.4s;
}
#top .p-top-products > div .__foot div.__r > a:hover > span:nth-child(1)::after {
  left: 2em;
  transition: left 0.4s;
}
@media only screen and (max-width: 911px) {
  #top .p-top-products > div .__body > div.__r {
    display: none;
  }
}
#top .p-top-information {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding: 120px 0 180px;
}
#top .p-top-information::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
@media only screen and (max-width: 911px) {
  #top .p-top-information {
    padding: 80px 0;
  }
}
#top .p-top-information > div {
  z-index: 10;
}
#top .p-top-information > div > h3 {
  color: #304E60;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
  text-align: center;
  margin-bottom: 4rem;
}
#top .p-top-information > div > h3 > span {
  display: block;
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 2;
}
#top .p-top-information > div > dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #B5BDC6;
}
#top .p-top-information > div > dl > dh {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  width: 25%;
  padding: 0.6em 0;
  border-bottom: 1px solid #B5BDC6;
}
#top .p-top-information > div > dl > dd {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  width: 75%;
  letter-spacing: 1px;
  line-height: 1.4;
  padding: 0.6em 0;
  border-bottom: 1px solid #B5BDC6;
}
#top .p-top-information > div > dl > dd > a {
  display: block;
  position: relative;
  line-height: 1.5;
  padding-right: 2em;
}
#top .p-top-information > div > dl > dd > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #758698;
  border-right: 1px solid #758698;
}
#top .p-top-movie {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding: 120px 0 180px;
}
#top .p-top-movie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
@media only screen and (max-width: 911px) {
  #top .p-top-movie {
    padding: 80px 0;
  }
}
#top .p-top-movie > div {
  z-index: 10;
}
#top .p-top-movie > div > h3 {
  color: #304E60;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
  text-align: center;
  margin-bottom: 4rem;
}
#top .p-top-movie > div > h3 > span {
  display: block;
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 2;
}
#top .p-top-movie > div .l-movie {
  position: relative;
}
#top .p-top-movie > div .l-movie > div.__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B5BDC6;
  z-index: 1;
  transition-duration: 0.4s;
}
#top .p-top-movie > div .l-movie > div.__cover.__hidden {
  pointer-events: none;
  opacity: 0;
}
#top .p-top-movie > div .l-movie > video {
  position: relative;
  width: 100%;
}
#top .p-top-movie > div .l-movie > div.movie_start {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 188px;
  height: 188px;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  font-weight: normal;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition-duration: 0.4s;
  z-index: 3;
}
#top .p-top-movie > div .l-movie > div.movie_start.__hidden {
  pointer-events: none;
  opacity: 0;
}

.top-view.facility #breadcrumb,
.top-view.question #breadcrumb,
.top-view.event-use #breadcrumb,
.top-view.contact #breadcrumb,
.top-view.interact #breadcrumb,
.top-view.single #breadcrumb {
  padding: 2em;
  border-bottom: 3px solid #fff;
}

.top-view.facility .__menu,
.top-view.question .__menu,
.top-view.event-use .__menu,
.top-view.contact .__menu,
.top-view.interact .__menu,
.top-view.single .__menu {
  display: none;
}

.p-topview.__sub {
  padding-top: 117px;
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
}
.p-topview.__sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
@media only screen and (max-width: 911px) {
  .p-topview.__sub {
    padding-top: 87px;
  }
}
.p-topview.__sub > .__inner {
  display: block;
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 9;
}
@media only screen and (max-width: 911px) {
  .p-topview.__sub > .__inner {
    height: 484px;
    padding: 0;
  }
}
.p-topview.__sub > .__inner > h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  letter-spacing: 8px;
  width: 100%;
  z-index: 10;
}
.p-topview.__sub > .__inner > h2 > span {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 100;
  font-family: "EB Garamond", sans-serif;
  letter-spacing: 0px;
  line-height: 2;
}
.p-topview.__sub > .__inner > div {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-topview.__sub > .__inner > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 9;
}
@media only screen and (max-width: 911px) {
  .p-topview.__sub > .__inner > div {
    border-radius: 0;
  }
}

.p-question,
.p-shop,
.p-contact,
.p-privacypolicy,
.p-single {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding-top: 117px;
}
.p-question::before,
.p-shop::before,
.p-contact::before,
.p-privacypolicy::before,
.p-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}

#about .p-topview .__inner img {
  object-position: top;
}
#about .p-about-message {
  padding: 144px 0;
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  overflow: hidden;
}
#about .p-about-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
@media only screen and (max-width: 911px) {
  #about .p-about-message {
    padding: 64px 0;
  }
}
#about .p-about-message > div {
  z-index: 9;
}
#about .p-about-message > div p {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  letter-spacing: 2px;
  line-height: 2;
}
@media only screen and (max-width: 911px) {
  #about .p-about-message > div p {
    text-align: left;
  }
}
#about .p-about-history {
  padding: 96px 0;
  background-color: #304E60;
  overflow: hidden;
}
@media only screen and (max-width: 911px) {
  #about .p-about-history {
    padding: 48px 0;
  }
}
#about .p-about-history ul {
  width: 100%;
  max-width: none;
  margin: 0;
}
@media only screen and (max-width: 911px) {
  #about .p-about-history ul {
    margin-left: 0.5rem;
  }
}
#about .p-about-company {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding: 188px 0;
}
#about .p-about-company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
@media only screen and (max-width: 911px) {
  #about .p-about-company {
    padding: 80px 0;
  }
}
#about .p-about-company > div {
  z-index: 10;
}
#about .p-about-company > div > h3 {
  color: #304E60;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
  text-align: center;
  margin-bottom: 4rem;
}
#about .p-about-company > div > h3 > span {
  display: block;
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 2;
}
#about .p-about-company > div dl {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
#about .p-about-company > div dl dh, #about .p-about-company > div dl dd {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  padding: 2em 0;
  border-bottom: 1px dashed #304E60;
}
#about .p-about-company > div dl dh:last-of-type, #about .p-about-company > div dl dd:last-of-type {
  border-bottom: none;
}
#about .p-about-company > div dl dh {
  width: 25%;
}
@media only screen and (max-width: 911px) {
  #about .p-about-company > div dl dh {
    width: 30%;
  }
}
#about .p-about-company > div dl dd {
  width: 75%;
}
@media only screen and (max-width: 911px) {
  #about .p-about-company > div dl dd {
    width: 70%;
    padding-left: 1em;
  }
}
#about .p-about-company > div dl dd > ul > li {
  margin-bottom: 1rem;
}
#about .p-about-company > div dl dd a {
  position: relative;
  display: block;
  transition: color 0.4s;
  padding-left: 1.5em;
  width: 100%;
  word-wrap: break-word;
}
#about .p-about-company > div dl dd a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: no-repeat center/cover url(../img/icon-link.svg);
}
#about .p-about-company > div div {
  width: 100%;
  height: 392px;
}
#about .p-about-company > div div iframe {
  width: 100%;
  height: 100%;
}
#about .__scroll {
  display: flex;
  margin: 4070px;
  overflow-x: scroll;
}
#about .__scroll li {
  width: 370px;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  flex-shrink: 0;
  list-style: none;
  border-right: 1px dotted #fff;
  z-index: 0;
}
#about .__scroll li p.__year {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 2px;
  padding-left: 49px;
  padding-bottom: 0.5em;
}
#about .__scroll li div.__line {
  position: relative;
  height: 30px;
  margin-bottom: 2rem;
  background-color: #E5E8EA;
  z-index: 9;
}
#about .__scroll li div.__line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 49px;
  transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #304E60;
}
#about .__scroll li div.__img {
  width: 271px;
  height: 155px;
  margin: 0 auto 1rem;
}
#about .__scroll li p.__ex {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
  padding: 0 49px;
}
#about .__scroll li:nth-child(1) div.__line {
  border-radius: 16px 0 0 16px;
}
#about .__scroll li:last-child {
  border-right: none;
  margin-right: 0rem;
}
#about .__scroll li:last-child div.__line {
  border-radius: 0 16px 16px 0;
}
#about .__scroll::-webkit-scrollbar {
  height: 8px; /* スクロールバーの高さ */
  width: 50%;
}
#about .__scroll::-webkit-scrollbar-thumb {
  width: 10%;
  background: #fff; /* ツマミの色 */
  border-radius: 6px; /* ツマミ両端の丸み */
}
#about .__scroll::-webkit-scrollbar-track {
  background: #758698; /* トラックの色 */
  border-radius: 6px; /* トラック両端の丸み */
}
#about .__scroll::-webkit-scrollbar-corner {
  display: none;
}

.p-quality-message {
  padding: 144px 0;
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  overflow: hidden;
}
.p-quality-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
@media only screen and (max-width: 911px) {
  .p-quality-message {
    padding: 84px 0;
  }
}
.p-quality-message > div {
  z-index: 9;
}
.p-quality-message > div .__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 911px) {
  .p-quality-message > div .__body {
    height: auto;
  }
}
.p-quality-message > div .__body .__l {
  width: 60%;
}
@media only screen and (max-width: 911px) {
  .p-quality-message > div .__body .__l {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.p-quality-message > div .__body .__l h2 {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  margin-bottom: 2em;
}
.p-quality-message > div .__body .__l h3 {
  color: #304E60;
  font-size: 1.3rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 2px;
  line-height: 43pt;
  margin-bottom: 1em;
}
@media only screen and (max-width: 911px) {
  .p-quality-message > div .__body .__l h3 {
    line-height: 1.5;
  }
}
.p-quality-message > div .__body .__l p {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 24pt;
  margin-bottom: 1em;
}
@media only screen and (max-width: 911px) {
  .p-quality-message > div .__body .__l p {
    letter-spacing: 1px;
    line-height: 2;
  }
}
.p-quality-message > div .__body .__r {
  width: 40%;
  height: 100%;
}
@media only screen and (max-width: 911px) {
  .p-quality-message > div .__body .__r {
    width: 100%;
  }
}
.p-quality-message > div .__body .__r > div {
  height: 460px;
}
@media only screen and (max-width: 911px) {
  .p-quality-message > div .__body .__r > div {
    height: 320px;
    width: 100vw;
    margin: 0 calc(70% - 50vw);
  }
}

.p-quality-point {
  padding: 84px 0 126px;
  background-color: #304E60;
}
.p-quality-point h2 {
  color: #B5BDC6;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  margin-bottom: 1em;
}
.p-quality-point h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 4em;
}
.p-quality-point ul {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
}
@media only screen and (max-width: 911px) {
  .p-quality-point ul {
    flex-wrap: wrap;
    gap: 6rem 0;
  }
}
.p-quality-point ul li {
  position: relative;
  width: 33.3333333333%;
}
@media only screen and (max-width: 911px) {
  .p-quality-point ul li {
    width: 100%;
  }
}
.p-quality-point ul li > span {
  position: absolute;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 300;
  font-family: "EB Garamond", sans-serif;
  top: 0;
  left: 1em;
}
.p-quality-point ul li div {
  width: 212px;
  height: 212px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 1em;
}
.p-quality-point ul li p {
  color: #fff;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  letter-spacing: 2px;
}
.p-quality-point ul li p > span {
  display: block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 0;
  line-height: 2;
}

.p-quality-condition {
  padding: 200px 0;
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
}
.p-quality-condition::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
.p-quality-condition > div {
  z-index: 9;
}
.p-quality-condition > div > section {
  position: relative;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section {
    margin-bottom: 4rem;
  }
}
.p-quality-condition > div > section:last-child {
  margin-bottom: 0;
}
.p-quality-condition > div > section h3 {
  color: #304E60;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 2em;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section h3 {
    font-size: 1.2rem;
    margin-bottom: 1em;
    letter-spacing: 1.5px;
  }
}
.p-quality-condition > div > section .__body {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section .__body {
    flex-wrap: wrap;
  }
}
.p-quality-condition > div > section .__body > div.__l {
  width: 55%;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section .__body > div.__l {
    width: 100%;
  }
}
.p-quality-condition > div > section .__body > div.__r {
  width: 45%;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section .__body > div.__r {
    width: 100%;
  }
}
.p-quality-condition > div > section .__body > div.__r > p {
  text-align: left;
}
.p-quality-condition > div > section .__body > div.__r > p.__center {
  text-align: center;
}
.p-quality-condition > div > section .__body > div p {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 2.4;
}
.p-quality-condition > div > section .__body > div p > span {
  display: inline-block;
  font-size: 1.6em;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section .__body > div p > span {
    display: block;
    font-size: 1.7em;
    text-align: center;
  }
}
.p-quality-condition > div > section .__body > div p > span.__right {
  display: block;
  font-size: 1em;
  text-align: right;
}
.p-quality-condition > div > section .__body.__end {
  padding-top: 3rem;
}
.p-quality-condition > div > section .__foot p {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 0;
  line-height: 2;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section .__foot p {
    letter-spacing: 2px;
    line-height: 1.8;
  }
}
.p-quality-condition > div > section .__foot p > span {
  font-size: 1.3em;
}
.p-quality-condition > div > section .__icon {
  position: absolute;
}
.p-quality-condition > div > section .__icon.__icon01 {
  top: -68px;
  left: -100px;
  width: 400px;
  height: auto;
  z-index: -1;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section .__icon.__icon01 {
    top: -64px;
    left: auto;
    right: 0;
    width: 240px;
  }
}
.p-quality-condition > div > section .__icon.__icon02 {
  top: 160px;
  left: 7rem;
  width: 184px;
  height: auto;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section .__icon.__icon02 {
    top: 90px;
    left: auto;
    right: 0;
    width: 160px;
  }
}
.p-quality-condition > div > section .__icon.__icon03 {
  top: 0;
  right: 0;
  width: 240px;
  height: auto;
  z-index: -1;
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section .__icon.__icon03 {
    top: -23px;
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section:nth-child(1) .__body > div.__l, .p-quality-condition > div > section:nth-child(2) .__body > div.__l {
    order: 2;
  }
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section:nth-child(1) .__body > div.__r, .p-quality-condition > div > section:nth-child(2) .__body > div.__r {
    order: 1;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media only screen and (max-width: 911px) {
  .p-quality-condition > div > section:nth-child(3) .__body > div.__l {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
#lineup .p-topview.__sub.__lineup div::after {
  display: none;
}
#lineup .p-lineup-products {
  padding: 160px 0 0;
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  overflow-x: hidden;
}
#lineup .p-lineup-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
#lineup .p-lineup-products > div {
  z-index: 9;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-products {
    padding: 0;
  }
}
#lineup .p-lineup-products .__product > li {
  padding-top: 4rem;
  margin-bottom: 180px;
}
#lineup .p-lineup-products .__product > li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-products .__product > li {
    margin-bottom: 60px;
  }
}
#lineup .p-lineup-products .__product > li .__head {
  position: relative;
  display: flex;
  height: 500px;
  margin-bottom: 160px;
}
#lineup .p-lineup-products .__product > li .__head div.__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 450px;
  margin: 0 calc(50% - 50vw);
  background-color: #E5E8EA;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-products .__product > li .__head div.__bg {
    width: 100vw;
    height: 560px;
  }
}
#lineup .p-lineup-products .__product > li .__head div.__l {
  position: absolute;
  width: 580px;
  height: 440px;
  left: 0;
  bottom: 0;
  z-index: 9;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-products .__product > li .__head div.__l {
    bottom: -40px;
    width: 100vw;
    height: 255px;
    margin: 0 calc(50% - 50vw);
  }
}
#lineup .p-lineup-products .__product > li .__head div.__r {
  padding: 98px 0 0 136px;
  margin-left: 50%;
  z-index: 1;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-products .__product > li .__head div.__r {
    padding: 88px 0 0 0;
    margin-left: 0;
  }
}
#lineup .p-lineup-products .__product > li .__head div.__r > h3 {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 300;
  font-family: "EB Garamond", sans-serif;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #304E60;
  margin-bottom: 4em;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-products .__product > li .__head div.__r > h3 {
    border-bottom: none;
    margin-bottom: 1em;
  }
}
#lineup .p-lineup-products .__product > li .__head div.__r > h4 {
  color: #304E60;
  font-size: 1.3rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 1em;
}
#lineup .p-lineup-products .__product > li .__head div.__r > p {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 1em;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-products .__product > li .__head div.__r > p {
    letter-spacing: -0.5px;
  }
}
#lineup .p-lineup-products .__product > li .__body {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 4rem 0rem;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-products .__product > li .__body {
    gap: 2rem 0rem;
  }
}
#lineup .p-lineup-products .__product > li .__body > li {
  width: calc(33.3333333333% - 0.8rem);
  margin-right: 1.2rem;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-products .__product > li .__body > li {
    width: 100%;
  }
}
#lineup .p-lineup-products .__product > li .__body > li:nth-child(3n) {
  margin-right: 0;
}
#lineup .p-lineup-products .__product > li .__body > li .__img {
  height: 240px;
  margin-bottom: 1rem;
}
#lineup .p-lineup-products .__product > li .__body > li .__title {
  color: #304E60;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Hina Mincho", sans-serif;
  min-height: 3em;
}
#lineup .p-lineup-products .__product > li .__body > li .__ex {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 1.8;
  margin-bottom: 3em;
}
#lineup .p-lineup-products .__product > li .__body > li ul.__size {
  margin-bottom: 2em;
}
#lineup .p-lineup-products .__product > li .__body > li ul.__size .__title {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  min-height: 1em;
  letter-spacing: 1px;
  margin-bottom: 0.5em;
}
#lineup .p-lineup-products .__product > li .__body > li ul.__size .__detail {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  padding-left: 0.5em;
  padding-bottom: 0.5em;
}
#lineup .p-lineup-products .__product > li .__body > li ul.__country {
  margin-bottom: 1rem;
}
#lineup .p-lineup-products .__product > li .__body > li ul.__country .__title {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  min-height: 1em;
  letter-spacing: 1px;
  margin-bottom: 1em;
}
#lineup .p-lineup-products .__product > li .__body > li ul.__country .__detail {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  padding-left: 0.5em;
  padding-bottom: 0.5em;
}
#lineup .p-lineup-products .__product > li .__body > li ul.__country .__detail dl {
  display: flex;
  justify-content: left;
  color: #304E60;
  font-size: 0.7rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
}
#lineup .p-lineup-products .__product > li .__body > li ul.__country .__detail dl dh {
  width: 25%;
}
#lineup .p-lineup-products .__product > li .__body > li ul.__country .__detail dl dd {
  width: 75%;
  line-height: 1.5;
}
#lineup .p-lineup-link {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding: 80px 0;
}
#lineup .p-lineup-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
#lineup .p-lineup-link > div {
  z-index: 9;
}
#lineup .p-lineup-link a {
  position: relative;
  width: fit-content;
  padding: 0.8em 5em 0.8em 1.5em;
  border: 1px solid #304E60;
  border-radius: 32px;
  transition: color 0.4s, background-color 0.4s;
  display: block;
  color: #304E60;
  font-size: 1.1rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  letter-spacing: 2px;
  width: 100%;
}
#lineup .p-lineup-link a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-size: 1.5em;
}
#lineup .p-lineup-link a:hover {
  color: #fff;
  transition: color 0.4s, border 0.4s;
  background-color: #304E60;
}
#lineup .p-lineup-foot {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding: 80px 0;
}
#lineup .p-lineup-foot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
#lineup .p-lineup-foot > div {
  z-index: 9;
}
#lineup .p-lineup-foot .__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#lineup .p-lineup-foot .__inner > div {
  width: 50%;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-foot .__inner > div {
    width: 100%;
  }
}
#lineup .p-lineup-foot div.__l {
  height: 320px;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-foot div.__l {
    margin-bottom: 4rem;
  }
}
#lineup .p-lineup-foot div.__l > div {
  height: inherit;
}
#lineup .p-lineup-foot div.__r {
  padding-left: 4rem;
}
@media only screen and (max-width: 911px) {
  #lineup .p-lineup-foot div.__r {
    padding-left: 0;
  }
}
#lineup .p-lineup-foot div.__r h3 {
  color: #304E60;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 1em;
}
#lineup .p-lineup-foot div.__r p {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 3em;
}
#lineup .p-lineup-foot div.__r a {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.5em 2em 0.5em 1em;
  width: fit-content;
  margin: 0 auto;
  margin-left: 0;
}
#lineup .p-lineup-foot div.__r a::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 3em;
  height: 2em;
  border: 1px solid #304E60;
  border-radius: 32px;
  transition: width 350ms;
}
#lineup .p-lineup-foot div.__r a > span:nth-child(1), #lineup .p-lineup-foot div.__r a > span:nth-child(2) {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
}
#lineup .p-lineup-foot div.__r a > span:nth-child(1) {
  position: relative;
  width: 1.4em;
  height: 1em;
  overflow: hidden;
}
#lineup .p-lineup-foot div.__r a > span:nth-child(1)::before, #lineup .p-lineup-foot div.__r a > span:nth-child(1)::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 1.4em;
  height: auto;
  transition: left 0.4s;
}
#lineup .p-lineup-foot div.__r a > span:nth-child(1)::before {
  left: -1.5em;
}
#lineup .p-lineup-foot div.__r a > span:nth-child(1)::after {
  left: 0;
}
#lineup .p-lineup-foot div.__r a > span:nth-child(2) {
  margin-left: 2em;
}
#lineup .p-lineup-foot div.__r a:hover::before {
  width: 100%;
}
#lineup .p-lineup-foot div.__r a:hover > span:nth-child(1)::before {
  left: 0;
  transition: left 0.4s;
}
#lineup .p-lineup-foot div.__r a:hover > span:nth-child(1)::after {
  left: 2em;
  transition: left 0.4s;
}

#lineup-other .p-topview.__sub.__lineup-other .__inner h2 {
  margin-bottom: 0.5em;
}
#lineup-other .p-topview.__sub.__lineup-other .__inner h2 span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  line-height: 1.5;
  padding-top: 1em;
}
#lineup-other .p-topview.__sub.__lineup-other .__inner > div::after {
  display: none;
}
#lineup-other .p-lineup-other-anchor {
  padding: 80px 0;
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
}
#lineup-other .p-lineup-other-anchor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
#lineup-other .p-lineup-other-anchor > div {
  z-index: 9;
}
#lineup-other .p-lineup-other-anchor > div > ul {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 1rem 1rem;
}
#lineup-other .p-lineup-other-anchor > div > ul > li {
  width: calc(33.3333333333% - 1rem);
}
@media only screen and (max-width: 911px) {
  #lineup-other .p-lineup-other-anchor > div > ul > li {
    width: calc(50% - 0.5rem);
  }
}
#lineup-other .p-lineup-other-anchor > div > ul > li > a {
  display: inline-block;
  color: #304E60;
  font-size: 0.7rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  width: 100%;
  padding: 0.8em 0;
  border: 1px solid #304E60;
  border-radius: 18px;
  transition: color 0.8s, background-color 0.8s;
}
@media only screen and (max-width: 911px) {
  #lineup-other .p-lineup-other-anchor > div > ul > li > a {
    padding: 1.2em 0;
  }
}
#lineup-other .p-lineup-other-anchor > div > ul > li > a:hover {
  color: #fff;
  background-color: #304E60;
  transition: color 0.8s, background-color 0.8s;
}
#lineup-other .p-lineup-other-detail {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  overflow-x: hidden;
}
#lineup-other .p-lineup-other-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
#lineup-other .p-lineup-other-detail > div {
  z-index: 9;
}
@media only screen and (max-width: 911px) {
  #lineup-other .p-lineup-other-detail {
    padding: 0;
  }
}
#lineup-other .p-lineup-other-detail .__product > li {
  margin-bottom: 184px;
}
#lineup-other .p-lineup-other-detail .__product > li:last-child {
  margin-bottom: 0;
}
#lineup-other .p-lineup-other-detail .__product > li .__head {
  position: relative;
  padding-top: 192px;
  padding-bottom: 68px;
}
@media only screen and (max-width: 911px) {
  #lineup-other .p-lineup-other-detail .__product > li .__head {
    padding-top: 92px;
    padding-bottom: 68px;
  }
}
#lineup-other .p-lineup-other-detail .__product > li .__head div.__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 530px;
  margin: 0 calc(50% - 50vw);
  background-color: #E5E8EA;
  z-index: -1;
}
@media only screen and (max-width: 911px) {
  #lineup-other .p-lineup-other-detail .__product > li .__head div.__bg {
    height: 430px;
  }
}
#lineup-other .p-lineup-other-detail .__product > li .__head > h4 {
  position: relative;
  color: #304E60;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 1.5em;
}
#lineup-other .p-lineup-other-detail .__product > li .__head > h4::before {
  content: "";
  position: absolute;
  top: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #304E60;
}
#lineup-other .p-lineup-other-detail .__product > li .__head > p {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.8;
}
@media only screen and (max-width: 911px) {
  #lineup-other .p-lineup-other-detail .__product > li .__head > p {
    text-align: left;
  }
}
#lineup-other .p-lineup-other-detail .__product > li .__body {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 4rem 0rem;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 911px) {
  #lineup-other .p-lineup-other-detail .__product > li .__body {
    gap: 2rem 0rem;
  }
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li {
  width: calc(33.3333333333% - 0.8rem);
  margin-right: 1.2rem;
}
@media only screen and (max-width: 911px) {
  #lineup-other .p-lineup-other-detail .__product > li .__body > li {
    width: 100%;
  }
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li:nth-child(3n) {
  margin-right: 0;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li .__img {
  height: 240px;
  margin-bottom: 1rem;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li .__title {
  color: #304E60;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Hina Mincho", sans-serif;
  min-height: 3em;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li .__ex {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 1.8;
  margin-bottom: 3em;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li ul.__size {
  margin-bottom: 2em;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li ul.__size .__title {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  min-height: 1em;
  letter-spacing: 1px;
  margin-bottom: 0.5em;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li ul.__size .__detail {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  padding-left: 0.5em;
  padding-bottom: 0.5em;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li ul.__country {
  margin-bottom: 1rem;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li ul.__country .__title {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  min-height: 1em;
  letter-spacing: 1px;
  margin-bottom: 1em;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li ul.__country .__detail {
  color: #304E60;
  font-size: 0.8rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  padding-left: 0.5em;
  padding-bottom: 0.5em;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li ul.__country .__detail dl {
  display: flex;
  justify-content: left;
  color: #304E60;
  font-size: 0.7rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li ul.__country .__detail dl dh {
  width: 25%;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li ul.__country .__detail dl dd {
  width: 75%;
  line-height: 1.5;
}
#lineup-other .p-lineup-other-detail .__product > li .__body > li {
  width: calc(50% - 1rem);
  margin: 0;
}
@media only screen and (max-width: 911px) {
  #lineup-other .p-lineup-other-detail .__product > li .__body > li {
    width: 100%;
  }
}
#lineup-other .p-lineup-link {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding: 80px 0;
}
#lineup-other .p-lineup-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
#lineup-other .p-lineup-link > div {
  z-index: 9;
}
#lineup-other .p-lineup-link a {
  position: relative;
  width: fit-content;
  padding: 0.8em 5em 0.8em 1.5em;
  border: 1px solid #304E60;
  border-radius: 32px;
  transition: color 0.4s, background-color 0.4s;
  display: block;
  color: #304E60;
  font-size: 1.1rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  letter-spacing: 2px;
  width: 100%;
}
#lineup-other .p-lineup-link a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-size: 1.5em;
}
#lineup-other .p-lineup-link a:hover {
  color: #fff;
  transition: color 0.4s, border 0.4s;
  background-color: #304E60;
}

#shop .p-shop div.sp > ul > li .__description > h4, #shop .p-shop div.pc .__list .tab_content .tab_content_description > h4 {
  color: #304E60;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Hina Mincho", sans-serif;
  padding-left: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px dotted #304E60;
  margin-bottom: 1em;
}
#shop .p-shop div.sp > ul > li .__description > ul, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul {
  display: flex;
  justify-content: left;
  align-items: start;
  flex-wrap: wrap;
  gap: 4rem 0;
  margin-bottom: 4rem;
}
#shop .p-shop div.sp > ul > li .__description > ul > li, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li {
  width: calc(33.3333333333% - 0.7rem);
  margin-right: 1rem;
}
#shop .p-shop div.sp > ul > li .__description > ul > li:nth-child(3n), #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 911px) {
  #shop .p-shop div.sp > ul > li .__description > ul > li, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li {
    margin-right: 0;
  }
}
#shop .p-shop div.sp > ul > li .__description > ul > li > h4, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li > h4 {
  position: relative;
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  width: fit-content;
  padding: 0 0 0 1.5em;
  margin-bottom: 1em;
}
#shop .p-shop div.sp > ul > li .__description > ul > li > h4::before, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li > h4::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  border-radius: 4px;
  background-color: #304E60;
}
#shop .p-shop div.sp > ul > li .__description > ul > li > address, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li > address {
  color: #304E60;
  font-size: 0.7rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 1em;
}
#shop .p-shop div.sp > ul > li .__description > ul > li > a.__map, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li > a.__map {
  position: relative;
  display: block;
  color: #304E60;
  font-size: 0.7rem;
  font-weight: 200;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
#shop .p-shop div.sp > ul > li .__description > ul > li > a.__map::before, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li > a.__map::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 1.6em;
  background: no-repeat center/cover url(../img/icon-map.svg);
}
#shop .p-shop div.sp > ul > li .__description > ul > li > a.__official, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li > a.__official {
  color: #304E60;
  font-size: 0.65rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #304E60;
  border-radius: 8px;
  padding: 0.4em 2em;
  transition: color 0.4s, background-color 0.4s;
}
#shop .p-shop div.sp > ul > li .__description > ul > li > a.__official:hover, #shop .p-shop div.pc .__list .tab_content .tab_content_description > ul > li > a.__official:hover {
  color: #fff;
  background-color: #304E60;
  transition: color 0.4s, background-color 0.4s;
}

#shop .p-shop > * {
  z-index: 10;
}
#shop .p-shop > div {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
#shop .p-shop .__title {
  color: #304E60;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
  text-align: center;
  margin-bottom: 2em;
}
#shop .p-shop .__title > span {
  display: block;
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 2;
}
#shop .p-shop div.pc .__list {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
#shop .p-shop div.pc .__list > input {
  display: none;
}
#shop .p-shop div.pc .__list > label {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  text-align: center;
  width: calc(33.3333333333% - 2rem);
  padding: 0.8em 0;
  border: 1px solid #304E60;
  border-radius: 32px;
}
#shop .p-shop div.pc .__list > input:checked + .__item {
  color: #fff;
  background-color: #304E60;
}
#shop .p-shop div.pc .__list .tab_content {
  width: 100%;
  padding: 2rem 0 0 0;
}
#shop .p-shop div.sp > ul > li .__description > ul {
  flex-wrap: wrap;
  gap: 1rem;
}
#shop .p-shop div.sp > ul > li .__description > ul > li {
  width: 100%;
}

#question .p-question {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  padding-top: 117px;
}
#question .p-question::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
#question .p-question > * {
  z-index: 10;
}
#question .p-question > div {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
#question .p-question .__title {
  color: #304E60;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
  text-align: center;
  margin-bottom: 2em;
}
#question .p-question .__title > span {
  display: block;
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 2;
}
#question .p-question .__list > dl > dh {
  position: relative;
  display: block;
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  width: 100%;
  padding: 1.5em 1em 1.5em 7em;
  border-radius: 16px;
  margin-bottom: 1rem;
  background-color: #fff;
}
#question .p-question .__list > dl > dh::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0.6em;
  left: 2em;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: "EB Garamond", sans-serif;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background-color: #304E60;
}
#question .p-question .__list > dl > dd {
  position: relative;
  display: block;
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  width: 100%;
  padding: 1.5em 1em 1.5em 7em;
  margin-bottom: 2rem;
}
#question .p-question .__list > dl > dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0.6em;
  left: 2em;
  color: #304E60;
  font-size: 1rem;
  font-weight: 600;
  font-family: "EB Garamond", sans-serif;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: 1px solid #304E60;
}

.l-mailform .smf-item .smf-item__col.smf-item__col--label {
  display: flex;
  justify-content: left;
  align-items: center;
}
.l-mailform .smf-item .smf-item__col .smf-item__label {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.l-mailform .smf-item .smf-item__col .smf-item__description {
  color: #B45858;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 1em;
}
.l-mailform .smf-item .smf-item__col .smf-text-control,
.l-mailform .smf-item .smf-item__col .smf-textarea-control {
  color: #758698;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.l-mailform .smf-item .smf-item__col .smf-checkboxes-control {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.l-mailform .smf-item .smf-item__col .smf-checkboxes-control input {
  width: 1.2em;
  height: 1.2em;
  margin: 0 1em 0 0;
  border-radius: 0;
}
.l-mailform .smf-item.p-privacy-information .smf-item__col .smf-item__controls {
  color: #707070;
  font-size: 0.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #304E60;
  height: 120px;
  padding: 1em;
  overflow-y: scroll;
}
.l-mailform .smf-item.p-privacy-information .smf-item__col .smf-item__controls p {
  margin-bottom: 1em;
}
.l-mailform .smf-item.p-privacy-information .smf-item__col .smf-item__controls dl > dh {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.l-mailform .smf-item.p-privacy-information .smf-item__col .smf-item__controls dl > dd {
  line-height: 1.5;
  margin-left: 1em;
  margin-bottom: 1.5em;
}

.smf-action > .smf-button-control > .smf-button-control__control {
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 32px;
  padding: 1em 6em;
  background-color: #304E60;
  background-image: none;
}

.smf-placeholder,
.smf-complete-content,
.smf-system-error-content {
  color: #758698;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}

.smf-complete-content,
.smf-system-error-content {
  text-align: center;
}

.smf-system-error-content {
  color: red;
}

#privacypolicy .p-privacypolicy > * {
  z-index: 10;
}
#privacypolicy .p-privacypolicy > div {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
#privacypolicy .p-privacypolicy .__title {
  color: #304E60;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
  text-align: center;
  margin-bottom: 2em;
}
#privacypolicy .p-privacypolicy .__title > span {
  display: block;
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  line-height: 2;
}
#privacypolicy .p-privacypolicy .__sub {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  border-bottom: 1px dotted #304E60;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
#privacypolicy .p-privacypolicy .__ex {
  color: #707070;
  font-size: 0.7rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 1em;
}
#privacypolicy .p-privacypolicy .__list > dh {
  color: #707070;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
#privacypolicy .p-privacypolicy .__list > dd {
  color: #707070;
  font-size: 0.7rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  padding-bottom: 1em;
}

/* footer */
footer {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  border-top: 2px solid #B5BDC6;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
footer > div {
  z-index: 10;
}
footer .__head {
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 32px 2%;
  z-index: 99;
}
footer .__head .__logo {
  width: 150px;
  height: 69px;
}
@media only screen and (max-width: 911px) {
  footer .__head .__logo {
    margin-bottom: 2rem;
  }
}
footer .__head .footerNav ul {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-bottom: 1rem;
}
footer .__head .footerNav ul li {
  margin-left: 2em;
}
footer .__head .footerNav ul li a {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Hina Mincho", sans-serif;
  padding-bottom: 1em;
}
@media only screen and (max-width: 911px) {
  footer .__head .footerNav ul li a {
    display: block;
    border-bottom: 1px dotted #B5BDC6;
  }
}
footer .__head .footerNav ul li a.__contact {
  display: inline-block;
  text-align: center;
  display: inline-block;
  color: #304E60;
  padding: 0.5em 2em;
  border: 1px solid #304E60;
  border-radius: 16px;
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  width: 180px;
}
@media only screen and (max-width: 911px) {
  footer .__head .footerNav ul li {
    width: 150px;
    margin-left: 0;
    margin-bottom: 1em;
  }
}
footer .__body {
  padding: 0 2% 60px;
}
footer .__body .footerNav ul {
  display: flex;
  justify-content: right;
}
@media only screen and (max-width: 911px) {
  footer .__body .footerNav ul {
    display: block;
  }
}
footer .__body .footerNav ul li {
  margin-left: 2em;
}
@media only screen and (max-width: 911px) {
  footer .__body .footerNav ul li {
    margin-left: 0;
  }
}
footer .__body .footerNav ul li a {
  color: #304E60;
  font-size: 0.6rem;
  font-weight: 500;
  font-family: "Hina Mincho", sans-serif;
}
@media only screen and (max-width: 911px) {
  footer .__body .footerNav ul li a {
    display: block;
    padding: 1em 0;
  }
}
@media only screen and (max-width: 911px) {
  footer .__body {
    padding-bottom: 32px;
  }
}
footer .__foot {
  padding: 0 2% 1em;
}
footer .__foot p {
  text-align: center;
  color: #758698;
  font-size: 0.6rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
}
@media only screen and (max-width: 911px) {
  footer .__head {
    display: block;
  }
  footer .__head .footerNav > ul {
    display: block;
  }
  footer .__head .footerNav > ul > li {
    padding: 0;
  }
}

.p-footer-plus {
  position: relative;
  background: no-repeat center/cover url(../img/bg-01.jpg);
  overflow-x: hidden;
}
.p-footer-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  background-color: rgba(242, 242, 240, 0.9);
  z-index: 1;
}
.p-footer-plus > div {
  z-index: 10;
}
.p-footer-plus .__head {
  position: relative;
}
.p-footer-plus .__head::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  background-color: #E5E8EA;
  z-index: -1;
}
.p-footer-plus .__head .footerNav > ul, .p-footer-plus .__body .footerNav > ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-footer-plus .__head .footerNav > ul > li, .p-footer-plus .__body .footerNav > ul > li {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 50%;
}
@media only screen and (max-width: 911px) {
  .p-footer-plus .__head .footerNav > ul > li, .p-footer-plus .__body .footerNav > ul > li {
    width: 100%;
  }
}
.p-footer-plus .__head .footerNav > ul > li .__inner, .p-footer-plus .__body .footerNav > ul > li .__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  padding: 12% 0;
}
.p-footer-plus .__head .footerNav > ul > li .__inner > *, .p-footer-plus .__body .footerNav > ul > li .__inner > * {
  width: 100%;
}
.p-footer-plus .__head .footerNav > ul > li .__inner h4, .p-footer-plus .__body .footerNav > ul > li .__inner h4 {
  color: #304E60;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
  margin-bottom: 1.5em;
}
.p-footer-plus .__head .footerNav > ul > li .__inner .__desc, .p-footer-plus .__body .footerNav > ul > li .__inner .__desc {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 2.5;
  margin-bottom: 3em;
}
@media only screen and (max-width: 911px) {
  .p-footer-plus .__head .footerNav > ul > li .__inner .__desc, .p-footer-plus .__body .footerNav > ul > li .__inner .__desc {
    letter-spacing: 0;
  }
}
.p-footer-plus .__head .footerNav > ul > li.__1, .p-footer-plus .__body .footerNav > ul > li.__1 {
  order: 1;
}
@media only screen and (max-width: 911px) {
  .p-footer-plus .__head .footerNav > ul > li.__1, .p-footer-plus .__body .footerNav > ul > li.__1 {
    border-bottom: 1px solid rgba(48, 78, 96, 0.2);
  }
}
.p-footer-plus .__head .footerNav > ul > li.__2, .p-footer-plus .__body .footerNav > ul > li.__2 {
  order: 2;
}
.p-footer-plus .__head .footerNav > ul > li.__1, .p-footer-plus .__head .footerNav > ul > li.__2, .p-footer-plus .__body .footerNav > ul > li.__1, .p-footer-plus .__body .footerNav > ul > li.__2 {
  order: 2;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link, .p-footer-plus .__head .footerNav > ul > li.__2 a.__link, .p-footer-plus .__body .footerNav > ul > li.__1 a.__link, .p-footer-plus .__body .footerNav > ul > li.__2 a.__link {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.5em 2em 0.5em 1em;
  width: fit-content;
  margin: 0 auto;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link::before, .p-footer-plus .__head .footerNav > ul > li.__2 a.__link::before, .p-footer-plus .__body .footerNav > ul > li.__1 a.__link::before, .p-footer-plus .__body .footerNav > ul > li.__2 a.__link::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 3em;
  height: 2em;
  border: 1px solid #304E60;
  border-radius: 32px;
  transition: width 350ms;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link > span:nth-child(1), .p-footer-plus .__head .footerNav > ul > li.__1 a.__link > span:nth-child(2), .p-footer-plus .__head .footerNav > ul > li.__2 a.__link > span:nth-child(1), .p-footer-plus .__head .footerNav > ul > li.__2 a.__link > span:nth-child(2), .p-footer-plus .__body .footerNav > ul > li.__1 a.__link > span:nth-child(1), .p-footer-plus .__body .footerNav > ul > li.__1 a.__link > span:nth-child(2), .p-footer-plus .__body .footerNav > ul > li.__2 a.__link > span:nth-child(1), .p-footer-plus .__body .footerNav > ul > li.__2 a.__link > span:nth-child(2) {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "Hina Mincho", sans-serif;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link > span:nth-child(1), .p-footer-plus .__head .footerNav > ul > li.__2 a.__link > span:nth-child(1), .p-footer-plus .__body .footerNav > ul > li.__1 a.__link > span:nth-child(1), .p-footer-plus .__body .footerNav > ul > li.__2 a.__link > span:nth-child(1) {
  position: relative;
  width: 1.4em;
  height: 1em;
  overflow: hidden;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link > span:nth-child(1)::before, .p-footer-plus .__head .footerNav > ul > li.__1 a.__link > span:nth-child(1)::after, .p-footer-plus .__head .footerNav > ul > li.__2 a.__link > span:nth-child(1)::before, .p-footer-plus .__head .footerNav > ul > li.__2 a.__link > span:nth-child(1)::after, .p-footer-plus .__body .footerNav > ul > li.__1 a.__link > span:nth-child(1)::before, .p-footer-plus .__body .footerNav > ul > li.__1 a.__link > span:nth-child(1)::after, .p-footer-plus .__body .footerNav > ul > li.__2 a.__link > span:nth-child(1)::before, .p-footer-plus .__body .footerNav > ul > li.__2 a.__link > span:nth-child(1)::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 1.4em;
  height: auto;
  transition: left 0.4s;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link > span:nth-child(1)::before, .p-footer-plus .__head .footerNav > ul > li.__2 a.__link > span:nth-child(1)::before, .p-footer-plus .__body .footerNav > ul > li.__1 a.__link > span:nth-child(1)::before, .p-footer-plus .__body .footerNav > ul > li.__2 a.__link > span:nth-child(1)::before {
  left: -1.5em;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link > span:nth-child(1)::after, .p-footer-plus .__head .footerNav > ul > li.__2 a.__link > span:nth-child(1)::after, .p-footer-plus .__body .footerNav > ul > li.__1 a.__link > span:nth-child(1)::after, .p-footer-plus .__body .footerNav > ul > li.__2 a.__link > span:nth-child(1)::after {
  left: 0;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link > span:nth-child(2), .p-footer-plus .__head .footerNav > ul > li.__2 a.__link > span:nth-child(2), .p-footer-plus .__body .footerNav > ul > li.__1 a.__link > span:nth-child(2), .p-footer-plus .__body .footerNav > ul > li.__2 a.__link > span:nth-child(2) {
  margin-left: 2em;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link:hover::before, .p-footer-plus .__head .footerNav > ul > li.__2 a.__link:hover::before, .p-footer-plus .__body .footerNav > ul > li.__1 a.__link:hover::before, .p-footer-plus .__body .footerNav > ul > li.__2 a.__link:hover::before {
  width: 100%;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link:hover > span:nth-child(1)::before, .p-footer-plus .__head .footerNav > ul > li.__2 a.__link:hover > span:nth-child(1)::before, .p-footer-plus .__body .footerNav > ul > li.__1 a.__link:hover > span:nth-child(1)::before, .p-footer-plus .__body .footerNav > ul > li.__2 a.__link:hover > span:nth-child(1)::before {
  left: 0;
  transition: left 0.4s;
}
.p-footer-plus .__head .footerNav > ul > li.__1 a.__link:hover > span:nth-child(1)::after, .p-footer-plus .__head .footerNav > ul > li.__2 a.__link:hover > span:nth-child(1)::after, .p-footer-plus .__body .footerNav > ul > li.__1 a.__link:hover > span:nth-child(1)::after, .p-footer-plus .__body .footerNav > ul > li.__2 a.__link:hover > span:nth-child(1)::after {
  left: 2em;
  transition: left 0.4s;
}
.p-footer-plus .__head .footerNav > ul > li.__3, .p-footer-plus .__body .footerNav > ul > li.__3 {
  flex-wrap: wrap;
  width: 100%;
  order: 3;
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div, .p-footer-plus .__body .footerNav > ul > li.__3 > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__l, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__l {
  height: 512px;
}
@media only screen and (max-width: 911px) {
  .p-footer-plus .__head .footerNav > ul > li.__3 > div.__l, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__l {
    width: 100%;
    height: 360px;
  }
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__l > h4, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__l > h4 {
  color: #304E60;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "EB Garamond", sans-serif;
  text-align: left;
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 911px) {
  .p-footer-plus .__head .footerNav > ul > li.__3 > div.__l > h4, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__l > h4 {
    text-align: center;
  }
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__l > h5, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__l > h5 {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  text-align: left;
  margin-bottom: 2em;
}
@media only screen and (max-width: 911px) {
  .p-footer-plus .__head .footerNav > ul > li.__3 > div.__l > h5, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__l > h5 {
    text-align: center;
  }
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__l > p, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__l > p {
  color: #304E60;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Hina Mincho", sans-serif;
  letter-spacing: 1px;
  line-height: 2.5;
  text-align: left;
  margin-bottom: 3em;
}
@media only screen and (max-width: 911px) {
  .p-footer-plus .__head .footerNav > ul > li.__3 > div.__l > p, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__l > p {
    margin-bottom: 1em;
  }
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__r, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__r {
  height: 512px;
}
@media only screen and (max-width: 911px) {
  .p-footer-plus .__head .footerNav > ul > li.__3 > div.__r, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__r {
    width: 100%;
    height: auto;
    padding: 0 0 4rem;
  }
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__r > p:nth-child(1), .p-footer-plus .__body .footerNav > ul > li.__3 > div.__r > p:nth-child(1) {
  color: #304E60;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  margin-bottom: 0.5em;
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__r > p:nth-child(2), .p-footer-plus .__body .footerNav > ul > li.__3 > div.__r > p:nth-child(2) {
  color: #304E60;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "EB Garamond", sans-serif;
  margin-bottom: 1em;
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__r > a, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__r > a {
  color: #304E60;
  font-size: 0.85rem;
  font-weight: 200;
  font-family: "Hina Mincho", sans-serif;
  position: relative;
  width: fit-content;
  padding: 0.8em 5em 0.8em 1.5em;
  border: 1px solid #304E60;
  border-radius: 32px;
  transition: color 0.4s, background-color 0.4s;
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__r > a::after, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__r > a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-size: 1.5em;
}
.p-footer-plus .__head .footerNav > ul > li.__3 > div.__r > a:hover, .p-footer-plus .__body .footerNav > ul > li.__3 > div.__r > a:hover {
  color: #fff;
  transition: color 0.4s, border 0.4s;
  background-color: #304E60;
}

#p404 {
  background-color: #304E60;
}
#p404 .__main {
  text-align: center;
  width: 90vw;
  height: 100vh;
  padding: 8rem 0;
  margin: 0 auto;
}
#p404 .__main > * {
  margin-bottom: 2rem;
}
#p404 .__main .__title {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 600;
  font-family: sans-serif;
}
@media only screen and (max-width: 911px) {
  #p404 .__main .__title {
    font-size: 1.8rem;
  }
}
#p404 .__main .__link {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: sans-serif;
  text-decoration: underline;
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
}
.anime-zd {
  -webkit-animation: ZoomDown 10s linear;
  animation: ZoomDown 10s linear;
  overflow: hidden;
}

@keyframes ZoomDown {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@-webkit-keyframes ZoomDown {
  from {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ZoomDown {
  from {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 2rem;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  width: 3rem;
  height: 3rem;
  z-index: 999;
}
#page-top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #304E60;
  font-family: "DIN 2014", sans-serif;
  text-align: center;
  text-decoration: none;
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 0.9;
  width: 100%;
  height: 100%;
  border: 0.1rem solid #304E60;
  border-radius: 50%;
  /* width: -moz-fit-content; */
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0 0 auto;
  background-color: #fff;
}
#page-top a:hover {
  color: #fff;
  background-color: #304E60;
}
#page-top a::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.1rem solid #304E60;
  border-left: 0.1rem solid #304E60;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#page-top a:hover::before {
  border-top: 0.18rem solid #fff;
  border-left: 0.18rem solid #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*
 *
 */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 20px;
  font-family: "EB Garamond", serif;
  /* overflow-x: hidden; */
}
@media only screen and (max-width: 1439px) {
  html {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  html {
    font-size: 14px;
  }
}
@media only screen and (max-width: 733px) {
  html {
    font-size: 12px;
  }
}
@media only screen and (max-width: 911px) {
  html {
    font-size: 20px;
  }
}

.pc {
  display: block;
}
@media only screen and (max-width: 1439px) {
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
}
@media only screen and (max-width: 733px) {
  .pc {
    display: none;
  }
}
@media only screen and (max-width: 911px) {
  .pc {
    display: none;
  }
}

.tl {
  display: none;
}
@media only screen and (max-width: 1439px) {
  .tl {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .tl {
    display: block;
  }
}
@media only screen and (max-width: 733px) {
  .tl {
    display: block;
  }
}
@media only screen and (max-width: 911px) {
  .tl {
    display: none;
  }
}

.pctl {
  display: block;
}
@media only screen and (max-width: 1439px) {
  .pctl {
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  .pctl {
    display: block;
  }
}
@media only screen and (max-width: 733px) {
  .pctl {
    display: block;
  }
}
@media only screen and (max-width: 911px) {
  .pctl {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 1439px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 733px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 911px) {
  .sp {
    display: block;
  }
}

.container {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 72rem;
  min-width: 51.2rem;
  padding: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 911px) {
  .container {
    max-width: 375px;
    min-width: 375px;
    padding: 0 1rem;
  }
}

.container-s {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 51.2rem;
  min-width: 36.7rem;
  padding: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 911px) {
  .container-s {
    max-width: 375px;
    min-width: 375px;
    padding: 0 1rem;
  }
}

.container-ss {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 36.7rem;
  min-width: 18.75rem;
  padding: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 911px) {
  .container-ss {
    max-width: 375px;
    min-width: 375px;
    padding: 0 1rem;
  }
}

.ta-c {
  text-align: center;
}

.w-100px {
  width: 100px;
}

.w-100pc {
  width: 100%;
}

.m-0a {
  margin: 0 auto;
}

.fw-b {
  font-weight: bold;
}

.fw-6 {
  font-weight: 600;
}

.fs-15em {
  font-size: 1.5em;
}

.fs-2em {
  font-size: 2em;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-1e {
  margin-bottom: 1em;
}

.mb-2e {
  margin-bottom: 2em;
}

.mb-1r {
  margin-bottom: 1rem;
}

.mb-2r {
  margin-bottom: 2rem;
}

.wp-pw {
  white-space: pre-wrap;
}

.width-max {
  width: 100vw;
  height: auto;
  margin: 0 calc(50% - 50vw);
}

::-moz-selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
img::-moz-selection {
  color: #fff;
  background: transparent;
}
img::selection {
  color: #fff;
  background: transparent;
}

hr.__white {
  color: #fff;
}

.outlink {
  position: relative;
}
.outlink::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: no-repeat center/contain url("../img/icon-arrow-04.svg");
}

blockquote {
  font-style: italic;
  color: #868e96;
}

/*# sourceMappingURL=style.css.map */
