@charset "UTF-8";
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, caption, tfoot, thead, th, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: #333;
  border: 0;
  background: transparent;
  text-decoration: none;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted #000;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input, select {
  vertical-align: middle;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

ol li, ul li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }
}
@media screen and (min-width: 480px) {
  .sp_only {
    display: none !important;
  }

  .pc_only {
    display: block !important;
  }
}
html {
  font-size: 62.5%;
  scroll-padding-top: 210px;
  /* 固定ヘッダの高さ分 */
}
@media screen and (max-width: 991px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #000;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 1080px) {
  body {
    min-width: 100%;
  }
}

section {
  padding: 70px 0;
}
section .inner {
  overflow: visible;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
section figure {
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
}
section figure img {
  max-width: 100%;
  margin: 0 auto;
}
section figure:last-child {
  margin-bottom: 0;
}
section p {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 1.5em;
  line-height: 1.65em;
}
section p:last-child {
  margin-bottom: 0;
}
section ul, section ol {
  margin-bottom: 1.5em;
}
section ul:last-of-type, section ol:last-of-type {
  margin-bottom: 0;
}
section ul li, section ol li {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 1.5em;
  line-height: 1.65em;
}
section ul li:last-child, section ol li:last-child {
  margin-bottom: 0;
}
section img {
  max-width: 100%;
  margin: auto;
}
@media screen and (max-width: 991px) {
  section {
    padding: 5% 0;
  }
  section .inner {
    padding: 0 2%;
  }
}
@media screen and (max-width: 767px) {
  section {
    padding: 10% 0;
  }
  section .inner {
    padding: 0 4%;
  }
  section .inner p br.sp_br {
    display: block;
  }
}

/******************************************
	リンク
******************************************/
a {
  transition: 0.3s ease all;
}
a:hover {
  opacity: 0.6;
}

/******************************************
	ページトップ
******************************************/
#page_top {
  position: fixed;
  right: 100px;
  bottom: 10px;
  z-index: 50;
}
#page_top a {
  display: block;
  text-decoration: none;
}
#page_top a:hover {
  opacity: 0.6;
  transition: all  0.3s ease;
}
@media screen and (max-width: 768px) {
  #page_top {
    right: 5px;
    bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #page_top {
    right: 10px;
    bottom: 10px;
    width: 15%;
    height: auto;
  }
}

/******************************************
	共通パーツ
******************************************/
h3 {
  font-size: 40px;
  font-size: 4rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2em;
  line-height: 1.6;
  position: relative;
}
h3::before {
  content: '';
  position: absolute;
  background: url("../images/h3_bg.png") no-repeat;
  background-size: 100% auto;
  width: 86px;
  height: 68px;
  top: -68px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto auto auto;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 20px;
    font-size: 2rem;
  }
  h3::before {
    width: 43px;
    height: 34px;
    top: -34px;
  }
}

h4 {
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.8em;
  line-height: 1.6;
  position: relative;
}
h4::before {
  content: '';
  position: absolute;
  background: url("../images/h4_bg.png") no-repeat;
  background-size: 100% auto;
  width: 279px;
  height: 9px;
  top: 0;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto auto 0 auto;
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 20px;
    font-size: 2rem;
  }
  h4::before {
    width: 140px;
    height: 5px;
    bottom: -5px;
  }
}

/******************************************
	調整クラス
******************************************/
.t_stg {
  font-weight: bold !important;
}

.t_1 {
  color: #ea6d8d !important;
  font-weight: bold;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb-3em {
  margin-bottom: 3em !important;
}

/******************************************
	フェードイン設定
******************************************/
.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
footer {
  background: #fff;
  padding: 65px 0 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
footer .copy {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
footer .copy p {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  color: #bba48e;
  line-height: 1.4;
  margin-bottom: 1em;
}
footer .copy p br {
  display: none;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 3em 0 0;
  }
  footer .copy p br {
    display: block;
  }
}

/******************************************
	トップページ
******************************************/
.sec_mv {
  padding-top: 0;
}
.sec_mv .inner {
  max-width: 1260px;
  padding: 0;
  position: relative;
}
.sec_mv .inner .box {
  width: 240px;
  height: 240px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec_mv .inner .box h1 {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
  font-weight: normal;
  letter-spacing: 2.4px;
  line-height: 1.62;
}
.sec_mv .inner .box h1 span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 9.6px;
  margin-top: 1.5em;
}
.sec_mv .inner figure {
  margin-bottom: 0;
}
.sec_mv .inner .slider {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec_mv .inner .box {
    width: 50%;
    height: 50vw;
  }
  .sec_mv .inner .box h1 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .sec_mv .inner .box h1 span {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 1.0em;
  }
}

.sec_1 .figure_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 2em 0;
}
.sec_1 .figure_box figure {
  width: 25%;
}
.sec_1 .figure_box figure img {
  object-fit: cover;
}
.sec_1 .inner > p {
  text-align: center;
}
.sec_1 dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  width: 100%;
  margin: auto auto 7em;
}
.sec_1 dl dt {
  width: 175px;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 600;
  line-height: 1.58;
  text-align: center;
  border-bottom: 2px solid #5A2803;
}
.sec_1 dl dd {
  width: calc(100% - 175px);
  padding-left: 5em;
}
@media screen and (max-width: 991px) {
  .sec_1 dl {
    margin-bottom: 5em;
  }
  .sec_1 dl dd {
    padding-left: 3em;
  }
}
@media screen and (max-width: 767px) {
  .sec_1 .figure_box {
    margin-bottom: 0;
  }
  .sec_1 dl {
    flex-direction: column;
  }
  .sec_1 dl dt {
    width: 50%;
    margin-bottom: 1.5em;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .sec_1 dl dd {
    width: 100%;
    padding-left: 0;
  }
}

.sec_2 {
  overflow: hidden;
}
.sec_2 .box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5em;
}
.sec_2 .box .text {
  width: 50%;
}
.sec_2 .box figure {
  width: 50vw;
  margin-bottom: 0;
}
.sec_2 .box:nth-of-type(odd) figure {
  margin-left: calc(50% - 50vw);
}
.sec_2 .box:nth-of-type(odd) .text {
  padding-left: 4em;
}
.sec_2 .box:nth-of-type(even) {
  flex-direction: row-reverse;
}
.sec_2 .box:nth-of-type(even) figure {
  margin-right: calc(50% - 50vw);
}
.sec_2 .box:nth-of-type(even) .text {
  padding-right: 4em;
}
.sec_2 .box:first-of-type {
  align-items: stretch;
}
.sec_2 .box:first-of-type .text {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between;
}
.sec_2 .box:first-of-type .text ol li {
  margin-bottom: 0;
  list-style-type: inherit;
}
.sec_2 .box-video {
  max-width: 800px;
  width: 100%;
  height: 450px;
  margin: auto auto 3em;
  background: #7E7E7E;
}
.sec_2 .box-video p {
  width: 100%;
  height: 100%;
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .sec_2 .box:nth-of-type(odd) .text {
    padding-left: 2.5em;
  }
  .sec_2 .box:nth-of-type(even) .text {
    padding-right: 2.5em;
  }
  .sec_2 .box-video {
    height: 56vw;
    margin-bottom: 5em;
  }
}
@media screen and (max-width: 767px) {
  .sec_2 .box {
    flex-direction: column;
    margin-bottom: 4em;
  }
  .sec_2 .box figure {
    width: 98%;
    margin-bottom: 1em;
  }
  .sec_2 .box .text {
    width: 100%;
  }
  .sec_2 .box:nth-of-type(odd) .text {
    padding-left: 0;
  }
  .sec_2 .box:nth-of-type(even) .text {
    padding-right: 0;
  }
  .sec_2 .box:first-of-type .text ol {
    padding-left: 1em;
  }
  .sec_2 .box-video {
    margin-bottom: 3em;
  }
}

.sec_3 .box_1 {
  margin-bottom: 5em;
}
.sec_3 .box_1 > figure {
  margin-bottom: 40px;
}
.sec_3 .box_1 p:last-of-type {
  margin-bottom: 3.5em;
}
.sec_3 .box_1 .box_1-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.sec_3 .box_1 .box_1-inner figure {
  width: 48%;
  margin-bottom: 0;
}
.sec_3 .box_2 {
  margin-bottom: 5em;
}
.sec_3 .box_2 .box_2-inner {
  position: relative;
}
.sec_3 .box_2 .box_2-inner figure {
  position: relative;
  z-index: 1;
}
.sec_3 .box_2 .box_2-inner h5 {
  width: 100%;
  position: absolute;
  bottom: 25px;
  z-index: 2;
  text-align: right;
  padding-right: 2em;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.3);
}
.sec_3 .box_2 p {
  text-align: center;
}
.sec_3 .box_3 {
  max-width: 800px;
  width: 100%;
  height: 160px;
  margin: auto auto 5em;
  text-align: center;
}
.sec_3 .box_3 a {
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid #5A2803;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sec_3 .box_3 a::after {
  content: '';
  position: absolute;
  background: url("../images/arw_1.png") no-repeat;
  background-size: 100% auto;
  width: 13px;
  height: 14px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 18px;
  margin: auto 0 auto auto;
  transition: 0.3s all ease;
}
.sec_3 .box_3 a:hover::after {
  right: 5px;
}
.sec_3 .box_4 {
  width: 220px;
  margin: auto auto 5em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
}
.sec_3 .box_4 p {
  width: 165px;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0;
}
.sec_3 .box_4 figure {
  width: 55px;
  margin-bottom: 0;
}
@media screen and (max-width: 999px) {
  .sec_3 .box_2 .box_2-inner {
    width: 104%;
    margin: auto -2%;
  }
  .sec_3 .box_3 {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .sec_3 .box_1 {
    margin-bottom: 4em;
  }
  .sec_3 .box_1 > figure {
    margin-bottom: 20px;
  }
  .sec_3 .box_1 p:last-of-type {
    margin-bottom: 2em;
  }
  .sec_3 .box_2 {
    margin-bottom: 4em;
  }
  .sec_3 .box_2 .box_2-inner {
    width: 108%;
    margin: auto -4%;
  }
  .sec_3 .box_2 .box_2-inner h5 {
    bottom: 18px;
    font-size: 20px;
    font-size: 2rem;
  }
  .sec_3 .box_3 {
    width: 100%;
    height: 120px;
    margin-bottom: 4em;
  }
  .sec_3 .box_3 a {
    font-size: calc(100vw/25);
  }
}
@media screen and (max-width: 400px) {
  .sec_3 .box_2 p {
    font-size: calc(100vw/25);
  }
}
