@charset "UTF-8";
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
  outline: none;
  background: #fff;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
  background: #b93d0c;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:before,
.modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  -ms-transform: scale(0.25);
  transform: scale(0.25);
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .12s;
  animation-delay: .12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .37s;
  animation-delay: .37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .62s;
  animation-delay: .62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .87s;
  animation-delay: .87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}

@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before,
  .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}

@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}

@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}

@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}

@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}

@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  margin: 0;
  padding: 0;
}

/* change colors to suit your needs */
ins {
  color: #000;
  background-color: #eee;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  color: #000;
  background-color: #eee;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
}

input, select {
  vertical-align: middle;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

@media screen and (max-width: 420px) {
  .disp-pc {
    display: none;
  }
}

.disp-sp {
  display: none;
}

@media screen and (max-width: 420px) {
  .disp-sp {
    display: block;
  }
}

.roman {
  font-family: Meiryo, Mincho, serif;
}

.unit {
  display: inline-block;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP Bold";
  font-style: normal;
  src: url("../fonts/NotoSansJP-Bold.woff") format("woff");
}

/* ------------------------------------------
  BASIC STYLES
--------------------------------------------- */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body, header, footer, nav,
article, section, address, aside, figure, div,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, dl, dt, dd, ol, ul, li, hr, img,
fieldset, legend, form, label,
th, td,
menu, details, summary {
  padding: 0;
  border: 0;
  margin: 0;
}

html {
  font-size: 18px;
}

@media all and (max-width: 768px) {
  html {
    font-size: 4.42708vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  html {
    font-size: 18px;
  }
}

body {
  color: #333;
  background-color: #fff;
  background-attachment: fixed;
  background-size: cover;
  font-weight: 300;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Sans-Serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-align: left;
  line-height: 1.6;
  /* line-heightでは単位を記載しない（px指定は例外） */
}

sup {
  font-size: 70%;
  vertical-align: top;
  top: -0.1em;
  position: relative;
}

sub {
  font-size: 70%;
  vertical-align: top;
  bottom: -1em;
  position: relative;
}

img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: bold;
  font-weight: 600;
  font-family: "Noto Sans JP Bold";
}

.inline {
  display: inline-block;
}

.color {
  color: #900051;
}

.mb30 {
  margin-bottom: 30px !important;
}

@media all and (max-width: 1200px) {
  .mb30 {
    margin-bottom: 2.5vw !important;
  }
}

@media all and (max-width: 768px) {
  .mb30 {
    margin-bottom: 7.8125vw !important;
  }
}

/* ------------------------------------------
  WRAPPER
--------------------------------------------- */
#wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 12;
  overflow-x: hidden;
}

.pc {
  display: block;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media all and (max-width: 768px) {
  .sp {
    display: block;
    height: 100%;
    object-fit: contain;
  }
}

/* ------------------------------------------
  HEADER
--------------------------------------------- */
header {
  /* height: 380px; */
  background: #e3dbd1;
  background: linear-gradient(90deg, #e3dbd1 25%, white 50%, #e3dbd1 75%);
  position: relative;
  overflow: visible;
}

@media all and (max-width: 1200px) {
  header {
    /* height: 380px; */
    height: auto;
  }
}

@media all and (max-width: 768px) {
  header {
    height: 210px;
    overflow: visible;
    z-index: 2;
  }
}

header h1 {
  width: 400px;
  position: absolute;
  top: 0;
  left: 0;
}

@media all and (max-width: 1200px) {
  header h1 {
    width: 33.33333vw;
  }
}

@media all and (max-width: 768px) {
  header h1 {
    z-index: 3;
  }
}

@media all and (max-width: 768px) {
  header h1 img {
    width: 37.76042vw;
  }
}

header .box_kv {
  margin: 0 auto;
  align-items: flex-end;
  display: flex;
  justify-content: center;
  height: 100%;
}
header .box_kv .photo.pc {
    /* width: auto; */
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media all and (max-width: 768px) {
  header .box_kv {
    height: 210px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }
}

header .box_ctr {
  width: 455px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 1200px) {
  header .box_ctr {
    width: 37.91667vw;
    margin-top: 3.33333vw;
  }
}

@media all and (max-width: 768px) {
  header .box_ctr {
    width: 58.07292vw;
    margin-top: 13.02083vw;
  }
}

header .box_lft,
header .box_rgt {
  width: 325px;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

@media all and (max-width: 1200px) {
  header .box_lft,
  header .box_rgt {
    width: 27.08333vw;
  }
}

@media all and (max-width: 768px) {
  header .box_lft,
  header .box_rgt {
    bottom: 0;
  }
}

header .box_lft .note,
header .box_rgt .note {
  width: 325px;
  padding-left: 0;
  text-indent: 0;
  position: absolute;
  bottom: -20px;
  left: 165px;
  margin-bottom: 0;
  font-size: 12px;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

@media all and (max-width: 1200px) {
  header .box_lft .note,
  header .box_rgt .note {
    width: 27.08333vw;
    left: 13.75vw;
    font-size: 1vw;
  }
}

@media all and (max-width: 768px) {
  header .box_lft .note,
  header .box_rgt .note {
    width: 36.71875vw;
    font-size: 1.5625vw;
    left: auto;
    right: 0;
    display: block;
    bottom: -3vw;
  }
}

header .box_lft .prf,
header .box_rgt .prf {
  position: absolute;
  bottom: 20px;
}

@media all and (max-width: 1200px) {
  header .box_lft .prf,
  header .box_rgt .prf {
    bottom: 1.66667vw;
  }
}

@media all and (max-width: 768px) {
  header .box_lft .prf,
  header .box_rgt .prf {
    width: 47.52604vw;
    bottom: -10.41667vw;
  }
}

@media all and (max-width: 768px) {
  header .box_lft .photo,
  header .box_rgt .photo {
    width: 39.0625vw;
    position: absolute;
    bottom: 9.89583vw;
  }
}

header .box_lft {
  margin-right: 640px;
}

@media all and (max-width: 1200px) {
  header .box_lft {
    margin-right: 53.33333vw;
  }
}

@media all and (max-width: 768px) {
  header .box_lft {
    margin-right: auto;
    left: 0;
  }
}

@media all and (max-width: 768px) {
  header .box_lft .photo {
    left: 5.20833vw;
  }
}

header .box_lft .prf {
  width: 582px;
  right: 70px;
}

@media all and (max-width: 1200px) {
  header .box_lft .prf {
    width: 48.5vw;
    right: 5.83333vw;
  }
}

@media all and (max-width: 768px) {
  header .box_lft .prf {
    width: 47.39583vw;
    right: auto;
    left: 0;
  }
}

header .box_rgt {
  margin-left: 640px;
}

@media all and (max-width: 1200px) {
  header .box_rgt {
    margin-left: 53.33333vw;
  }
}

@media all and (max-width: 768px) {
  header .box_rgt {
    margin-left: auto;
    right: 0;
  }
}

@media all and (max-width: 768px) {
  header .box_rgt .photo {
    right: 5.20833vw;
  }
}

header .box_rgt .prf {
  width: 592px;
  left: 70px;
}

@media all and (max-width: 1200px) {
  header .box_rgt .prf {
    width: 49.33333vw;
    left: 5.83333vw;
  }
}

@media all and (max-width: 768px) {
  header .box_rgt .prf {
    width: 47.39583vw;
    left: auto;
    right: 0;
  }
}

/* ------------------------------------------
  MAIN
--------------------------------------------- */
#top {
  padding-top: 0px;
  margin-top: 0px;
}

article, section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

article > div {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
}

article > div > section,
article > div > div,
article > div > aside {
  position: relative;
  padding: 0;
  margin: 0 auto;
  z-index: 160;
}

p {
  text-align: left;
  margin-bottom: 1em;
}

small {
  font-size: 0.8rem;
}

img {
  display: block;
  width: 100%;
}

strong {
  color: #000;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
}

iframe {
  width: 100%;
  height: 60vh;
  border: none;
  margin-bottom: 12px;
}

/* link */
a:link, a:visited, .btn:link, .btn:visited {
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}

a:hover, a:active, .btn:hover, .btn:active {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}

/* list */
ol, ul, dl {
  line-height: 1.6;
  margin: 0 1.0rem 24px;
}

ol, ul {
  margin-left: 1.0rem;
}

ul > li {
  list-style-type: disc;
}

ul > li > ul {
  margin-top: 4px;
}

ul > li > ul > li {
  list-style-type: circle;
  margin-bottom: 4px;
}

ol > li {
  list-style-type: decimal;
}

li {
  margin-bottom: 12px;
  margin-left: 1.0rem;
}

@media all and (max-width: 1200px) {
  li {
    margin-bottom: 1vw;
  }
}

li > ol,
li > ul {
  margin: 0;
}

li, dt, dd {
  padding: 0;
  margin: 0;
}

hr {
  margin: 1.0rem 0;
  border-bottom: solid 1px #888;
}

/* flex */
.flex, .flex_alt, .flex_re {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.flex, .flex_alt {
  flex-direction: row;
}

.flex_re {
  flex-direction: row-reverse;
}

.flex, .flex_re {
  flex-wrap: wrap;
}

.flex_alt {
  flex-wrap: nowrap;
}

/* ------------------------------------------
  見出し
--------------------------------------------- */
h2.h_tit {
  margin-bottom: 30px;
  padding-bottom: 20px;
  background-position: bottom center;
  background-image: url(../img/volume5/h2_bg.png);
  background-size: 100% 6px;
  background-repeat: no-repeat;
  color: #900051;
  font-size: 20px;
}

@media all and (max-width: 1200px) {
  h2.h_tit {
    margin-bottom: 2.5vw;
    padding-bottom: 1.66667vw;
    background-size: 100% 0.5vw;
    font-size: 1.66667vw;
  }
}

@media all and (max-width: 768px) {
  h2.h_tit {
    margin-bottom: 3.90625vw;
    background-image: url(../img/volume5/h2_bg_sp.png);
    background-size: 100% 0.78125vw;
    font-size: 5.20833vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  h2.h_tit {
    font-size: 20px;
  }
}

h3.h_tit {
  width: 100%;
  height: 150px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

@media all and (max-width: 1200px) {
  h3.h_tit {
    height: 15.83333vw;
  }
}

@media all and (max-width: 768px) {
  h3.h_tit {
    height: 24.73958vw;
  }
}

#sec1 h3.h_tit {
  background-position: center;
  background-image: url(/-/media/Koselugo_jp/Images/hcp/rwe/volume6/h2_01_pc.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
}

@media all and (max-width: 768px) {
  #sec1 h3.h_tit {
    background-image: url(/-/media/Koselugo_jp/Images/hcp/rwe/volume6/h2_01_sp.png);
    background-size: contain;
  }
}

#sec2 h3.h_tit {
  background-position: center;
  background-image: url(/-/media/Koselugo_jp/Images/hcp/rwe/volume6/h2_02_pc.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
}

@media all and (max-width: 768px) {
  #sec2 h3.h_tit {
    background-image: url(/-/media/Koselugo_jp/Images/hcp/rwe/volume6/h2_02_sp.png);
  }
}

#sec3 h3.h_tit {
  height: 93px;
  background-position: center;
  background-image: url(/-/media/Koselugo_jp/Images/hcp/rwe/volume6/h2_03_pc.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
}

@media all and (max-width: 768px) {
  #sec3 h3.h_tit {
    height: 16vw;
    background-image: url(/-/media/Koselugo_jp/Images/hcp/rwe/volume6/h2_03_sp.png);
  }
}

h4.h_tit {
  margin-bottom: 35px;
  padding: 5px 15px;
  background: #900051;
  color: #fff;
  display: inline-block;
  font-size: 20px;
}

@media all and (max-width: 1200px) {
  h4.h_tit {
    margin-bottom: 2.91667vw;
    padding: 0.41667vw 1.25vw;
    font-size: 1.66667vw;
  }
}

@media all and (max-width: 768px) {
  h4.h_tit {
    margin-bottom: 4.55729vw;
    padding: 0.65104vw 1.95312vw;
    font-size: 5.20833vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  h4.h_tit {
    font-size: 20px;
  }
}

h4.h_sub {
  margin: 0 auto 30px;
  text-align: center;
}

@media all and (max-width: 1200px) {
  h4.h_sub {
    margin: 0 auto 2.5vw;
  }
}

@media all and (max-width: 768px) {
  h4.h_sub {
    margin: 0 auto 3.90625vw;
  }
}

h4.h_sub span {
  padding: 2px 10px;
  border-radius: 10px;
  border: solid 2px #900051;
  color: #900051;
  display: inline-block;
  font-size: 20px;
  text-align: center;
}

@media all and (max-width: 1200px) {
  h4.h_sub span {
    padding: 0.16667vw 0.83333vw;
    border-radius: 0.83333vw;
    font-size: 1.66667vw;
  }
}

@media all and (max-width: 768px) {
  h4.h_sub span {
    padding: 0.26042vw 1.30208vw;
    border-radius: 1.30208vw;
    font-size: 3.64583vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  h4.h_sub span {
    font-size: 20px;
  }
}

h4.h_color {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: dotted 4px #900051;
  color: #900051;
  font-size: 20px;
  text-align: center;
}

@media all and (max-width: 1200px) {
  h4.h_color {
    margin-bottom: 1.16667vw;
    padding-bottom: 1.16667vw;
    border-bottom: dotted 0.33333vw #900051;
    font-size: 1.66667vw;
  }
}

@media all and (max-width: 768px) {
  h4.h_color {
    margin-bottom: 1.82292vw;
    padding-bottom: 1.82292vw;
    border-bottom: dotted 0.52083vw #900051;
    font-size: 5.20833vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  h4.h_color {
    font-size: 20px;
  }
}

h4.h_color > span {
  position: relative;
}

h4.h_color > span:before {
  width: 36px;
  height: 36px;
  background-image: url(../img/volume5/btn_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  left: -40px;
}

@media all and (max-width: 1200px) {
  h4.h_color > span:before {
    width: 3vw;
    height: 3vw;
    left: -3.33333vw;
  }
}

@media all and (max-width: 768px) {
  h4.h_color > span:before {
    width: 4.6875vw;
    height: 4.6875vw;
    left: -5.20833vw;
    top: 1.5625vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  h4.h_color > span:before {
    top: 0;
  }
}

h5.h_tit {
  margin-bottom: 20px;
  padding: 2px 15px;
  background: #E8D7DA;
  border: solid 2px #900051;
  color: #900051;
  display: inline-block;
  font-size: 18px;
}

@media all and (max-width: 1200px) {
  h5.h_tit {
    margin-bottom: 1.66667vw;
    padding: 0.16667vw 1.25vw;
    border: solid 0.16667vw #900051;
    font-size: 1.5vw;
  }
}

@media all and (max-width: 768px) {
  h5.h_tit {
    margin-bottom: 2.60417vw;
    padding: 0.26042vw 1.95312vw;
    border: solid 0.26042vw #900051;
    font-size: 4.6875vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  h5.h_tit {
    font-size: 18px;
  }
}

h5.h_sub {
  margin-bottom: 10px;
  color: #900051;
  font-size: 17px;
}

@media all and (max-width: 1200px) {
  h5.h_sub {
    margin-bottom: 0.83333vw;
    font-size: 1.41667vw;
  }
}

@media all and (max-width: 768px) {
  h5.h_sub {
    margin-bottom: 1.30208vw;
    font-size: 4.42708vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  h5.h_sub {
    font-size: 17px;
  }
}

h6.h_chip {
  height: 39px;
  margin-bottom: 10px;
}

@media all and (max-width: 768px) {
  h6.h_chip {
    height: 24px;
  }
}

h6.h_chip img {
  height: 100%;
  width: auto;
}

/* ------------------------------------------
  共通
--------------------------------------------- */
main {
  background-image: url(../img/volume5/bg_02.png), url(../img/volume5/bg_01.png);
  background-repeat: no-repeat;
  background-position: top -230px center, top 1700px center;
  background-size: 1450px auto, 1450px 120%;
}

@media all and (max-width: 1200px) {
  main {
    background-position: top -19.16667vw center, top 141.66667vw center;
    background-size: 120.83333vw auto, 120.83333vw 120%;
  }
}

@media all and (max-width: 768px) {
  main {
    background-position: top -19.16667vw center, top 0 center;
    background-size: 120.83333vw auto, 136.71875vw 120%;
    position: relative;
    z-index: 1;
  }
}

main .wrap_cnt {
  width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}

@media all and (max-width: 1200px) {
  main .wrap_cnt {
    width: 66.66667vw;
  }
}

@media all and (max-width: 768px) {
  main .wrap_cnt {
    width: 84.63542vw;
  }
}

main .wrap_cnt section {
  width: 680px;
  margin: 0 auto;
}

@media all and (max-width: 1200px) {
  main .wrap_cnt section {
    width: 56.66667vw;
  }
}

@media all and (max-width: 768px) {
  main .wrap_cnt section {
    width: 79.16667vw;
  }
}

#lede .box_txt {
  padding-top: 0;
}

#lede .wrap_cnt {
  padding: 70px 0;
  font-size: 18px;
}

@media all and (max-width: 1200px) {
  #lede .wrap_cnt {
    padding: 5.83333vw 0;
    font-size: 1.5vw;
  }
}

@media all and (max-width: 768px) {
  #lede .wrap_cnt {
    padding: 19.53125vw 0;
    font-size: 4.6875vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  #lede .wrap_cnt {
    font-size: 18px;
  }
}

#lede .note {
  text-align: right;
}

.box_lede {
  border: solid 2px #900051;
  border-radius: 10px;
}

@media all and (max-width: 1200px) {
  .box_lede {
    border-radius: 0.83333vw;
  }
}

@media all and (max-width: 768px) {
  .box_lede {
    border-radius: 2.60417vw;
  }
}

.box_lede.close {
  margin-top: 50px;
}

@media all and (max-width: 1200px) {
  .box_lede.close {
    margin-top: 4.16667vw;
  }
}

@media all and (max-width: 768px) {
  .box_lede.close {
    margin-top: 13.02083vw;
  }
}

.box_lede.close .list_slide {
  max-width: 685px;
}

.box_lede h3 {
  padding: 5px 0;
  background: #900051;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 23px;
  text-align: center;
}

@media all and (max-width: 1200px) {
  .box_lede h3 {
    border-radius: 0.41667vw 0.41667vw 0 0;
  }
}

@media all and (max-width: 768px) {
  .box_lede h3 {
    padding: 1.30208vw 0;
    border-radius: 1.30208vw 0.83333vw 0 0;
    font-size: 5.98958vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  .box_lede h3 {
    font-size: 23px;
  }
}

.box_lede .box_inner {
  padding: 20px;
}

@media all and (max-width: 1200px) {
  .box_lede .box_inner {
    padding: 1.66667vw;
  }
}

@media all and (max-width: 768px) {
  .box_lede .box_inner {
    padding: 5.20833vw;
  }
}

.box_lede .list_slide:last-of-type {
  margin-bottom: 0;
}

.box_lede .list_disc {
  margin: 0;
  margin-bottom: 1em;
  list-style-type: none;
  padding-left: 0;
}

.box_lede .list_disc li {
  padding-left: 23px;
  list-style-type: none;
  position: relative;
}

@media all and (max-width: 1200px) {
  .box_lede .list_disc li {
    padding-left: 1.91667vw;
  }
}

@media all and (max-width: 768px) {
  .box_lede .list_disc li {
    padding-left: 5.98958vw;
  }
}

.box_lede .list_disc li:before {
  width: 18px;
  height: 18px;
  background: #900051;
  border-radius: 100px;
  content: "";
  display: block;
  position: absolute;
  top: .4em;
  left: 0;
}

@media all and (max-width: 1200px) {
  .box_lede .list_disc li:before {
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 8.33333vw;
  }
}

@media all and (max-width: 768px) {
  .box_lede .list_disc li:before {
    width: 4.6875vw;
    height: 4.6875vw;
    border-radius: 13.02083vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  .box_lede .list_disc li:before {
    width: 18px;
    height: 18px;
  }
}

#sec1 .wrap_cnt {
  padding-bottom: 90px;
}

@media all and (max-width: 1200px) {
  #sec1 .wrap_cnt {
    padding-bottom: 7.5vw;
  }
}

@media all and (max-width: 768px) {
  #sec1 .wrap_cnt {
    padding-bottom: 11.71875vw;
  }
}

#sec2 {
  margin-top: -48px;
  padding-top: 48px;
}

#sec2 .wrap_cnt {
  padding-bottom: 90px;
}

@media all and (max-width: 1200px) {
  #sec2 .wrap_cnt {
    padding-bottom: 7.5vw;
  }
}

@media all and (max-width: 768px) {
  #sec2 .wrap_cnt {
    padding-bottom: 11.71875vw;
  }
}

#sec3 {
  margin-top: -48px;
  padding-top: 48px;
}

#sec3 .wrap_cnt {
  padding-bottom: 90px;
}

@media all and (max-width: 1200px) {
  #sec3 .wrap_cnt {
    padding-bottom: 7.5vw;
  }
}

@media all and (max-width: 768px) {
  #sec3 .wrap_cnt {
    padding-bottom: 11.71875vw;
  }
}

.box_txt {
  padding-top: 40px;
}

@media all and (max-width: 1200px) {
  .box_txt {
    padding-top: 3.33333vw;
  }
}

@media all and (max-width: 768px) {
  .box_txt {
    padding-top: 5.20833vw;
  }
}

.box_color {
  margin-top: 60px;
  padding: 35px;
  background: #DFE7F4;
  border-radius: 20px;
}

@media all and (max-width: 1200px) {
  .box_color {
    margin-top: 5vw;
    padding: 2.91667vw;
    border-radius: 1.66667vw;
  }
}

@media all and (max-width: 768px) {
  .box_color {
    margin-top: 7.8125vw;
    padding: 4.55729vw;
    border-radius: 2.60417vw;
  }
}

.box_border {
  padding: 20px;
  border: solid 1px #000;
  border: solid 1px #000;
  margin: 20px 0;
}

.box_border ul:last-child {
  margin-bottom: 0;
}

.box_border .h_border {
  font-size: 14px;
  margin-bottom: 14px;
}

.box_border .box_border_txt {
  font-size: 12px;
  padding: 0;
}

.box_border .box_border_txt .box_border_txt_sub {
  padding-left: 16px;
}

.box_border .box_border_txt li {
  list-style: none;
  text-indent: -18px;
}

.box_slide .box_bnr {
  padding: 1em;
  background: #F2E2EE;
  color: #960F5B;
}

.box_slide .box_bnr .list_double {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.box_slide .box_bnr .list_double li {
  list-style: none;
  font-size: 14px;
}

.box_slide .box_bnr .list_double .list_quote {
  padding: 0;
  color: #333333;
}

.box_slide .box_bnr .list_double .list_quote li {
  font-size: 12px;
}

.box_slide .box_bnr .list_double h6 {
  font-weight: normal;
  line-height: 1;
  padding: 6px 8px;
}

.box_slide .box_bnr .list_double a {
  margin-left: 8px;
}

.box_slide .box_bnr h6 {
  margin-bottom: 10px;
  padding: .2em;
  background: #fff;
  text-align: center;
}

.box_slide .box_bnr a {
  color: #960F5B;
  font-size: 80%;
  word-break: break-all;
}

@media all and (max-width: 768px) {
  .box_slide .box_bnr {
    margin-top: 20px;
    padding: 16px 32px;
  }

  .box_slide .box_bnr .list_double {
    display: block;
  }

  .box_slide .box_bnr .list_double li {
    font-size: 16px;
  }

  .box_slide .box_bnr .list_double h6 {
    margin-top: 10px;
  }
}

.list_pamphlet {
  display: flex;
  justify-content: center;
}

.list_pamphlet li {
  list-style-type: none;
}

.list_pamphlet li img {
  width: 270px;
}

@media all and (max-width: 1200px) {
  .list_pamphlet li img {
    width: 22.5vw;
  }
}

@media all and (max-width: 768px) {
  .list_pamphlet li img {
    width: 35.15625vw;
  }
}

.list_pamphlet li:last-of-type {
  padding-left: 20px;
}

@media all and (max-width: 1200px) {
  .list_pamphlet li:last-of-type {
    padding-left: 1.66667vw;
  }
}

@media all and (max-width: 768px) {
  .list_pamphlet li:last-of-type {
    padding-left: 2.60417vw;
  }
}

.list_pamphlet li:last-of-type img {
  width: 194px;
}

@media all and (max-width: 1200px) {
  .list_pamphlet li:last-of-type img {
    width: 16.16667vw;
  }
}

@media all and (max-width: 768px) {
  .list_pamphlet li:last-of-type img {
    width: 25.26042vw;
  }
}

.list_pamphlet li span.pc.space {
  display: inline-block;
}

@media all and (max-width: 768px) {
  .list_pamphlet li span.pc.space {
    display: none;
  }
}

.list_pamphlet h5 {
  padding-left: 1em;
  text-indent: -1em;
  color: #900051;
  font-size: 14px;
}

@media all and (max-width: 1200px) {
  .list_pamphlet h5 {
    font-size: 1.16667vw;
  }
}

@media all and (max-width: 768px) {
  .list_pamphlet h5 {
    font-size: 3.64583vw;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  .list_pamphlet h5 {
    font-size: 14px;
  }
}

.list_pamphlet h5 span {
  text-indent: 0;
}

.box_double {
  display: flex;
}

@media all and (max-width: 768px) {
  .box_double {
    flex-direction: column;
  }
}

.box_double .list_pamphlet {
  flex-direction: column;
}

@media all and (max-width: 768px) {
  .box_double .list_pamphlet {
    flex-direction: row;
  }
}

.box_double .list_pamphlet h5 {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.box_double .list_pamphlet h5 span {
  text-indent: 0;
}

.box_double .list_pamphlet li img {
  width: 170px;
  margin: 0 auto;
}

@media all and (max-width: 1200px) {
  .box_double .list_pamphlet li img {
    width: 14.16667vw;
  }
}

@media all and (max-width: 768px) {
  .box_double .list_pamphlet li img {
    width: 35.15625vw;
  }
}

.box_double .list_pamphlet li:last-of-type {
  padding-left: 0;
}

@media all and (max-width: 768px) {
  .box_double .list_pamphlet li:last-of-type {
    padding-left: 2.60417vw;
  }
}

.box_double .list_pamphlet li:last-of-type img {
  width: 120px;
}

@media all and (max-width: 1200px) {
  .box_double .list_pamphlet li:last-of-type img {
    width: 10vw;
  }
}

@media all and (max-width: 768px) {
  .box_double .list_pamphlet li:last-of-type img {
    width: 25.26042vw;
  }
}

.note {
  padding-left: 1.5em;
  font-size: 70%;
  text-indent: -1.5em;
}

.note span {
  text-indent: 0;
}

.note a {
  color: #2170C0;
  text-decoration: underline;
}

.list_quote.num {
  margin-right: 0;
  margin-left: 0;
}

.list_quote.num li {
  padding-left: 1.5em;
  list-style-type: none;
  /* font-size: 70%; */
  text-indent: -1.5em;
}

.list_quote.num li span {
  text-indent: 0;
}

.list_quote.num li a {
  color: #2170C0;
  text-decoration: underline;
}

.note_text_left {
  padding: 0;
  color: #9AA3AC;
  font-size: 12px;
  margin-bottom: 1em;
}

.warning {
  display: inline-block;
  color: #E60012;
  font-size: 16px;
  padding: 10px 14px;
  border: solid 1px #E60012;
  margin-top: 2em;
}

@media all and (max-width: 768px) {
  .warning {
    font-size: 12px;
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }
}
/* ------------------------------------------
  modaal
--------------------------------------------- */
.list_slide {
  margin: 20px auto 30px;
  padding: 0;
}

@media all and (max-width: 1200px) {
  .list_slide {
    margin: 1.66667vw auto 2.5vw;
  }
}

@media all and (max-width: 768px) {
  .list_slide {
    margin: 2.60417vw auto 7.8125vw;
    padding: 0;
  }
}

.list_slide + .note {
  margin: -50px 0 60px;
}

@media all and (max-width: 1200px) {
  .list_slide + .note {
    margin: -4.16667vw auto 5vw;
  }
}

@media all and (max-width: 768px) {
  .list_slide + .note {
    margin: -6.51042vw auto 7.8125vw;
  }
}

.list_slide li {
  position: relative;
  list-style-type: none;
  margin-bottom: 2em;
}

.list_slide li a {
  display: block;
}

/* ------------------------------------------
  CLOSE
--------------------------------------------- */
#secClose {
  padding: 30px 0;
  background: #900051;
  color: #fff;
  font-size: 14px;
}

@media all and (max-width: 1200px) {
  #secClose {
    padding: 2.5vw 0;
    font-size: 1.16667vw;
  }
}

@media all and (max-width: 768px) {
  #secClose {
    padding: 5.20833vw 0 16.92708vw;
    font-size: 3.125vw;
  }
}

#secClose section {
  width: 960px;
  margin: 0 auto;
}

@media all and (max-width: 1200px) {
  #secClose section {
    width: 80vw;
  }
}

@media all and (max-width: 768px) {
  #secClose section {
    width: 88.54167vw;
  }
}

#secClose blockquote {
  width: 670px;
}

@media all and (max-width: 1200px) {
  #secClose blockquote {
    width: 55.83333vw;
  }
}

@media all and (max-width: 768px) {
  #secClose blockquote {
    width: 100%;
  }
}

#secClose .note {
  margin-bottom: 0;
  padding-left: 1em;
  text-indent: -1em;
}

/* ------------------------------------------
  FOOTER
--------------------------------------------- */
footer {
  padding: 60px 0;
  background: #fff;
  font-size: 12px;
  /* ------------------------------------------
    電子添文
  --------------------------------------------- */
  /* ------------------------------------------
  BACKTOTOP
--------------------------------------------- */
  /* ------------------------------------------
    フッター01
  --------------------------------------------- */
}

@media all and (max-width: 1200px) {
  footer {
    padding: 5vw 0;
    font-size: 1vw;
  }
}

@media all and (max-width: 768px) {
  footer {
    background-image: url(../img/volume5/bg_01.png);
    background-position: top center;
    background-size: 136.71875vw 120%;
  }
}

footer ul, footer li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

footer .box_footer {
  width: 80%;
  max-width: 980px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

@media all and (max-width: 768px) {
  footer .box_footer {
    flex-direction: column;
    align-items: center;
  }
}

footer h4.h_footer {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

@media all and (max-width: 1200px) {
  footer h4.h_footer {
    margin-bottom: 0.83333vw;
    font-size: 1.5vw;
  }
}
/*
footer .list_footerLink {
  margin-bottom: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media all and (max-width: 1200px) {
  footer .list_footerLink {
    margin-bottom: 1.66667vw;
  }
}

@media all and (max-width: 768px) {
  footer .list_footerLink {
    display: block;
  }
}

footer .list_footerLink li {
  margin-bottom: 20px;
  list-style: none;
}

@media all and (max-width: 768px) {
  footer .list_footerLink li {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

footer .list_footerLink li:last-of-type {
  margin-bottom: 0;
}

@media all and (max-width: 768px) {
  footer .list_footerLink li:last-of-type {
    margin-bottom: 0;
  }
}

footer .list_footerLink li iframe {
  margin: 0 auto;
  display: block;
}

footer .list_footerLink a {
  display: block;
  width: 200px;
  padding: 15px 0;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: #900051;
  border: 2px solid #fff;
  font-weight: 600;
  font-size: 15px;
}

@media all and (max-width: 1200px) {
  footer .list_footerLink a {
    width: 16.66667vw;
    padding: 1.25vw 0;
  }
}

@media all and (max-width: 768px) {
  footer .list_footerLink a {
    width: 65.10417vw;
    padding: 2.60417vw 0;
    font-size: 14px;
  }
}

footer .list_footerLink a span, footer .list_footerLink a img {
  display: inline-block;
  vertical-align: middle;
}

footer .list_footerLink a:hover {
  background: #E8D7DA;
  border: solid 2px #900051;
  color: #900051;
} */

footer #backtotop {
  width: 60px;
  position: fixed;
  right: 1vw;
  bottom: 20px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 990;
  text-align: center;
}

@media all and (max-width: 768px) {
  footer #backtotop {
    width: 13vw;
  }
}

footer #backtotop a {
  display: block;
}

footer #backtotop img {
  width: 100%;
  display: block;
}

footer#foot_column01 .box_copyright {
  width: 250px;
}

@media all and (max-width: 768px) {
  footer#foot_column01 .box_copyright {
    margin-top: 2.60417vw;
  }
}

@media all and (max-width: 768px) {
  footer#foot_column01 .box_copyright .corporate_logo {
    margin-bottom: 0;
  }
}

footer#foot_column01 .box_copyright .corporate_logo img {
  max-width: 232px;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  footer#foot_column01 .box_copyright .corporate_logo img {
    width: 100%;
    max-width: 256px;
    margin: 0 auto 5px;
  }
}

footer#foot_column01 .box_bnr {
  margin: 0 4em;
  min-width: 240px;
}

@media all and (max-width: 768px) {
  footer#foot_column01 .box_bnr {
    width: 100%;
    margin: 4em auto 0;
  }
}

footer#foot_column01 .box_bnr img {
  width: 100%;
  margin: 0 auto;
}

@media all and (max-width: 768px) {
  footer#foot_column01 .box_bnr img {
    width: 50%;
  }
}

footer#foot_column01 .copy {
  margin-bottom: 10px;
  font-size: 12px;
  display: block;
}

@media all and (max-width: 768px) {
  footer#foot_column01 .copy {
    margin-bottom: 15px;
    text-align: center;
  }
}

@media all and (max-width: 768px) {
  footer#foot_column01 .copy.pc {
    display: none;
  }
}

footer#foot_column01 .copy.sp {
  display: none;
}

@media all and (max-width: 768px) {
  footer#foot_column01 .copy.sp {
    margin-top: 1em;
    display: block;
  }
}

footer#foot_column01 .box_rating {
  width: 250px;
  text-align: right;
}

@media all and (max-width: 768px) {
  footer#foot_column01 .box_rating {
    width: 100%;
    text-align: center;
  }
}

footer#foot_column01 .box_rating .sp {
  width: 100%;
  text-align: center;
}

footer#foot_column01 .box_date {
  margin-bottom: 28px;
}

@media all and (max-width: 768px) {
  footer#foot_column01 .box_date {
    margin: 3.90625vw 0;
    font-size: 12px;
  }
}

footer#foot_column01 .box_date .list_date {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

@media all and (max-width: 768px) {
  footer#foot_column01 .box_date .list_date {
    justify-content: center;
  }
}

footer#foot_column01 .box_date .list_date .date {
  display: block;
}

footer#foot_column01 .box_date .list_date .icon {
  width: 30px;
}

footer#foot_column01 .box_date .list_date li {
  padding-right: 10px;
}

footer#foot_column01 .box_date .list_date li:last-of-type {
  padding-right: 0;
}

footer#foot_column01 .box_date .number {
  text-align: right;
}

@media all and (max-width: 768px) {
  footer#foot_column01 .box_date .number {
    text-align: center;
  }
}

footer#foot_column01 .m3_logo_logo {
  width: 178px;
  max-width: 178px;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 768px) {
  footer#foot_column01 .m3_logo_logo {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

footer#foot_column01 .m3_logo_logo img {
  width: 100%;
  max-width: 178px;
}

@media screen and (max-width: 768px) {
  footer#foot_column01 _:lang(x)::-moz-placeholder, footer#foot_column01 .m3_logo_logo {
    min-width: 178px;
  }
}

/* ------------------------------------------
  SCROLLEVENT
--------------------------------------------- */
@keyframes fadeLeftHead {
  0% {
    opacity: 0;
    transition-duration: 500ms;
    transition-property: opacity, transform;
    transition-timing-function: ease;
    transform: translate(-48px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.fadeLeftHead {
  animation-name: fadeLeftHead;
  animation-duration: 1s;
  animation-iteration-count: inherit;
}

@keyframes fadeTopHead {
  0% {
    opacity: 0;
    transition-duration: 500ms;
    transition-property: opacity, transform;
    transition-timing-function: ease;
    transform: translate(0, 48px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.fadeTopHead {
  animation-name: fadeTopHead;
  animation-duration: 1s;
  animation-iteration-count: inherit;
}

.fadeIn {
  opacity: 0.0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}

.fadeIn_t {
  transform: translate(0, -48px);
}

.fadeIn_r {
  transform: translate(48px, 0);
}

.fadeIn_b {
  transform: translate(0, 48px);
}

.fadeIn_l {
  transform: translate(-48px, 0);
}

.scrollIn {
  opacity: 1.0;
  transform: translate(0, 0);
}
