@charset "UTF-8";
:root {
  --yumincho: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --yugothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Arial,
    "メイリオ", Meiryo, sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--yumincho);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

img,
iframe,
video {
  max-width: 100%;
  height: auto;
}

#page_top {
  width: 72px;
  height: 38px;
  position: fixed;
  right: 30px;
  bottom: -50px;
  z-index: 990;
}
@media (max-width: 767px) {
  #page_top {
    width: 65px;
    right: 20px;
  }
}

.min {
  font-family: var(--yumincho);
}

.go {
  font-family: var(--yugothic);
}

.only-sp {
  display: none;
}
@media (max-width: 767px) {
  .only-sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .only-pc {
    display: none;
  }
}

body.preload * {
  transition: none !important;
}

/************
****
form
****/
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=file],
textarea {
  width: 100%;
  border: 1px solid #c4c4c4;
  background: #f3f3f3;
  color: #333;
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: var(--yugothic);
  font-size: 1em;
}

input[type=text],
input[type=email] {
  height: 50px;
}

.inner {
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

ul,
ol {
  list-style: none;
}

.page {
  padding: 100px 0;
  padding-top: 0;
}
@media (max-width: 767px) {
  .page {
    padding: 70px 0;
    padding-top: 0;
  }
}

.breadcrumb-wrap {
  padding: 0 20px;
}
.breadcrumb-wrap .breadcrumb {
  background: #f5f5f5;
  margin: 0;
  padding: 14px 15px;
  font-size: 11px;
  line-height: 1;
}
.breadcrumb-wrap .breadcrumb a,
.breadcrumb-wrap .breadcrumb span {
  color: #999;
}
.breadcrumb-wrap .breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb-wrap .breadcrumb .sep {
  position: relative;
}
.breadcrumb-wrap .breadcrumb .sep::after {
  content: "";
  border-right: 1px solid #6d6d6d;
  border-bottom: 1px solid #6d6d6d;
  transform: rotate(-45deg);
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 13px;
  margin-right: 10px;
}

.notfound h1 {
  font-size: 40px;
  text-align: center;
  margin: 40px 0;
}
.notfound .block01 {
  margin-bottom: 70px;
  text-align: center;
}
.notfound .block01 a {
  color: #181818;
}
.notfound .block01 p {
  font-size: 15px;
  line-height: 32px;
  text-align: center;
}
.notfound .block01 p br {
  display: none;
}
.notfound .block01 p a {
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.notfound .block01 p a:after {
  content: "";
  background: #181818;
  height: 1px;
  width: 0;
  transition: 0.3s;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 1px;
}
.notfound .block01 p a:hover:after {
  width: 100%;
}
@media (max-width: 767px) {
  .notfound h1 {
    font-size: 30px;
  }
}

.return {
  margin: 60px 0 0 0;
  text-align: center;
}

.return a {
  display: inline-block;
  border: 1px solid #ccc;
  width: 300px;
  height: 54px;
  font-size: 14px;
  font-family: var(--yumincho);
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 52px;
  color: #000;
}

.return a:hover {
  background: #eee;
}

@media (max-width: 767px) {
  .return {
    margin: 40px 0 0 0;
    margin: 10.66vw 0 0 0;
    text-align: center;
  }
  .return a {
    padding: 10px 20px;
    padding: 2.66vw 5.33vw;
    font-size: 13px;
    width: auto;
    line-height: 1.6;
    height: auto;
    font-size: 3.46vw;
    font-weight: normal;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 768px) {
  .fadein {
    opacity: 0;
    transform: scale(1.15);
    filter: blur(25px);
  }
  .fadein.faded {
    transition: 0.8s;
    animation-delay: 0;
    animation-name: mainTxtAnimation;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
  }
}
@keyframes mainTxtAnimation {
  0% {
    opacity: 1;
    transform: scale(1.15);
    filter: blur(25px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes slideRight {
  00% {
    transform: translateX(50px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.text-center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.l-header {
  position: absolute;
  width: 100%;
  z-index: 99;
}
.l-header__in {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.l-header .logo {
  padding-top: 16px;
  padding-left: 30px;
}
.l-header .nav {
  display: flex;
}
.l-header .btn-order {
  position: absolute;
  right: 0;
}
.l-header .primary-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: stretch;
  margin-right: 49px;
  padding-top: 18px;
}
.l-header .primary-menu .menu-item {
  text-align: left;
  margin: 0 42px 0 0;
  display: block;
}
.l-header .primary-menu .menu-item:last-child {
  margin: 0;
}
.l-header .primary-menu .menu-item a {
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  font-family: var(--yumincho);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  position: relative;
}
.l-header:not(.l-header__scroll) .primary-menu .menu-item a {
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
}
.l-header:not(.l-header__scroll) .primary-menu .menu-item a::after {
  content: "";
  background: #fff;
  width: 1px;
  height: 0;
  transition: 0.3s;
  display: inline-block;
  position: absolute;
  top: 0;
  right: -6px;
}
.l-header:not(.l-header__scroll) .primary-menu .menu-item a:hover::after {
  height: 100%;
}
.l-header__scroll {
  position: absolute;
  top: -70px;
  height: 70px;
  background: #171717;
  transition: top 0.3s;
  /*  .btn-order {
     img {
       display: block;
     }
   } */
}
.l-header__scroll .l-header__in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.l-header__scroll .logo {
  padding: 10px;
  padding-left: 40px;
}
.l-header__scroll .logo img {
  display: block;
  width: 60px;
}
.l-header__scroll .primary-menu {
  align-items: center;
  padding: 0;
}
.l-header__scroll .primary-menu .menu-item a::after {
  content: "";
  background: #fff;
  height: 1px;
  width: 0;
  transition: 0.3s;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.l-header__scroll .primary-menu .menu-item a:hover::after {
  width: 100%;
}
.l-header.fixed {
  position: fixed;
  top: 0;
}
.l-header.static {
  height: 150px;
  position: static;
  background: #fff;
}
.l-header.static .primary-menu .menu-item a {
  color: #000;
}
.l-header.static .primary-menu .menu-item a::after {
  background: #000;
}
@media (max-width: 767px) {
  .l-header.static {
    height: auto;
  }
}
@media (max-width: 639px) {
  .l-header .logo {
    margin-left: 5.33333vw;
    width: 18.66667vw;
    padding: 0;
    padding-top: 2.66667vw;
    padding-bottom: 1.6vw;
  }
  .l-header .logo img {
    width: 50px;
  }
  .l-header:not(.l-header__scroll) .logo {
    width: 20.8vw;
    padding: 0;
    margin: 5.33333vw;
    height: auto;
  }
  .l-header__scroll {
    height: auto;
  }
  .l-header .primary-menu {
    display: none;
  }
  .l-header .btn-order {
    width: 20.8vw;
    padding: 0;
    height: auto;
  }
}

body.preload .l-header__scroll {
  display: none;
}

.l-footer {
  padding-top: 95px;
  padding-bottom: 70px;
  background-color: #d34d37;
}
@media (max-width: 767px) {
  .l-footer {
    padding-top: 70px;
  }
}
.l-footer__in {
  max-width: 1280px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer .footer-top {
  display: flex;
  align-items: end;
  margin-left: -10px;
  margin-right: -10px;
}
.l-footer .footer-top .ftt-col {
  width: 33.33%;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .l-footer .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .l-footer .footer-top .ftt-col {
    width: auto;
  }
}
.l-footer .shop-btn a {
  transition: 0.25s ease-out;
}
.l-footer .shop-btn a:hover {
  opacity: 0.7;
}
.l-footer .footer-menu {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.l-footer .footer-menu .menu-item {
  display: block;
  margin: 0 20px;
}
.l-footer .footer-menu .menu-item a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--yumincho);
  transition: 0.25s ease-out;
}
@media (hover: hover) {
  .l-footer .footer-menu .menu-item a:hover {
    opacity: 0.7;
  }
}
.l-footer .footer-sns ul {
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
  margin-left: -18px;
  margin-right: -18px;
}
.l-footer .footer-sns ul li {
  display: block;
  margin: 0 10px;
  width: 50px;
}
.l-footer .footer-sns ul li img {
  display: block;
}
.l-footer .footer-sns ul li a {
  transition: 0.25s ease-out;
}
.l-footer .footer-sns ul li a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .l-footer .footer-sns ul {
    max-width: 200px;
  }
  .l-footer .footer-sns ul li {
    margin: 0 4px;
  }
}
.l-footer .footer-logo {
  text-align: center;
}
.l-footer .footer-logo img {
  vertical-align: middle;
}
.l-footer .copyright {
  text-align: center;
  color: #fff;
  margin-top: 30px;
  font-family: var(--yumincho);
  font-weight: 600;
}
@media (max-width: 1279px) {
  .l-footer .footer-menu {
    margin-top: 70px;
  }
  .l-footer .footer-sns ul li {
    margin: 0 8px;
  }
  .l-footer .footer-logo img {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .l-footer .footer-top {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .l-footer .footer-logo {
    order: 1;
    margin: 0 auto 5vw;
  }
  .l-footer .footer-logo img {
    max-width: 44.33333vw;
  }
  .l-footer .footer-sns {
    order: 2;
    margin: 0 auto 5vw;
  }
  .l-footer .shop-btn {
    order: 3;
  }
  .l-footer .footer-menu {
    margin-top: 50px;
    flex-wrap: wrap;
  }
  .l-footer .footer-menu .menu-item {
    width: 100%;
    text-align: center;
    margin: 0;
    margin-bottom: 3vw;
  }
  .l-footer .footer-menu .menu-item a {
    font-size: 16px;
  }
}

.onlineFixed {
  position: fixed;
  top: 304px;
  z-index: 9;
  right: 0;
  transform: translateY(-50%);
}
.onlineFixed a {
  display: block;
  width: 54px;
  height: 215px;
  color: #000;
  background: url(../img/bg-fixbtn.jpg) no-repeat center/cover;
  padding: 10px 0;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease-out;
  border: 1px solid #707070;
}
@media (hover: hover) {
  .onlineFixed a:hover {
    opacity: 0.8;
  }
}
.onlineFixed span {
  display: block;
  position: relative;
  font-size: 17px;
  padding: 48px 10px 0 10px;
  letter-spacing: 0.15em;
}
.onlineFixed span::before {
  content: "";
  position: absolute;
  top: 4px;
  background: url(../img/icon-5.svg) no-repeat top center/contain;
  background-size: 27px 27px;
  width: 27px;
  height: 27px;
  display: inline-block;
}
@media (max-width: 639px) {
  .onlineFixed {
    bottom: 0;
    left: 0;
    top: inherit;
    transform: translateY(0);
  }
  .onlineFixed a {
    height: 50px;
    width: 100%;
    writing-mode: horizontal-tb;
  }
  .onlineFixed span {
    font-size: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .onlineFixed span::before {
    position: relative;
    top: 0;
    margin-right: 10px;
  }
}

:root {
  --gray: #707070;
}

.main-kv {
  position: relative;
  z-index: 1;
}
.main-kv_in {
  position: relative;
  z-index: 1;
}
.main-kv .block-note {
  padding: 35px;
  position: relative;
  z-index: 1;
  background: #b32b00;
  margin-left: auto;
  margin-right: auto;
  /* @include pc{
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
  } */
}
.main-kv .block-note .text {
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .main-kv .block-note {
    padding: 20px 15px;
  }
}
@media (min-width: 768px) {
  .main-kv .block-note__in {
    margin-left: auto;
    margin-right: auto;
    max-width: 78%;
  }
  .main-kv .block-note .text {
    font-size: 18px;
  }
}
.main-kv .main-kv-img img {
  display: block;
  width: 100%;
}
.main-kv .main-kv-slider {
  position: relative;
}
.main-kv .main-kv-slider::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: 1;
}
.main-kv .main-kv-slider .item-slide img {
  display: block;
  width: 100%;
}
.main-kv__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  font-family: var(--yumincho);
  font-size: 53px;
  line-height: 1.6;
  z-index: 3;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.52em;
  text-shadow: 0px 3px 6px #000;
  color: rgb(255, 255, 255);
  background: url(../img/link_arrow_white_lb.png) left 6px bottom 6px/14px no-repeat, url(../img/link_arrow_white_lt.png) left 6px top 6px no-repeat, url(../img/link_arrow_white_rt.png) right 6px top 6px no-repeat, url(../img/link_arrow_white_rb.png) right 6px bottom 6px no-repeat;
  background-size: 14px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  -o-border-image: initial;
     border-image: initial;
  padding: 10px 15px;
  padding-top: 36px;
}
@media (max-width: 1279px) {
  .main-kv__text {
    font-size: 43px;
    line-height: 1.3;
    letter-spacing: 0.32em;
  }
}
@media (max-width: 639px) {
  .main-kv .main-kv-slider .item-slide img {
    aspect-ratio: 9/8;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main-kv .main-kv-img img {
    aspect-ratio: 9/5;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main-kv__text {
    font-size: 14px;
    line-height: 1.6;
    z-index: 3;
    letter-spacing: 0.52em;
    padding-top: 26px;
    background-size: 10px;
  }
}

.sec-bg {
  padding-top: 200px;
  /*  background-image: url(../img/01_sec01_img02.jpg),
    url(../img/01_sec01_img03.jpg), url(../img/01_sec01_img01.jpg),
    url(../img/01_sec01_img04.jpg), url(../img/01_sec01_img05.jpg);
  background-repeat: repeat-x;
  background-position: top, center 1362px, center 2670px, center 4738px,
    center 6775px; */
  background: url(../img/bg2.jpg);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .sec-bg {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .sec-bg {
    padding-top: 80px;
  }
}
.sec-hictory .img-txt1 {
  text-align: center;
  margin: 0 auto 100px;
}
@media (max-width: 1279px) {
  .sec-hictory .img-txt1 {
    margin: 0 auto 70px;
  }
  .sec-hictory .img-txt1 img {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .sec-hictory .img-txt1 {
    width: 40vw;
    margin-bottom: 50px;
  }
}
.sec-hictory .block-txt {
  margin-bottom: 70px;
}
.sec-hictory .block-txt p {
  text-align: center;
  font-weight: 600;
  line-height: 2;
  font-size: 23px;
}
.sec-hictory .block-txt .txt1 {
  margin-bottom: 50px;
}
@media (max-width: 1279px) {
  .sec-hictory .block-txt p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .sec-hictory .block-txt p {
    font-size: 4vw;
    line-height: 9.86667vw;
  }
  .sec-hictory .block-txt .txt1 {
    margin-bottom: 12vw;
  }
}

.box-txt {
  border: 1px solid var(--gray);
  padding: 35px;
  max-width: 980px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
}
.box-txt__in {
  border: 1px solid var(--gray);
  padding: 70px 20px 90px 20px;
}
@media (max-width: 767px) {
  .box-txt__in {
    padding: 50px 20px 50px 20px;
  }
}
.box-txt__text {
  text-align: center;
  font-size: 22px;
  margin-top: 100px;
}
.box-txt__ttl {
  background: url(../img/icon-1.png) no-repeat center top 15px;
  background-size: 34px;
  position: relative;
  z-index: 3;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  border-left: 2px solid #000000;
  border-right: 2px solid #000000;
  padding: 62px;
  padding-top: 65px;
  padding-bottom: 15px;
  font-size: 40px;
  letter-spacing: 0.5em;
}
.box-txt__ttl::after, .box-txt__ttl::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #000000;
}
.box-txt__ttl::before {
  left: 10px;
}
.box-txt__ttl::after {
  right: 10px;
}
@media (max-width: 767px) {
  .box-txt__ttl {
    background-position: center top 10px;
    padding: 22px;
    padding-top: 46px;
    font-size: 20px;
    background-size: 30px;
  }
}
.box-txt__top {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}
.box-txt__top .img {
  width: 25%;
}
.box-txt__top .img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1279px) {
  .box-txt {
    padding: 30px;
  }
  .box-txt__in {
    padding: 60px 20px 70px 20px;
  }
  .box-txt__ttl {
    background-size: 30px;
    padding: 42px;
    padding-top: 60px;
    padding-bottom: 15px;
    font-size: 30px;
  }
  .box-txt__text {
    font-size: 18px;
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .box-txt {
    width: 90%;
    padding: 20px;
  }
  .box-txt__in {
    padding: 50px 20px 50px 20px;
  }
  .box-txt__ttl {
    background-position: center top 10px;
    padding: 22px;
    padding-top: 46px;
    font-size: 20px;
    background-size: 30px;
  }
  .box-txt__top .img {
    width: 80px;
  }
  .box-txt__text {
    font-size: 14px;
    margin-top: 50px;
  }
}
@media (max-width: 639px) {
  .box-txt {
    padding: 10px;
  }
  .box-txt__in {
    padding: 30px 10px 30px 10px;
  }
  .box-txt__top .img {
    width: 65px;
  }
}

.ribbon-logo {
  position: relative;
}
.ribbon-logo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 76px;
  width: 64px;
  height: 100px;
  background: url(../img/ribbon-logo.png) no-repeat top center/contain;
}
@media (max-width: 767px) {
  .ribbon-logo::after {
    width: 35px;
    right: 46px;
  }
}

.ribbon {
  position: relative;
}
.ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 64px;
  height: 100px;
  background: url(../img/ribbon.png) no-repeat top center/contain;
}
@media (max-width: 767px) {
  .ribbon::after {
    width: 35px;
  }
}
@media (max-width: 639px) {
  .ribbon::after {
    width: 30px;
  }
}

.ribbon-nb {
  position: relative;
}
.ribbon-nb::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 64px;
  height: 100px;
  background: url(../img/ribbon-nb.svg) no-repeat top center/contain;
}
@media (max-width: 1279px) {
  .ribbon-nb::after {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .ribbon-nb::after {
    width: 35px;
  }
}
@media (max-width: 639px) {
  .ribbon-nb::after {
    width: 30px;
  }
}

.block-top {
  margin-left: auto;
  margin-right: auto;
  width: 52%;
  max-width: 980px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .block-top {
    width: 90%;
  }
}

.block-01 {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: flex-end;
  margin-top: 85px;
  margin-top: 185px;
}
.block-01 .box-txt {
  width: 43%;
  margin-right: -50px;
}
.block-01 .box-txt__in {
  padding-top: 140px;
}
.block-01 .box-txt.ribbon::after {
  top: -1px;
}
.block-01 .box-txt__ttl {
  background-image: url(../img/icon-2.svg);
  background-repeat: no-repeat;
  background-position: center top 5px;
  background-size: 50px;
  padding-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 0;
}
.block-01 .box-txt__ttl__2 {
  background-image: url(../img/icon-3.svg);
  padding-top: 80px;
}
.block-01 .box-txt__ttl__3 {
  background-image: url(../img/icon-4.svg);
  background-size: 50px;
  padding-top: 90px;
}
.block-01 .box-txt__ttl::before {
  left: 8px;
}
.block-01 .box-txt__ttl::after {
  right: 8px;
}
.block-01 .box-txt p {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 50px;
  font-weight: 400;
}
.block-01 .box-img {
  width: 53%;
  position: relative;
}
.block-01.block-rev {
  flex-direction: row-reverse;
}
.block-01.block-rev .box-img img {
  margin-left: auto;
  display: block;
}
.block-01.block-rev .box-txt {
  margin-left: -50px;
  margin-right: 0;
}
@media (max-width: 1279px) {
  .block-01 {
    margin-top: 70px;
  }
  .block-01 .box-txt {
    width: 47%;
  }
  .block-01 .box-txt p {
    font-size: 18px;
  }
  .block-01 .box-txt__in {
    padding-top: 100px;
  }
  .block-01 .box-txt__ttl {
    background-size: 36px;
    padding-top: 80px;
  }
  .block-01 .box-txt__ttl__2 {
    padding-top: 80px;
  }
  .block-01 .box-txt__ttl__3 {
    background-size: 35px;
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .block-01 .box-txt {
    margin: 0 auto;
    width: 90%;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    max-width: inherit;
    min-height: inherit;
    padding: 10px;
  }
  .block-01 .box-txt__ttl {
    background-size: 40px;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .block-01 .box-txt p {
    font-size: 14px;
    margin-top: 35px;
  }
  .block-01 .box-img {
    width: 90%;
    margin-top: -5.33333vw;
    position: static;
  }
  .block-01.block-rev .box-txt {
    margin: 0 auto;
  }
}
@media (max-width: 639px) {
  .block-01 .box-txt__in {
    padding-top: 50px;
  }
}

.block-02 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  margin-top: 186px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.block-02 .box-img {
  width: 39%;
  position: relative;
  padding-bottom: 20%;
}
.block-02 .box-img img {
  display: block;
  width: 100%;
  aspect-ratio: 3/3.54;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-02 .box-txt {
  width: 60%;
  max-width: 100%;
}
.block-02 .box-txt.ribbon-nb::after {
  right: 154px;
}
.block-02 .box-txt__in {
  padding: 0;
}
.block-02 .box-txt__head {
  background-color: #000;
  height: 296px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-02 .box-txt__head-ttl {
  writing-mode: vertical-rl;
  letter-spacing: 0.23em;
  font-size: 26px;
  background: url(../img/link_arrow_white_lb.svg) no-repeat left 4px bottom 4px, url(../img/link_arrow_white_lt.svg) no-repeat left 4px top 4px, url(../img/link_arrow_white_rt.svg) no-repeat right 4px top 4px, url(../img/link_arrow_white_rb.svg) no-repeat right 4px bottom 4px;
  background-size: 14px;
  width: 82px;
  height: 270px;
  line-height: 78px;
  text-align: center;
  color: #fff;
  border: 1px solid #ffffff;
  text-shadow: 0px 3px 6px #000;
}
.block-02 .box-txt__body {
  padding: 50px;
  padding-top: 85px;
}
.block-02 .box-txt__body-ttl {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.625;
  margin-bottom: 50px;
}
.block-02 .box-txt__body .group-1 + .group-1 {
  margin-top: 60px;
}
.block-02 .box-txt__body .group-1 p {
  font-size: 25px;
  margin-bottom: 13px;
  font-family: var(--yugothic);
}
.block-02 .box-txt__body .group-1 ul li {
  display: flex;
}
.block-02 .box-txt__body .group-1 ul li + li {
  margin-top: 40px;
}
.block-02 .box-txt__body .group-1 ul li .img {
  width: 215px;
}
.block-02 .box-txt__body .group-1 ul li .txt {
  padding-left: 35px;
  width: calc(100% - 215px);
}
.block-02 .box-txt__body .group-1__note {
  font-size: 17px;
  line-height: 1.5882352941;
  margin-top: 35px;
  text-align: center;
  font-family: var(--yugothic);
}
.block-02 .block2-bg1 {
  background: url(../img/block2-bg1.jpg) no-repeat center/cover;
}
.block-02 .block2-bg2 {
  background: url(../img/block2-bg2.jpg) no-repeat center/cover;
}
@media (max-width: 1279px) {
  .block-02 .box-txt.ribbon-nb::after {
    right: 104px;
  }
  .block-02 .box-txt__head {
    height: 255px;
  }
  .block-02 .box-txt__head-ttl {
    width: 74px;
    height: 240px;
    line-height: 70px;
  }
  .block-02 .box-txt__body {
    padding: 40px;
    padding-top: 65px;
  }
  .block-02 .box-txt__body-ttl {
    font-size: 20px;
    margin-bottom: 35px;
  }
  .block-02 .box-txt__body .group-1 + .group-1 {
    margin-top: 40px;
  }
  .block-02 .box-txt__body .group-1 p {
    font-size: 20px;
  }
  .block-02 .box-txt__body .group-1 ul li + li {
    margin-top: 30px;
  }
  .block-02 .box-txt__body .group-1 ul li .img {
    width: 130px;
  }
  .block-02 .box-txt__body .group-1 ul li .txt {
    padding-left: 20px;
    width: calc(100% - 130px);
  }
  .block-02 .box-txt__body .group-1__note {
    font-size: 15px;
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .block-02 {
    flex-wrap: wrap;
    margin-top: 70px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .block-02 .box-img,
  .block-02 .box-txt {
    width: 90vw;
  }
  .block-02 .box-txt {
    margin-left: auto;
    margin-right: auto;
  }
  .block-02 .box-txt.ribbon-nb::after {
    right: 54px;
  }
  .block-02 .box-txt__head {
    height: 196px;
    justify-content: center;
  }
  .block-02 .box-txt__head-ttl {
    letter-spacing: 0.1em;
    font-size: 14px;
    width: 72px;
    height: 170px;
    line-height: 68px;
    background-size: 10px;
  }
  .block-02 .box-txt__body {
    padding: 20px 15px;
  }
  .block-02 .box-txt__body-ttl {
    font-size: 14px;
  }
  .block-02 .box-txt__body .group-1 + .group-1 {
    margin-top: 30px;
  }
  .block-02 .box-txt__body .group-1 p {
    font-size: 14px;
  }
  .block-02 .box-txt__body .group-1 ul li + li {
    margin-top: 20px;
  }
  .block-02 .box-txt__body .group-1 ul li .img {
    width: 75px;
  }
  .block-02 .box-txt__body .group-1 ul li .txt {
    padding-left: 15px;
    width: calc(100% - 75px);
  }
  .block-02 .box-txt__body .group-1__note {
    font-size: 13px;
    margin-top: 25px;
  }
  .block-02 .box-img {
    margin-top: 0;
    padding-bottom: 0;
  }
  .block-02 .box-img img {
    aspect-ratio: 1;
  }
}
.block-02.block-rev {
  flex-direction: row-reverse;
}
.block-02.block-rev .box-img img {
  margin-left: auto;
  display: block;
}
.block-02.block-rev .box-txt {
  margin-left: -50px;
  margin-right: 0;
}
@media (max-width: 767px) {
  .block-02.block-rev {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .block-02.block-rev .box-txt {
    margin-left: auto;
    margin-right: auto;
  }
}

.form-order {
  margin-top: 70px;
  width: 78%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 70px;
  max-width: 1920px;
}
@media (max-width: 1279px) {
  .form-order {
    width: 85%;
  }
}
@media (max-width: 767px) {
  .form-order {
    width: 90%;
  }
}
.form-order .form__head {
  border: 1px solid var(--gray);
  padding: 42px;
  background-color: #fff;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
}
.form-order .form__head.ribbon-nb::after {
  right: 114px;
}
.form-order .form__head__in {
  border: 1px solid var(--gray);
  background: #7996a4 url(../img/bg-form.svg) no-repeat bottom center/contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
}
.form-order .form__head-ttl {
  font-size: 56px;
  line-height: 1.4;
  font-weight: 600;
  font-family: var(--yumincho);
  text-align: center;
  color: #fff;
  text-shadow: 0px 3px 6px #000;
  background: url(../img/link_arrow_white_lb.svg) no-repeat left 5px bottom 5px, url(../img/link_arrow_white_lt.svg) no-repeat left 5px top 5px, url(../img/link_arrow_white_rt.svg) no-repeat right 5px top 5px, url(../img/link_arrow_white_rb.svg) no-repeat right 5px bottom 5px;
  padding: 10px 20px;
  border: 1px solid #fff;
}
.form-order .form__head-text {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--yugothic);
  text-align: center;
  color: #fff;
}
.form-order .form__head-text a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-out;
  text-shadow: none;
}
.form-order .form__head-text a:hover {
  color: #d24d37;
}
@media (max-width: 1279px) {
  .form-order .form__head-text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .form-order .form__head-text {
    font-size: 14px;
  }
}
.form-order .form__head__body {
  margin-top: 20px;
  color: #fff;
  font-size: 24px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #fff;
  text-shadow: none;
}
.form-order .form__head__body ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.form-order .form__head__body .ttl {
  text-align: center;
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 1.1em;
}
.form-order .form__head__body .arrow-b {
  display: block;
  margin: 0 30px;
}
.form-order .form__head__body .sum-note {
  margin-top: 2em;
}
@media (max-width: 1279px) {
  .form-order .form__head__body {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .form-order .form__head__body {
    font-size: 14px;
  }
}
@media (max-width: 1279px) {
  .form-order .form__head .form__head {
    padding: 3%;
  }
  .form-order .form__head .form__head.ribbon-nb::after {
    right: 64px;
  }
  .form-order .form__head__in {
    padding-top: 45px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .form-order .form__head-ttl {
    font-size: 45px;
  }
  .form-order .form__head-text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .form-order .form__head {
    padding: 10px;
  }
  .form-order .form__head.ribbon-nb::after {
    right: 54px;
  }
  .form-order .form__head__in {
    padding-top: 40px;
    padding-bottom: 25px;
    /*    background-size: cover;
    background-position: left 7% center; */
    background-size: 90rem;
    background-position: left 6% bottom;
    position: relative;
  }
  .form-order .form__head__in::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    bottom: 0;
    background: url(../img/bg-form.svg) no-repeat bottom center/cover;
    background-position: right 32% center;
    z-index: 1;
    pointer-events: none;
  }
  .form-order .form__head-ttl {
    font-size: 26px;
    text-shadow: 0px 3px 6px #000;
    background-size: 10px;
    position: relative;
    z-index: 3;
  }
  .form-order .form__head-text {
    font-size: 14px;
    text-shadow: 0px 3px 6px #000;
    position: relative;
    z-index: 3;
  }
}
.form-order .form__body {
  margin-top: 74px;
  padding: 42px;
  background-color: #fff;
  border: 1px solid var(--gray);
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
}
.form-order .form__body .form-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.form-order .form__body .form-group .required {
  background-color: #8c8c8c;
  display: inline-block;
  padding: 5px;
  line-height: 1;
  color: #fff;
  margin-left: 10px;
  font-size: 14px;
}
.form-order .form__body .form-group dt {
  width: 30%;
  padding: 10px 0;
  padding-right: 10px;
}
.form-order .form__body .form-group dd {
  width: 70%;
}
@media (max-width: 767px) {
  .form-order .form__body .form-group dt {
    width: 100%;
    padding-top: 0;
  }
  .form-order .form__body .form-group dd {
    width: 100%;
  }
}
.form-order .form__body .agreement {
  font-family: var(--yugothic);
}
.form-order .form__body .agreement .checkInput {
  transform: scale(1.2);
}
.form-order .form__body .agreement .item label {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.form-order .form__body .agreement label.error {
  display: block;
  text-align: center;
  margin-top: 1em;
}
.form-order .form__body .policy {
  height: 150px;
  overflow-y: scroll;
  background: #f3f3f3;
  padding: 25px 20px 15px;
  color: #595959;
  font-size: 13px;
  line-height: 24px;
  font-family: var(--yugothic);
}
.form-order .form__body .policy .policyTitle {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
}
.form-order .form__body .policy p {
  margin-bottom: 10px;
}
.form-order .form__body .policy ol {
  margin-bottom: 20px;
  margin-left: 1em;
}
.form-order .form__body .postal-mark {
  display: inline-block;
  margin-right: 5px;
}
.form-order .form__body .postal_code {
  width: 10em;
}
.form-order .form__body .form-group__vertical {
  flex-direction: column;
}
.form-order .form__body .form-group__vertical dt,
.form-order .form__body .form-group__vertical dd {
  width: 100%;
}
@media (max-width: 1279px) {
  .form-order .form__body {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .form-order .form__body {
    max-width: 95%;
    padding: 20px;
    margin-top: 45px;
  }
}
@media (max-width: 479px) {
  .form-order .form__body {
    max-width: 100%;
  }
}

.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=file],
.form textarea {
  width: 450px;
  max-width: 100%;
}
.form label.fail-alert {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  font-family: var(--yugothic);
}
@media (max-width: 767px) {
  .form input[type=text],
  .form input[type=email],
  .form input[type=tel],
  .form input[type=file],
  .form textarea {
    width: 100%;
  }
}

.img-l,
.img-r {
  position: absolute;
  z-index: 1;
  transition: 1s;
}
.img-l img,
.img-r img {
  display: block;
}

.img-l {
  left: 0;
}
.img-l__1 {
  top: 0;
}
.img-l__2 {
  top: 1920px;
}
.img-l__3 {
  bottom: 3900px;
}
.img-l__4 {
  bottom: 2100px;
}
.img-l__5 {
  bottom: 0;
}
@media (max-width: 767px) {
  .img-l__1 img {
    width: 45.06667vw;
  }
  .img-l__2 {
    top: 1400px;
  }
  .img-l__2 img {
    width: 45.06667vw;
  }
  .img-l__3 img {
    width: 45.06667vw;
  }
  .img-l__4 img {
    width: 45.06667vw;
  }
  .img-l__5 img {
    width: 45.06667vw;
  }
}

.img-r {
  right: 0;
}
.img-r__1 {
  top: 736px;
}
.img-r__2 {
  top: 3270px;
}
.img-r__3 {
  bottom: 2800px;
}
.img-r__4 {
  bottom: 738px;
}
@media (max-width: 767px) {
  .img-r__1 img {
    width: 45.06667vw;
  }
  .img-r__2 img {
    width: 45.06667vw;
  }
  .img-r__3 img {
    width: 45.06667vw;
  }
  .img-r__4 img {
    width: 45.06667vw;
  }
}

.sec-content {
  position: relative;
  z-index: 2;
}

.img_rv {
  transform: scaleX(-1);
}

@media screen and (min-width: 768px) {
  .fadein-right {
    transition: 1s;
    opacity: 0;
  }
  .fadein-right.faded {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
    animation-name: slideRight;
  }
  .fadein-left {
    transition: 1s;
    opacity: 0;
  }
  .fadein-left.faded {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    animation-name: slideLeft;
  }
}
.checkbox-list label {
  font-family: var(--yugothic);
  display: flex;
  gap: 0.5em;
}
.checkbox-list input {
  transform: scale(1.2);
}

.color_scheme_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.color_scheme_wrap .img {
  margin-top: 0.5em;
  padding-left: 1em;
}
@media (max-width: 767px) {
  .color_scheme_wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.item-note {
  margin-top: 0.5em;
  font-size: 0.9em;
  font-family: var(--yugothic);
}
@media (min-width: 768px) {
  .item-note {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}

.form-loading {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5019607843);
  z-index: -1;
}

.form-loading .wpcf7-spinner {
  transform: scale(3);
  visibility: visible;
}

.submitting .form-loading {
  visibility: visible;
  opacity: 1;
  z-index: 9999999999;
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.btnArea {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.btnArea button {
  background: #181818;
  color: #fff;
  padding: 20px;
  font-size: 15px;
  max-width: 350px;
  width: 100%;
  letter-spacing: 0.1em;
  position: relative;
  transition: 0.3s;
}
.btnArea button::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
  right: 20px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.btnArea button:hover {
  opacity: 0.7;
}

.step2 .btnArea {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #dadada;
}
.step2 .btnArea .back {
  margin-right: 30px;
  max-width: 260px;
  border: 1px solid #bababa;
  background-color: #fff;
  color: #000;
  padding-left: 35px;
}
.step2 .btnArea .back::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
  left: 20px;
  right: initial;
  border-left: 1px solid #525252;
  border-top: 1px solid #525252;
}
.step2 .btnArea .send {
  max-width: 260px;
}
.step2 dd {
  font-family: var(--yugothic);
  padding: 10px 0;
}
@media (max-width: 767px) {
  .step2 .btnArea {
    flex-direction: column-reverse;
  }
  .step2 .btnArea .back {
    margin-right: 0;
    margin-top: 20px;
  }
  .step2 dd {
    padding: 0;
  }
}

.step .step-title {
  text-align: center;
  font-size: 16px;
  line-height: 36px;
  margin-bottom: 25px;
}

.form-wrap {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  padding: 40px 0 70px;
  border-bottom: none;
}

.form-img-preview {
  max-width: 250px;
}
.form-img-preview figcaption {
  font-size: 85%;
}

.tab {
  display: none;
}
.tab.current {
  display: block;
}

.form-pm {
  margin: 30px 0;
}

.btn-payment {
  display: inline-block;
  position: relative;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
}
.btn-payment-input {
  background: #B32B00;
  color: #fff;
  padding: 20px;
  font-size: 15px;
  max-width: 100%;
  width: 350px;
  letter-spacing: 0.1em;
}
.btn-payment::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
  right: 20px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.btn-payment:hover {
  opacity: 0.7;
}

.other-title {
  width: 100%;
  margin: 0 auto;
  padding: 70px 0;
  text-align: center;
}
.other-title__text {
  display: inline-block;
  position: relative;
  border-left: 2px solid #181818;
  border-right: 2px solid #181818;
  height: auto;
  min-height: 200px;
  max-height: 320px;
  margin: 0 auto;
  padding: 20px 45px;
  writing-mode: vertical-rl;
  font-size: 21px;
  font-family: var(--yumincho);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.4em;
  text-align: center;
  color: #181818;
}
.other-title__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  border-left: 1px solid #181818;
  height: 100%;
}
.other-title__text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  border-right: 1px solid #181818;
  height: 100%;
}
@media (max-width: 767px) {
  .other-title {
    padding: 35px 0;
  }
  .other-title__text {
    padding: 20px 25px;
  }
}

.table-list {
  width: 100%;
}

.table-list th {
  white-space: nowrap;
  vertical-align: top;
  border-bottom: 1px solid #eee;
  padding: 20px 50px 20px 0;
  font-family: var(--yumincho);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: left;
}

.table-list td {
  vertical-align: top;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.table-list dt {
  margin: 15px 0 10px 0;
  font-weight: bold;
}

.table-list dt.tp0 {
  margin-top: 0;
}

.table-list dd {
  margin: 10px 0;
}

.table-list dd:last-of-type {
  margin-bottom: 0;
}

.pickup {
  background: #f6f6f6;
  padding: 20px 30px;
  text-align: center;
}

.pickup.left {
  display: inline-block;
  text-align: left;
}

.caution {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.4em;
  font-size: 13px;
  line-height: 1.7;
  color: #777;
}

.caution:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .table-list {
    width: 100%;
    margin: 20px 0;
    margin: 5.33vw 0;
  }
  .table-list th {
    display: block;
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: left;
    border-bottom: 0;
    padding: 0;
  }
  .table-list td {
    display: block;
    border-bottom: 1px solid #eee;
    margin: 0 0 15px 0;
    padding-top: 0;
    padding-bottom: 15px;
    font-weight: 400;
  }
  .table-list dl {
    margin: 15px 0;
    margin: 4vw 0;
  }
  .table-list dl:first-child {
    margin-top: 0;
  }
  .table-list dl:last-child {
    margin-bottom: 0;
  }
  .table-list dt {
    margin: 0 0 10px 0;
    margin: 0 0 2.66vw 0;
    font-weight: bold;
  }
  .table-list dt.tp0 {
    margin-top: 0;
  }
  .table-list dd {
    margin: 10px 0;
    margin: 2.66vw 0;
  }
  .table-list dd:last-of-type {
    margin-bottom: 0;
  }
  .ul-list {
    margin: 10px 0;
    margin: 2.66vw 0;
  }
  .ul-list:first-of-type {
    margin-top: 0;
  }
  .ul-list:last-of-type {
    margin-bottom: 0;
  }
  .ul-list li {
    position: relative;
    margin: 0;
    padding: 0 0 0 1.4em;
  }
  .ul-list li:before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
  }
  .ul-list.sc li:before {
    content: "";
    position: absolute;
    top: 1.8vw;
    left: 0.5vw;
    display: block;
    border: 1px solid #888;
    background: #181818;
    box-shadow: 0 0 0 2px #fff inset;
    width: 2.13vw;
    height: 2.13vw;
    transform: rotateZ(45deg);
  }
}
.privacy-policy .sec01 {
  text-align: justify;
}
.privacy-policy .sec01 .block01 {
  margin-bottom: 70px;
}
.privacy-policy .sec01 .block01 p {
  font-size: 15px;
  line-height: 32px;
}
.privacy-policy .sec01 .block02 div {
  margin-bottom: 35px;
}
.privacy-policy .sec01 .block02 .box6 {
  margin-bottom: 50px;
}
.privacy-policy .sec01 .block02 div h2 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 9px;
}
.privacy-policy .sec01 .block02 {
  font-size: 14px;
  line-height: 30px;
}
.privacy-policy .sec01 .block02 dd {
  margin-left: 27px;
}
.privacy-policy .sec01 .block02 ol {
  position: relative;
  margin: 0 0 8px;
  padding: 0;
}
.privacy-policy .sec01 .block02 ol li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em;
}
.privacy-policy .sec01 .block02 ol li span {
  position: absolute;
  left: 0;
  margin: 0;
}
.privacy-policy .sec01 .block03 {
  background: #f5f5f5;
  padding: 45px 0 45px;
  text-align: center;
}
.privacy-policy .sec01 .block03 h3 {
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid #000;
  max-width: 600px;
  padding-bottom: 23px;
  margin: 0 auto 23px;
}
.privacy-policy .sec01 .block03 p {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
}
.privacy-policy .sec01 .block03 p span.tel:first-child {
  margin-right: 2em;
}
.privacy-policy .sec01 .block03 p span.time {
  font-size: 14px;
}
.privacy-policy .tel {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .privacy-policy .h1_box {
    background: url(../../img/contact/h1_bg_sp.jpg) no-repeat center center;
    background-size: cover;
    padding: 7vw 0;
  }
  .privacy-policy .h1_box h1 {
    padding: 0;
    line-height: 15.33333vw;
    width: 15.33333vw;
    height: 42vw;
    font-size: 4vw;
    letter-spacing: 0.1em;
  }
  .privacy-policy .sec01 {
    padding-bottom: 40px;
    font-size: 15px;
  }
  .privacy-policy .sec01 .block01 {
    margin-bottom: 9vw;
  }
  .privacy-policy .sec01 .block01 p,
  .privacy-policy .sec01 .block02 {
    font-size: 15px;
    margin-bottom: 4vw;
    line-height: 7vw;
  }
  .privacy-policy .sec01 .block02 div h2 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .privacy-policy .sec01 .block02 div {
    margin-bottom: 20px;
  }
  .privacy-policy .sec01 .block02 dd {
    margin-left: 2em;
  }
  .privacy-policy .sec01 .block02 .box6 {
    margin-bottom: 10vw;
  }
  .privacy-policy .sec01 .block03 {
    padding: 20px;
  }
  .privacy-policy .sec01 .block03 h3 {
    font-size: 18px;
    font-size: 1.5rem;
    text-align: center;
    max-width: inherit;
    padding-bottom: 4vw;
    margin: 0 auto 4vw;
  }
  .privacy-policy .sec01 .block03 p {
    font-size: 15px;
    line-height: 1.4;
  }
  .privacy-policy .sec01 .block03 p span.tel:first-child {
    margin-right: 1em;
  }
  .privacy-policy .sec01 .block03 p span.time {
    font-size: 15px;
    margin-top: 3vw;
    display: block;
    text-align: center;
  }
  .privacy-policy .tel {
    display: block;
  }
}