@charset "UTF-8";
/* ========================================================
    base.css => 共通基本CSS
======================================================== */
/* reset
============================================================================================================ */
html {
  box-sizing: border-box;
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}

*,
::before,
::after {
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  background-repeat: no-repeat;
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

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

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

table {
  font-size: 100%;
  font-family: inherit;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
}

select, input, textarea {
  font-size: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* ClearFix
============================================================================================================ */
.clearfix,
.row {
  zoom: 1;
}

.clearfix:after,
.row:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  line-height: 0;
  overflow: hidden;
}

/* float
============================================================================================================ */
.fl {
  float: left;
}

.fr {
  float: right;
}

@media screen and (max-width: 768px) {
  .fl {
    float: none;
  }
  .fr {
    float: none;
  }
}
/* block_center
============================================================================================================ */
.bc {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* text-align
============================================================================================================ */
.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

/* margin
============================================================================================================ */
.m00 {
  margin: 0 !important;
}

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

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

.mb05 {
  margin-bottom: 5px !important;
}

.mb08 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt {
  margin-top: 1.5em !important;
}

.mt00 {
  margin-top: 0 !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt08 {
  margin-top: 8px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt-40 {
  margin-top: -40px !important;
}

/* padding
============================================================================================================ */
.p00 {
  padding: 0 !important;
}

.pb {
  padding-bottom: 1.3em !important;
}

.pb00 {
  padding-bottom: 0 !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb08 {
  padding-bottom: 8px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pt00 {
  padding-top: 0 !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt08 {
  padding-top: 8px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

/* font size
============================================================================================================ */
.fz10 {
  font-size: 10px;
  font-size: 1rem;
}

.fz11 {
  font-size: 11px;
  font-size: 1.1rem;
}

.fz12 {
  font-size: 12px;
  font-size: 1.2rem;
}

.fz13 {
  font-size: 13px;
  font-size: 1.3rem;
}

.fz14 {
  font-size: 14px;
  font-size: 1.4rem;
}

.fz15 {
  font-size: 15px;
  font-size: 1.5rem;
}

.fz16 {
  font-size: 16px;
  font-size: 1.6rem;
}

.fz17 {
  font-size: 17px;
  font-size: 1.7rem;
}

.fz18 {
  font-size: 18px;
  font-size: 1.8rem;
}

.fz19 {
  font-size: 19px;
  font-size: 1.9rem;
}

.fz20 {
  font-size: 20px;
  font-size: 2rem;
}

/* font weight
============================================================================================================ */
.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal !important;
}

/* ========================================================
変数
======================================================== */
/* ========================================================
mixin
======================================================== */
/* ========================================================
変数
======================================================== */
/* *{
    border: 1px solid red;
} */
/* ========================================================
変数
======================================================== */
/* ========================================================
template.css => テンプレート用CSS
======================================================== */
html, body {
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  color: #1e1e1e;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, Arial, Helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  position: relative;
  z-index: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mincho {
  font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", Georgia, Times, "Times New Roman", serif;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.7;
}

a:not(.blockl) {
  transition: color 0.15s, background-color 0.15s, background-image 0.15s, border 0.15s, opacity 0.15s;
  color: #4C4C4C;
}

a:hover {
  text-decoration: none;
}

a.a_reverse,
.a_reverse a {
  text-decoration: none;
}

a.a_reverse[href]:hover,
.a_reverse a[href]:hover {
  text-decoration: underline;
}

a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

_:-ms-lang(x)::-ms-backdrop, a {
  -ms-transition: none;
  transition: none;
}

a[href]:not(.mainmenu__link):hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  transition: 0.3s ease-in-out;
}

a.not-hover[href]:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transition: 0.3s ease-in-out;
}

.opacity-hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  transition: 0.3s ease-in-out;
}

.tellink {
  cursor: default;
  pointer-events: none;
}

p {
  font-size: 1.7rem;
  word-wrap: break-word;
}

label {
  cursor: pointer;
}

input, select, textarea, button {
  margin: 0;
  vertical-align: middle;
  font-family: inherit;
  outline: none;
  font-size: 100%;
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

iframe {
  vertical-align: middle;
}

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

.svg_box {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.svg_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.blockl {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

a.blockl:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

a.blockl.not-hover:hover {
  background-color: transparent;
}

.p_blockl:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  transition: 0.3s ease-in-out;
}

.col_red {
  color: #E41414;
}

.ggmap {
  position: relative;
  padding-bottom: 45.55%;
  height: 0;
  overflow: hidden;
  margin-top: 1%;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fadein {
  opacity: 0;
  will-change: transform, scale, opacity;
  transform: translateY(2rem) scale(1);
  transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fadein.scrollin {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.preload * {
  transition: none !important;
}

@media screen and (max-width: 768px) {
  img {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
  iframe {
    max-width: 100%;
    height: 200px;
  }
  p {
    font-size: 1.5rem;
  }
  .tellink {
    pointer-events: auto;
  }
  .ggmap {
    padding-bottom: 100%;
  }
  a[href]:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    transition: 0.3s ease-in-out;
  }
}
/* pc / sp
============================================================================================================ */
.sp,
.sps {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img.sp, span.sp, br.sp, em.sp, strong.sp {
    display: inline !important;
  }
}
@media screen and (max-width: 370px) {
  .sps {
    display: block !important;
  }
  img.sps, spsan.sps, br.sps, em.sps, strong.sps {
    display: inline !important;
  }
}
/* sp
============================================================================================================ */
@media screen and (max-width: 768px) {
  .sp_mincho {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  }
}
/* font-size
============================================================================================================ */
.fz_s {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.fz_l {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
}

.nakaguro {
  letter-spacing: -0.1em;
}

@media screen and (max-width: 768px) {
  .fz_s {
    font-size: 1.1rem;
  }
  .fz_l {
    font-size: 1.5rem;
  }
}
/* w
============================================================================================================ */
.w {
  position: relative;
  display: block;
  width: 1000px;
  margin: 0 auto;
}

.w2 {
  position: relative;
  display: block;
  width: 740px;
  margin: 0 auto;
}

.w3 {
  position: relative;
  display: block;
  width: 800px;
  margin: 0 auto;
}

.w4 {
  position: relative;
  display: block;
  width: 760px;
  margin: 0 auto;
}

.w5 {
  position: relative;
  display: block;
  width: 1100px;
  margin: 0 auto;
}

.w6 {
  position: relative;
  display: block;
  width: 1035px;
  margin: 0 auto;
}

.w7 {
  position: relative;
  display: block;
  width: 890px;
  margin: 0 auto;
}

.mw {
  min-width: 1000px;
}

/*.w:after,
.mw:after {
    content: "."; display: block; height: 0; clear: both; visibility: hidden; line-height: 0; overflow: hidden;
}*/
@media screen and (max-width: 1040px) {
  .w, .w2, .w5, .w6 {
    width: 100%;
    padding: 0 8%;
  }
  .w--2 {
    padding: 0 4%;
  }
  .section .w,
  .section .w2,
  .section .w5,
  .section .w6 {
    padding: 0;
  }
  .mw {
    min-width: 100%;
  }
}
@media screen and (max-width: 890px) {
  .w7 {
    width: 100%;
    padding: 0 5%;
  }
  .section .w7 {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .w3 {
    width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .w4 {
    width: 100%;
    padding: 0 5%;
  }
  .mw {
    min-width: 0;
  }
}
/* hv_wh
============================================================================================================ */
a.hv_wh,
button.hv_wh,
a .hv_wh,
.hv_wh a {
  position: relative;
  display: inline-block;
}

a.hv_wh:after,
button.hv_wh:after,
a .hv_wh:after,
.hv_wh a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0);
  transition: background 0.15s;
  z-index: 3;
}

a.hv_wh:hover:after,
button.hv_wh:hover:after,
a:hover .hv_wh:after,
.hv_wh a:hover:after {
  background-color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  a.hv_wh:after,
  button.hv_wh:after,
  a .hv_wh:after,
  .hv_wh a:after {
    content: none;
  }
}
/* コンテナ
============================================================================================================ */
#container {
  width: 100%;
  position: relative;
  font-size: 1.6rem;
  z-index: auto;
  overflow: hidden;
  margin-top: 58px;
}

@media screen and (max-width: 1040px) {
  .wrapper {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  #container {
    font-size: 1.6rem;
    padding: 0;
    z-index: 0;
    width: 100%;
    margin-left: 0;
    margin-top: 60px;
  }
}
/* ===================================================================================================================

コンテンツ

=================================================================================================================== */
.section-last {
  padding-bottom: 50px !important;
}

.section-heading {
  font-size: 2.8rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #754C24;
  position: relative;
}
.section-heading span {
  display: block;
  margin: calc(0px - 2.8rem * (1.7 - 1) / 2) 0px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  position: relative;
}
.section-heading span:nth-of-type(2) {
  font-family: arvo, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  margin: calc(15px - 1.4rem * (1.7 - 1) / 2) 0px calc(0px - 1.4rem * (1.7 - 1) / 2) 0px;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
}

.section-heading2 {
  font-size: 3rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #C1272D;
  position: relative;
}
.section-heading2 span {
  display: block;
  margin: calc(0px - 3rem * (1.7 - 1) / 2) 0px calc(40px - 3rem * (1.7 - 1) / 2) 0px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  position: relative;
}
.section-heading2 span:nth-of-type(2) {
  font-family: arvo, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  margin: calc(15px - 1.4rem * (1.7 - 1) / 2) 0px calc(0px - 1.4rem * (1.7 - 1) / 2) 0px;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
}

.catch {
  text-align: center;
  line-height: 2;
  margin: calc(40px - 1.6rem * (2 - 1) / 2) 0px calc(0px - 1.6rem * (2 - 1) / 2) 0px;
}

.pagetitle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 242px;
}
.pagetitle span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  font-size: 4rem;
  margin: calc(0px - 4rem * (1.7 - 1) / 2) 0px;
  display: block;
}
.pagetitle span:nth-of-type(2) {
  font-size: 1.8rem;
  font-family: arvo, serif;
  font-weight: 700;
  font-style: italic;
  display: block;
  margin: calc(20px - 1.8rem * (1.7 - 1) / 2) 0px calc(0px - 1.8rem * (1.7 - 1) / 2) 0px;
}

.breadcrumb {
  width: 1016px;
  margin: 0 auto;
  margin: calc(30px - 1.2rem * (1.7 - 1) / 2) auto calc(0px - 1.2rem * (1.7 - 1) / 2);
  display: flex;
}
.breadcrumb__item:nth-of-type(n+2) {
  padding-left: 20px;
  position: relative;
}
.breadcrumb__item:nth-of-type(n+2)::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #C1272D #C1272D transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: calc(50% - 2px);
}
.breadcrumb__item span {
  font-size: 1.2rem;
  color: #000;
}
a.breadcrumb__link {
  font-size: 1.2rem;
  color: #C1272D;
}

.pager {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.pager a.current {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #C1272D;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.pager a:nth-of-type(n+2) {
  margin-left: 20px;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transform: inherit;
}

.js-modal-close {
  width: 58px;
  height: 58px;
  background-color: #ffffff;
  position: absolute;
  right: -36px;
  top: -36px;
}

.modal__bg {
  background: rgba(255, 255, 255, 0.9);
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.modal__content {
  padding: 0;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 735px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__content-in {
  position: relative;
  width: 100%;
}

.modal__content-in--mxh {
  max-height: 90vh;
}

.modal__content-in--mxh img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  display: table-cell;
  margin: auto;
}

.modal__content-in p {
  margin-top: 20px;
}

.modal__youtube {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: 0;
}

.modal__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-modal-close span {
  display: block;
  position: absolute; /* .js-modal-closeに対して */
  width: 68.97%;
  border-bottom: solid 1px #e41414;
  transition: 0.35s ease-in-out;
}

/* 最初のspanをマイナス45度に */
.js-modal-close span:nth-child(1) {
  top: 28px;
  left: 8px;
  transform: rotate(-45deg);
}

.js-modal-close span:nth-child(2) {
  top: 28px;
  left: 8px;
  transform: rotate(45deg);
}

.js-modal-close--red {
  background-color: #C1272D;
  border-radius: 50%;
}

.js-modal-close--red span {
  border-bottom: solid 1px #fff;
}

@media screen and (max-width: 768px) {
  .catch {
    margin: calc(30px - 1.6rem * (2 - 1) / 2) 0px calc(0px - 1.6rem * (2 - 1) / 2) 0px;
  }
  .pagetitle {
    height: 161px;
  }
  .pagetitle span {
    font-size: 3.5rem;
    margin: calc(0px - 3.5rem * (1.7 - 1) / 2) 0px;
  }
  .breadcrumb {
    width: 100%;
    padding: 0 5%;
    margin: calc(20px - 1.2rem * (1.7 - 1) / 2) 0px calc(0px - 1.2rem * (1.7 - 1) / 2) 0px;
  }
  .pager {
    margin-top: 50px;
  }
  .pager a:nth-of-type(n+2) {
    margin-left: 35px;
  }
  .js-modal-close {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    position: absolute;
    right: -18px;
    top: -18px;
  }
  .modal__bg {
    background: rgba(255, 255, 255, 0.9);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }
  /* 最初のspanをマイナス45度に */
  .js-modal-close span:nth-child(1) {
    top: 21px;
    left: 7px;
  }
  .js-modal-close span:nth-child(2) {
    top: 21px;
    left: 7px;
    transform: rotate(45deg);
  }
  .js-modal-close--red {
    background-color: #e41414;
  }
  .js-modal-close--red span {
    border-bottom: solid 1px #fff;
  }
  .modal__content {
    width: 100%;
    padding: 9.68%;
  }
  .modal__content-in {
    position: relative;
    width: 100%;
    display: block;
  }
  .modal__content-in--mxh2 {
    width: 70%;
    max-height: 90vh;
  }
}
/* btn
============================================================================================================ */
a.text-btn,
button.text-btn {
  display: block;
  width: auto;
  color: #000034;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  border-left: 1px solid #000034;
  border-bottom: 1px solid #000034;
  border-bottom-left-radius: 4px;
  padding: 2px 0 8px;
}
a.text-btn span,
button.text-btn span {
  margin: calc(0px - 16px * (1.7 - 1) / 2) 0px;
}
a.text-btn--w180,
button.text-btn--w180 {
  width: 182px;
}

a.text-btn::before,
button.text-btn::before {
  content: "";
  background-image: url(../images/arrow-btn.svg);
  background-size: 100% 100%;
  width: 12px;
  height: 5px;
  position: absolute;
  right: 0;
  bottom: 0;
}

#page-navi ul li {
  display: none;
}
#page-navi ul li:last-child {
  display: block;
  text-align: center;
}

#page-navi.page-navi--cat ul li span {
  display: none;
}

.btn-wrap2 {
  display: flex;
  justify-content: center;
}
.btn-wrap2 .btn-wrap:nth-of-type(2) {
  margin-left: 40px;
}

.btn-wrap {
  width: 425px;
  margin: 40px auto 0;
}
.btn-wrap--mt80 {
  margin-top: 80px;
}
.btn-wrap--left {
  margin-left: 0;
}

a.btn,
button.btn,
.next.page-numbers {
  width: 100%;
  height: 100%;
  display: block;
  display: flex;
  align-items: center;
  background-color: #C1272D;
  color: #fff;
  padding: calc(15px - 16px * (1.7 - 1) / 2) 35px calc(15px - 16px * (1.7 - 1) / 2) 20px;
  position: relative;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  font-size: 1.6rem;
}
a.btn::before,
button.btn::before,
.next.page-numbers::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  right: 25px;
  top: calc(50% - 7px);
}
a.btn--white,
button.btn--white,
.next.page-numbers--white {
  color: #C1272D;
  background-color: #fff;
}
a.btn--white::before,
button.btn--white::before,
.next.page-numbers--white::before {
  width: 14px;
  height: 14px;
  border: 2px solid;
  border-color: #C1272D #C1272D transparent transparent;
  transform: rotate(45deg);
}
a.btn--yellow,
button.btn--yellow,
.next.page-numbers--yellow {
  color: #ffffff;
  border: none;
  background-color: #ffa900;
}
a.btn--yellow::before,
button.btn--yellow::before,
.next.page-numbers--yellow::before {
  content: "";
  background-image: url(../images/arrow.svg);
}
a.btn--gray,
button.btn--gray,
.next.page-numbers--gray {
  color: #ffffff;
  border: none;
  background-color: #808080;
}
a.btn--gray::before,
button.btn--gray::before,
.next.page-numbers--gray::before {
  content: "";
  background-image: url(../images/arrow.svg);
  transform: rotate(180deg);
  right: inherit;
  left: 33px;
}
a.btn--textlarge,
button.btn--textlarge,
.next.page-numbers--textlarge {
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  text-indent: -0.04em;
}
a.btn--line,
button.btn--line,
.next.page-numbers--line {
  color: #ffffff;
  border: none;
  background-color: #00b900;
  padding: calc(25px - 16px * (1.7 - 1) / 2) 55px calc(25px - 16px * (1.7 - 1) / 2) 105px;
}
a.btn--line span,
button.btn--line span,
.next.page-numbers--line span {
  position: relative;
}
a.btn--line span::before,
button.btn--line span::before,
.next.page-numbers--line span::before {
  content: "";
  width: 44px;
  height: 42px;
  position: absolute;
  left: -54px;
  top: calc(50% - 21px);
  background-image: url(../images/icon_line2.svg);
  background-size: 44px 42px;
}
a.btn--line::before,
button.btn--line::before,
.next.page-numbers--line::before {
  content: "";
  background-image: url(../images/arrow.svg);
}

.next.page-numbers {
  width: 425px;
  margin: 80px auto 0;
}

.more-box {
  display: block;
  text-align: right;
  margin-top: calc(20px - 1.5rem * (1.7 - 1) / 2);
}
.more-box--nomargin {
  margin-top: 0;
}

a.more {
  font-size: 1.5rem;
  color: #909090;
  padding-right: 20px;
  position: relative;
}
a.more::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid;
  border-color: #D05C31 #D05C31 transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  right: 3px;
  top: calc(50% - 6px);
}

button.btn_form {
  display: block;
  width: 35.53%;
  background-color: #FAEACC;
  color: #000000;
  text-align: center;
  font-size: 1.8rem;
  padding-top: 20px;
  padding-bottom: 20px;
  letter-spacing: 0.15em;
}

button.btn_form_back {
  display: block;
  width: 35.53%;
  margin-right: 40px;
  background-color: #B3B3B3;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  padding-top: 20px;
  padding-bottom: 20px;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  a.more {
    font-size: 1.5rem;
    color: #909090;
    padding-right: 20px;
    position: relative;
  }
  a.more::after {
    content: "";
    width: 12px;
    height: 12px;
    border: 1px solid;
    border-color: #D05C31 #D05C31 transparent transparent;
    transform: rotate(45deg);
    position: absolute;
    right: 3px;
    top: calc(50% - 6px);
  }
  a.text-btn {
    font-size: 1.3rem;
    padding: 0 0 2px;
  }
  a.text-btn--w180 {
    width: 157px;
  }
  .btn-wrap {
    width: 100%;
    margin: 40px auto 0;
  }
  .next.page-numbers {
    width: 100%;
    margin: 40px auto 0;
  }
  .btn-wrap2 {
    flex-direction: column;
  }
  .btn-wrap2 .btn-wrap:nth-of-type(2) {
    margin-left: 0;
    margin-top: 20px;
  }
  a.btn {
    font-size: 1.6rem;
    padding: calc(18px - 1.6rem * (1.7 - 1) / 2) 20px;
  }
}
/* img
============================================================================================================ */
@media screen and (max-width: 768px) {
  .sp_img50p img {
    max-width: 50%;
  }
}
/* img.radius
============================================================================================================ */
img.radius {
  border-radius: 0;
}

/*object-fit-img*/
.object-fit-img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

img.ofi__img--cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

img.ofi__img--contain {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

/* ========================================================
変数
======================================================== */
.form-flow {
  width: 918px;
  margin: 90px auto 0;
  display: flex;
}
.form-flow__item {
  width: 33.3333333333%;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #f2f2f2;
  color: #b1b1b1;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
}
.form-flow__item:nth-of-type(1)::before, .form-flow__item:nth-of-type(2)::before {
  content: "";
  width: 17px;
  height: 43px;
  background-image: url(../images/arrow-flow.jpg);
  background-position: left center;
  background-size: 17px 43px;
  position: absolute;
  right: -17px;
  top: 0;
  z-index: 2;
}
.form-flow__item--on {
  background-color: #910100;
  color: #ffffff;
}
.form-flow__item--on:before {
  background-image: url(../images/arrow-flow_on.jpg) !important;
}
.form-flow__item--gray-on {
  background-color: #808080;
  color: #ffffff;
}
.form-flow__item--gray-on:before {
  background-image: url(../images/arrow-flow_on_gray.jpg) !important;
}
.form-flow__item--on2:after {
  content: "";
  width: 16px;
  height: 43px;
  background-image: url(../images/arrow-flow_on2.jpg) !important;
  position: absolute;
  left: 1px;
  top: 0;
  z-index: 2;
}
.form-flow__item--gray-on2:after {
  content: "";
  width: 16px;
  height: 43px;
  background-image: url(../images/arrow-flow_on2_gray.jpg) !important;
  position: absolute;
  left: 1px;
  top: 0;
  z-index: 2;
}

.required {
  color: #910100;
  margin-left: 10px;
}

.notes {
  font-size: 1.2rem;
  margin-top: 10px;
}

.form-des {
  text-align: center;
  margin-top: 80px;
}

.form-notes {
  width: 918px;
  margin: 40px auto 20px;
  font-size: 1.2rem;
  display: flex;
  justify-content: flex-end;
}

.form {
  width: 918px;
  margin: 0 auto;
}
.form:nth-of-type(2) {
  margin-top: 40px;
}
.form-section {
  background-color: #f2f2f2;
  padding: 80px;
}
.form-section--pt40 {
  padding-top: 40px;
}
.form__midashi {
  background-color: #910100;
  color: #ffffff;
  text-align: center;
  padding: calc(15px - 16px * (1.7 - 1) / 2) 15px;
}
.form__midashi--gray {
  background-color: #808080;
}

.radio {
  display: flex;
  flex-wrap: wrap;
}
.radio__item:nth-of-type(n+2) {
  margin-left: 20px;
}
.radio__item:nth-of-type(3) {
  flex-basis: 30%;
}
.radio__item:nth-of-type(4) {
  margin-left: 0px;
}

.radio-input {
  display: none;
}

.radio-input + label {
  padding-left: 20px;
  position: relative;
}

.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #c9caca;
  background-color: #fff;
  border-radius: 50%;
}

.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #c1272d;
  border-radius: 50%;
}

.checkbox {
  box-sizing: border-box;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 0px 10px 0;
  padding: 8px 10px 8px 32px;
  background-color: #fff;
  vertical-align: middle;
  cursor: pointer;
}

.checkbox:hover {
  background-color: #ffece7;
}

.checkbox:hover:after {
  border-color: #FC7A57;
}

.checkbox:before {
  content: "";
  transition: border-color 0.2s linear;
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid #bbb;
}

.checkbox:after {
  transition: opacity 0.2s linear;
  position: absolute;
  top: calc(50% - 9px);
  left: 15px;
  display: block;
  width: 7px;
  height: 11px;
  border-right: 3px solid #FC7A57;
  border-bottom: 3px solid #FC7A57;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}

input[type=checkbox]:checked + .checkbox:after {
  opacity: 1;
}

.select-wrap {
  position: relative;
  width: 340px;
}
.select-wrap::before {
  z-index: 1;
  width: 11px;
  height: 7px;
  position: absolute;
  right: 15px;
  top: calc(50% - 4px);
  content: "";
  pointer-events: none;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, #910100 50.01%) no-repeat top left/55% 100%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #910100 50.01%) no-repeat top right/50% 100%;
}

.select-box {
  display: flex;
}
.select-box .select-wrap:nth-of-type(2) {
  margin-left: 20px;
}

select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #c9caca;
  color: #828c9a;
  width: 100%;
  background-color: #fff;
}

select option {
  background-color: #c9caca;
  color: #333;
  border-top: 1px solid #fff;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

.select-wrap.select-primary:before {
  color: #fff;
}

.select-wrap.select-primary > select {
  background: #0084B4;
  color: #fff;
  border-color: #0084B4;
}

.select-wrap.select-primary > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

.select-wrap.select-inverse:before {
  color: #fff;
}

.select-wrap.select-inverse > select {
  color: #fff;
  border-color: #fff;
}

.select-wrap.select-inverse > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  font-size: 16px;
  padding: 8px 12px;
  border: 1px solid #c9caca;
  background: #fff;
}

input::-moz-placeholder {
  color: #999999;
}

input::placeholder {
  color: #999999;
}

/* IE */
input:-ms-input-placeholder {
  color: #999999;
}

/* Edge */
input::-ms-input-placeholder {
  color: #999999;
}

.input-box {
  display: flex;
}
.input-box .input-wrap:nth-of-type(2) {
  margin-left: 20px;
}

.input-wrap {
  width: 340px;
}

.input-select-wrap {
  display: flex;
  align-items: center;
}
.input-select-wrap .radio {
  margin-left: 20px;
}

a.form-privacy {
  font-size: 1.2rem;
  padding-left: 20px;
  position: relative;
  color: #910100;
  text-decoration: underline;
}
a.form-privacy::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #910100 #910100 transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
}

.thanks__heading {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 2.8rem;
  color: #000034;
}
.thanks__text {
  text-align: center;
  margin-top: 35px;
}
.thanks-tel {
  width: 455px;
  margin: 40px auto 0;
  background-image: url(../images/icon_tel.svg);
  background-size: 44px 44px;
  padding-left: 60px;
}
.thanks-tel a {
  font-size: 4rem;
  line-height: 1;
  color: #910100;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
}
.thanks-tel__des {
  letter-spacing: -0.04em;
  text-indent: -0.04em;
}

@media screen and (max-width: 768px) {
  .radio {
    display: flex;
    flex-wrap: wrap;
  }
  .radio__item {
    width: 50%;
  }
  .radio__item:nth-of-type(n+2) {
    margin-left: 0;
  }
  .radio__item:nth-of-type(3) {
    flex-basis: inherit;
  }
  .radio__item:nth-of-type(4) {
    margin-left: 0px;
  }
}
/* table
============================================================================================================ */
.form-table {
  width: 100%;
  margin-top: 40px;
}
.form-table--mg0 {
  margin-top: 0;
}
.form-table th {
  width: 23.2%;
  padding-right: 20px;
  padding-top: 17px;
  vertical-align: top;
}
.form-table td {
  width: 76.8%;
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .form-des {
    margin-top: 40px;
  }
  .form-flow {
    width: 100%;
    margin-top: 40px;
  }
  .form-flow__item {
    font-size: 1rem;
    text-align: center;
  }
  .form-flow__item:nth-of-type(1)::before, .form-flow__item:nth-of-type(2)::before {
    content: "";
    width: 5px;
    height: 40px;
    background-image: url(../images/arrow-flow.jpg);
    background-position: left center;
    background-size: 5px 40px;
    position: absolute;
    right: -5px;
    top: 0;
    z-index: 2;
  }
  .form-notes {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 10px;
  }
  .form {
    width: 100%;
  }
  .form-section {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .form__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .form-table tr {
    width: 100%;
    display: block;
  }
  .form-table th {
    width: 100%;
    display: block;
    padding-top: 0;
  }
  .form-table td {
    width: 100%;
    display: block;
  }
  .input-wrap {
    width: 100%;
  }
  .select-wrap {
    width: 100%;
  }
  .btn-wrap--form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .thanks-tel {
    width: 100%;
  }
  .thanks__des {
    font-size: 1.2rem;
  }
}
table.basic {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #7F7169;
  font-size: 1.3rem;
  table-layout: fixed;
}

table.form input[type=text],
table.form input[type=email],
table.form input[type=tel],
table.form select,
table.form textarea {
  width: 100%;
  font-size: 16px;
  padding: 5px;
  border: none;
  background: #fff;
}

table.form textarea {
  width: 100%;
  height: 168px;
}

table.form td input::-moz-placeholder, table.form td textarea::-moz-placeholder {
  color: #e3e3e3;
}

table.form td input::placeholder,
table.form td textarea::placeholder {
  color: #e3e3e3;
}

table.form td.td_check {
  display: flex;
  flex-wrap: wrap;
}

table.form td.td_check span {
  margin-right: 10px;
}

input[type=radio], input[type=checkbox] {
  visibility: hidden;
  width: 0;
  height: 0;
  display: block;
}

table.form td.select_td {
  position: relative;
}

table.form td.select_td::after {
  content: "";
  position: absolute;
  left: 415px;
  top: calc(50% - 5px);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #4c4c4c;
  pointer-events: none;
}

table.form td small {
  display: block;
}

table.form td select {
  width: 420px;
  height: 43px;
  padding: 0 40px 0 20px;
  border: none;
  font-size: 15px;
  background: #fff;
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), border 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 1px solid #ececec;
}

table.form input[type=radio] {
  margin-right: 4px;
}

table.form select {
  height: 48px;
}

.required {
  font-size: 1.4rem;
}

.confirm_btn_box {
  justify-content: center;
  padding-left: 0;
}

table .w10 {
  width: 10%;
}

table .w15 {
  width: 15%;
}

table .w20 {
  width: 20%;
}

table .w25 {
  width: 25%;
}

table .w30 {
  width: 30%;
}

table .w35 {
  width: 35%;
}

table .w40 {
  width: 40%;
}

table .w45 {
  width: 45%;
}

table .w50 {
  width: 50%;
}

@media screen and (max-width: 768px) {
  table.basic th {
    width: 30.167%;
  }
  table.basic td {
    width: 69.833%;
    padding: 10px;
  }
  table.basic2 {
    margin-top: 1em;
  }
  table.basic2 tr:first-of-type th:not(:first-of-type) {
    display: none;
  }
  table.basic2 tr {
    width: 100%;
    display: block;
  }
  table.basic2 th {
    width: 100%;
    display: block;
    padding: 0.5em;
    border: none;
  }
  table.basic2 tr:not(:first-of-type) th {
    background-color: #c8e2ff;
    margin-bottom: 0.25em;
    padding: 0.25em 0.5em;
    font-size: 1.4rem;
  }
  table.basic2 tr:first-of-type th:first-of-type {
    margin-bottom: 0.5em;
  }
  table.basic2 td {
    width: 100%;
    display: block;
    padding: 0;
    border: none;
    margin-bottom: 0.25em;
    padding-bottom: 0.25em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    text-align: left;
    vertical-align: top;
    position: relative;
    font-size: 1.4rem;
  }
  table.basic2 td:not(:last-of-type) {
    border-bottom: 1px solid #efefef;
  }
  table.basic2 td:last-of-type {
    margin-bottom: 1em;
  }
  table.basic2 td:before {
    content: attr(data-label);
    text-align: left;
    margin-right: 1.1em;
  }
  table.basic2 td:after {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #0072ff;
    position: absolute;
    left: 5em;
    top: calc(50% - 0.5px);
  }
  table.form,
  table.form tbody,
  table.form tr {
    width: 100%;
    display: block;
  }
  table.form tr {
    padding: 0 0 10px;
    margin-bottom: 10px;
  }
  table.form tr:nth-last-of-type(1) {
    padding-bottom: 30px;
  }
  table.form th {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 5px;
    font-size: 1.5rem;
    text-align: left;
  }
  table.form td {
    width: 100%;
    display: block;
    word-wrap: break-word;
    padding: 0;
  }
  table.form input[type=text],
  table.form input[type=email],
  table.form input[type=tel],
  table.form textarea {
    width: 100%;
    font-size: 1.4rem;
    padding: 5px;
    padding-left: 0;
  }
  table.form tr:nth-last-of-type(1) th,
  table.form tr:nth-last-of-type(1) td {
    padding-top: 0;
    padding-bottom: 0;
  }
  table.form tr:nth-last-of-type(1) td textarea {
    margin-bottom: 5px;
  }
  .radio-input + label {
    display: block;
  }
  .radio-input + label::before {
    top: 7px;
  }
  .radio-input:checked + label::after {
    top: 10px;
  }
  table.form td.select_td::after {
    left: calc(100% - 20px);
  }
  table.form td select {
    padding: 5px;
    width: 100%;
    height: auto;
  }
  .form_btn {
    flex-direction: column-reverse;
    margin-bottom: 2em;
  }
  .form_btn button {
    width: 60%;
    margin: 0 auto;
  }
  .form_btn button:nth-of-type(2) {
    margin-left: auto;
    margin-bottom: 1em;
  }
  .required_btn_box {
    padding-left: 0;
    margin: 1em 0 2em;
    flex-direction: column;
  }
}
/* ヘッダー
============================================================================================================ */
.body_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

#header {
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  background-color: #C1272D;
}

.header__wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header-left {
  width: 260px;
  height: 58px;
  background-color: #754C24;
  padding: 20px 32px 18px 65px;
}
.header-left a {
  display: block;
  width: 162px;
  height: 19px;
}
.header-center {
  width: 250px;
  height: 57px;
  position: absolute;
  left: calc(50% - 125px);
  top: 17px;
  z-index: 3;
}
.header-center__up {
  width: 250px;
  height: 12px;
  line-height: 1;
}
.header-center__down {
  width: 42px;
  height: 42px;
  position: absolute;
  left: calc(50% - 21px);
  bottom: 0;
}
.header__logo {
  width: 100%;
  max-width: 168px;
  margin-left: 10px;
}
.header-right {
  margin-left: auto;
  display: flex;
}
.header-right__item {
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header-right__item::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  transform: scaleX(0.5);
  transform-origin: 100% 0;
}
.header-right__item:nth-of-type(1) .svg_box {
  width: 31px;
  padding-top: 30px;
}
.header-right__item:nth-of-type(1) img {
  width: 31px;
  height: 30px;
}
.header-right__item:nth-of-type(2) img {
  width: 40px;
  height: 28px;
}
.header-right__item:nth-of-type(3) img {
  width: 36px;
  height: 29px;
}
.header-right__item:nth-of-type(4) img {
  width: 30px;
  height: 29px;
}
.header-right__item:nth-of-type(5) img {
  width: 29px;
  height: 28px;
}
.header-right__item:nth-of-type(6) img {
  width: 23px;
  height: 29px;
}
.header-right__item:nth-of-type(7) img {
  width: 45px;
  height: 17px;
}
.header-right-language {
  width: 231px;
  background-color: #C1272D;
  height: 210px;
  padding: 30px 20px;
  min-height: 0;
  position: absolute;
  left: -171px;
  bottom: -210px;
  text-align: right;
  transform: scaleY(0);
  transform-origin: top right;
  transition: all 0.6s;
}
.header-right-language__item a {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.5rem;
}
.header-right-language.active--language {
  transform: scaleY(1);
}
.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-icon__text {
  font-size: 1.2rem;
}
.header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.header__under {
  width: 100%;
  margin-top: 30px;
  border-top: 3px solid #D05C31;
}

a.blockl--lang {
  width: 50%;
}
a.blockl--lang:nth-of-type(2) {
  left: inherit;
  right: 0;
}

@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #754C24;
  }
  .header__wrapper {
    width: 100%;
    align-items: center;
  }
  .header-center {
    display: none;
  }
  .header__upper {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 15px;
  }
  .header-left {
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    margin-left: 17px;
  }
  .header-right__item {
    width: 60px;
    height: 60px;
    background-color: #C1272D;
    /* &:nth-last-of-type(n+2){
      &::before{
        content: none;
      }
    } */
    /* &:nth-last-of-type(n+3){
      display: none;
    } */
  }
  .header-right__item::before {
    content: none;
  }
  .header-right__item:nth-last-of-type(n+2):not(.header-right__item--language, :nth-of-type(1)) {
    display: none;
  }
  .header-right__item:nth-of-type(1) {
    display: flex;
  }
  .header-right__item:nth-of-type(1)::before {
    position: absolute;
    top: 0;
    left: inherit;
    right: 0;
    width: 1px;
    height: 100%;
    transform: scaleX(0.5);
    transform-origin: 100% 0;
    background-color: #fff;
    content: "";
  }
  .header-right__item--language {
    display: flex;
  }
  .header-right__item--language::before {
    position: absolute;
    top: 0;
    left: inherit;
    right: 0;
    width: 1px;
    height: 100%;
    transform: scaleX(0.5);
    transform-origin: 100% 0;
    background-color: #fff;
    content: "";
  }
  .header-icon__text {
    display: none;
  }
  .header__under {
    margin-top: 0;
  }
  .header-right__item--search {
    display: none;
  }
}
/* nav
------------------------------------------------------------- */
nav {
  z-index: 2;
  position: fixed;
  right: 0;
  top: 58px;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  padding-top: 55px;
  padding-bottom: 55px;
  transform: scaleY(0);
  transform-origin: top right;
  transition: all 0.6s;
}
nav.active {
  transform: scaleY(1);
}

.nav__box {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  height: 100%;
  /*overflow: auto;*/
  -webkit-overflow-scrolling: touch;
}

.navToggle {
  display: block;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 29px;
  height: 22px;
  cursor: pointer;
  z-index: 3;
  text-align: center;
}
.navToggle::before {
  content: "";
  width: 29px;
  height: 9px;
  background-image: url(../images/icon_menu.svg);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: -14px;
  display: block;
}
.navToggle span {
  display: block;
  position: absolute; /* .navToggleに対して */
  width: 100%;
  border-bottom: solid 3px #fff;
  transition: 0.35s ease-in-out;
}
.navToggle span:nth-child(1) {
  top: 0px;
}
.navToggle span:nth-child(2) {
  right: 0;
  top: 9px;
}
.navToggle span:nth-child(3) {
  top: 18px;
}
.navToggle.active {
  top: 15px;
}
.navToggle.active span:nth-child(1) {
  top: 7px;
  left: 0;
  transform: rotate(-45deg);
}
.navToggle.active span:nth-child(2) {
  display: none;
}
.navToggle.active span:nth-child(3) {
  top: 7px;
  transform: rotate(45deg);
}

.mainmenu {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-wrap: wrap;
  transition: padding 0.3s;
  margin-top: -30px;
}
.mainmenu__item {
  padding-bottom: 0;
  margin-top: 30px;
  margin-bottom: 0;
  width: 16.6666666667%;
  padding-right: 25px;
}
.mainmenu__link {
  display: inline-block;
  font-size: 1.3rem;
  position: relative;
  color: #000;
  font-weight: normal;
  text-align: right;
}
.mainmenu__link::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  right: -24px;
  top: calc(50% - 5px);
}
.mainmenu__link:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
}
.mainmenu__midashi {
  display: none;
}

a.mainmenu__link {
  text-align: left;
  line-height: 1.2;
  font-size: 1.5rem;
  color: #fff;
}

_:-ms-lang(x)::-ms-backdrop, .mainmenu {
  -ms-transition: none;
  transition: none;
}

.mainmenu__link:hover::after,
.mainmenu__link.current::after {
  transform: scaleX(1);
}

.sp-sns {
  display: none;
}

@media screen and (max-width: 768px) {
  nav {
    position: fixed;
    right: 0;
    top: 60px;
    background-color: transparent;
    width: 100%;
    padding: 0;
    transform: scaleY(0);
    transform-origin: top right;
    transition: all 0.6s;
  }
  nav.active {
    transform: scaleY(1);
    /* height: 100%; */
    overflow-y: scroll;
  }
  .nav__box {
    width: 100%;
    height: 100%;
    max-height: 600px;
    padding: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background-color: #231815;
    flex-wrap: wrap;
  }
  .navToggle {
    display: block;
    top: 18px;
    left: 18px;
    width: 25px;
    height: 23px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
  }
  .navToggle::before {
    content: none;
  }
  .navToggle.active {
    top: 24px;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #C1B496;
    border-radius: 2px;
    transition: 0.35s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 0px;
  }
  .navToggle span:nth-child(2) {
    right: 0;
    top: 9px;
  }
  .navToggle.active span:nth-child(1) {
    top: 3px;
    left: 0;
  }
  .navToggle.active span:nth-child(3) {
    top: 3px;
  }
  .nav__search {
    width: 100%;
    position: relative;
    padding-top: 5px;
  }
  .nav__search-in {
    width: 54.4%;
    margin: 0 auto;
    position: relative;
  }
  .nav__search-in::before {
    content: "";
    width: 19px;
    height: 19px;
    background-image: url(../images/icon_search.svg);
    position: absolute;
    top: 4px;
    right: 0;
  }
  .nav__search input[type=text] {
    border: none;
    border-bottom: 1px solid #B1B1B1;
    font-size: 1.2rem;
    padding: calc(10px - 1.2rem * (1.7 - 1) / 2) 2px;
  }
  .mainmenu {
    margin-top: 0;
    position: relative;
  }
  .mainmenu:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transform: scaleY(0.5);
    transform-origin: 100% 0;
  }
  .mainmenu__item {
    position: relative;
    z-index: 1;
    width: 50%;
    margin-top: 0;
    padding: 0;
  }
  .mainmenu__item:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transform: scaleY(0.5);
    transform-origin: 100% 0;
  }
  .mainmenu__item.active {
    z-index: 2;
  }
  .mainmenu__item:nth-of-type(odd):after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    transform: scaleX(0.5);
    transform-origin: 100% 0;
  }
  .mainmenu__item:nth-last-of-type(1)::before {
    content: none;
  }
  .mainmenu__link::before {
    content: none;
  }
  a.mainmenu__link {
    display: block;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(12px - 1.4rem * (1.2 - 1) / 2) 15px calc(14px - 1.4rem * (1.2 - 1) / 2);
  }
  a.mainmenu__link--1 {
    display: none;
  }
  .sp-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 245px;
    margin: 0 auto;
    padding: 30px 0;
  }
  .sp-sns__item {
    width: 40px;
    position: relative;
  }
  .sp-sns__item:nth-of-type(2) {
    width: 36px;
    margin-left: 30px;
  }
  .sp-sns__item:nth-of-type(3) {
    width: 29px;
    margin-left: 33px;
  }
  .sp-sns__item:nth-of-type(4) {
    width: 29px;
    margin-left: 37px;
  }
  .sp-sns__item:nth-of-type(5) {
    width: 23px;
    margin-top: 30px;
  }
  .sp-sns__item:nth-of-type(6) {
    width: 46px;
    margin-left: 30px;
    margin-top: 30px;
  }
}
/* footer
============================================================================================================ */
footer {
  background-image: url(../images/bg_footer.png);
  background-position: center bottom -200px;
  background-size: 100% auto;
  background-color: Transparent;
  padding-top: 140px;
}
.lower footer {
  padding-top: 580px;
  margin-top: -370px;
}

.totop {
  position: absolute;
  right: 0;
  top: -30px;
  width: 58px;
  height: 58px;
  background-color: #C1272D;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.totop img {
  width: 33px;
  height: 38px;
}
.totop a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.footer {
  width: 1000px;
  margin: 0 auto;
  padding: 0 0 30px;
  position: relative;
}
.footer__logo {
  width: 1000px;
  height: 75px;
}
.footer-contact {
  width: 1000px;
  margin: 35px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-contact__item {
  position: relative;
  letter-spacing: 0.04em;
}
.footer-contact__item:nth-last-of-type(1) {
  width: 220px;
}
.footer-contact__item:nth-last-of-type(1) a {
  display: none;
}
.footer-contact__logo {
  width: 161px;
  height: 20px;
}
.footer-contact__address {
  margin-top: calc(15px - 1.5rem * (1.7 - 1) / 2);
}
.footer-contact__address p {
  font-size: 1.5rem;
  color: #ffffff;
}
.footer-contact__tel {
  font-family: arvo, serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}
.footer-contact__tel span:nth-of-type(1) {
  font-size: 1.9rem;
}
.footer-contact__tel span:nth-of-type(2) {
  font-size: 3.6rem;
}
.footer-contact__tel p {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.footer-contact__tel-des {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.5;
}
.footer-menu {
  width: 100%;
  margin: -5px auto 0;
  display: flex;
  justify-content: space-between;
}
.footer-menu:nth-of-type(2) {
  justify-content: flex-start;
}
.footer-menu__item {
  flex: 0 0 auto;
}
.footer-menu__item:nth-last-of-type(1) {
  margin-right: 0;
}
.footer-menu:nth-of-type(2) .footer-menu__item:nth-of-type(1) {
  margin-right: 87px;
}

.footer-menu__link {
  display: block;
  font-size: 1.5rem;
  margin-top: 20px;
  margin: calc(20px - 1.5rem * (1.7 - 1) / 2) 0px calc(0px - 1.5rem * (1.7 - 1) / 2) 0px;
  position: relative;
  padding-left: 15px;
  color: #ffffff !important;
}
.footer-menu__link::before {
  content: "";
  width: 4px;
  height: 4px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
}
.footer-link {
  display: flex;
  margin: calc(20px - 1.3rem * (1.7 - 1) / 2) 0px calc(0px - 1.3rem * (1.7 - 1) / 2) 0px;
}
.footer-link__item {
  margin-right: 25px;
}
.footer-link__item a {
  font-size: 1.3rem;
  color: #ffffff;
  position: relative;
  padding-left: 13px;
}
.footer-link__item a::before {
  content: "";
  width: 4px;
  height: 4px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
}
.footer-privacy {
  display: flex;
  align-items: center;
  width: 1150px;
  margin: 40px auto 0;
}
.footer-privacy__item {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}
.footer-privacy__item:nth-of-type(2) {
  margin-left: 100px;
  max-width: 276px;
}
.footer-privacy__item:nth-of-type(3) {
  margin-left: 60px;
  max-width: 423px;
}
.footer-privacy__item:nth-of-type(3) .footer-privacy__image {
  mix-blend-mode: multiply;
}
.footer-privacy__text {
  margin-left: 15px;
  font-size: 1.2rem;
}
.footer-under {
  display: flex;
  align-items: center;
  margin: calc(30px - 1.2rem * (1.7 - 1) / 2) 0px calc(0px - 1.2rem * (1.7 - 1) / 2);
}
.footer-lang {
  display: flex;
}
.footer-lang__item {
  border-left: 1px solid #fff;
}
.footer-lang__item:nth-last-of-type(1) {
  border-right: 1px solid #fff;
}
.footer-lang__item a {
  font-size: 1.2rem;
  color: #ffffff;
  padding: calc(0px - 1.2rem * (1.7 - 1) / 2) 20px;
}

.copyright {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  margin: calc(0px - 1.2rem * (1.7 - 1) / 2) 0px calc(0px - 1.2rem * (1.7 - 1) / 2) auto;
}

@media screen and (max-width: 768px) {
  .totop {
    top: -88px;
    right: 15px;
  }
  footer {
    padding-top: 160px;
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 22%, rgb(0, 0, 0) 100%), url(../images/bg_footer_sp.png);
    background-position: center top, center top;
  }
  .lower footer {
    padding-top: 190px;
    margin-top: -70px;
  }
  .footer {
    width: 100%;
    padding: 0px 8% 35px;
    position: relative;
  }
  .footer__logo {
    width: 100%;
    height: auto;
  }
  .footer-menu {
    flex-direction: column;
  }
  .footer-menu-wrap {
    width: 100%;
  }
  .footer-menu__link {
    margin: calc(25px - 1.5rem * (1.7 - 1) / 2) 0px calc(0px - 1.5rem * (1.7 - 1) / 2) 0px;
  }
  .footer-menu__link::before {
    width: 6px;
    height: 6px;
  }
  .footer-contact {
    width: 100%;
    padding: 0;
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact__item {
    width: 100%;
  }
  .footer-contact__item:nth-of-type(2) {
    margin-top: 15px;
  }
  .footer-contact__item:nth-of-type(3) {
    margin: calc(10px - 1.3rem * (1.7 - 1) / 2) 0px calc(0px - 1.3rem * (1.7 - 1) / 2) 0px;
  }
  .footer-contact__item:nth-of-type(4) {
    margin-top: 30px;
    width: 100%;
  }
  .footer-contact__logo {
    width: 162px;
    height: 20px;
  }
  .footer-contact__address {
    font-size: 1.5rem;
    margin: calc(15px - 1.5rem * (1.7 - 1) / 2) 0px calc(0px - 1.5rem * (1.7 - 1) / 2) 0px;
  }
  .footer-contact__tel span:nth-of-type(1) {
    font-size: 1.6rem;
  }
  .footer-contact__tel span:nth-of-type(2) {
    font-size: 2.8rem;
  }
  .footer-contact__tel-des p {
    font-size: 1.3rem;
  }
  .footer-sns {
    width: 100%;
    padding: 20px 10px 10px;
  }
  .footer-sns__wrap {
    justify-content: space-around;
    margin-top: calc(10px - 16px * (1.7 - 1) / 2);
  }
  .footer-sns__item {
    width: 50px;
  }
  .footer-sns__item:nth-of-type(n+2) {
    margin-left: 0;
  }
  .footer-sns__item .mailmagazine-text {
    width: 78px;
    height: 24px;
    background-image: url(../images/mailmagazine_text_sp.png);
    top: -25px;
    left: -15px;
    padding: 0;
  }
  .footer-sns__item .mailmagazine-text span {
    font-size: 1em;
    transform: scale(0.6);
    display: block;
    white-space: nowrap;
    margin-left: -13px;
  }
  .footer-sns__text {
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    margin-top: calc(7px - 1rem * (1.1 - 1) / 2);
  }
  .footer-privacy {
    display: none;
  }
  .footer-link {
    flex-direction: column;
    margin-top: 5px;
  }
  .footer-link__item {
    margin: calc(25px - 1.3rem * (1.7 - 1) / 2) 0px calc(0px - 1.3rem * (1.7 - 1) / 2) 0px;
  }
  .footer-lang {
    display: none;
  }
  .footer-under {
    width: 100%;
    flex-direction: column;
    margin: calc(30px - 1.2rem * (1.7 - 1) / 2) 0px calc(0px - 1.2rem * (1.7 - 1) / 2) 0px;
  }
}/*# sourceMappingURL=style.css.map */