@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #404040;
  line-height: 1;
}
@media screen and (min-width: 901px) {
  body {
    min-width: 1200px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 900px) {
  body {
    padding-top: 50px;
  }
}

@media screen and (min-width: 901px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .pc {
    display: none !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.red {
  color: #980225;
}

.bold {
  font-weight: bold;
}

.layer.active {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/*--------------------------
HEADER
----------------------------------*/
#globalHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}
#globalHeader .inner {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 60px;
  background-color: #fff;
  box-shadow: 2px 0 6px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 901px) {
  #globalHeader .logo {
    width: 140px;
    margin-left: 3vw;
    margin-top: 5px;
  }
}
@media screen and (max-width: 900px) {
  #globalHeader .inner {
    height: 50px;
    padding: 0 3vw;
  }
  #globalHeader .logo {
    width: 120px;
    margin-top: 5px;
  }
  #globalHeader .sp-menu a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
  }
  #globalHeader .sp-menu a.active span:nth-of-type(1) {
    animation-name: menuAnim1;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a.active span:nth-of-type(2) {
    animation-name: menuAnim2;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a.active span:nth-of-type(3) {
    animation-name: menuAnim3;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a span {
    position: absolute;
    left: 50%;
    width: 25px;
    height: 3px;
    margin-left: -12.5px;
    background-color: #980225;
  }
  #globalHeader .sp-menu a span:nth-of-type(1) {
    top: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim4;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a span:nth-of-type(2) {
    top: 18px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim5;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a span:nth-of-type(3) {
    top: 26px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim6;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  @keyframes menuAnim1 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 18px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
  }
  @keyframes menuAnim2 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      opacity: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes menuAnim3 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 18px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @keyframes menuAnim4 {
    0% {
      top: 18px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    100% {
      top: 10px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes menuAnim5 {
    0% {
      opacity: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      opacity: 1;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes menuAnim6 {
    0% {
      top: 18px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    100% {
      top: 26px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
}
#globalHeader .global-navi.pc {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-right: 20px;
}
#globalHeader .global-navi.pc ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#globalHeader .global-navi.pc ul li a {
  position: relative;
  display: block;
  padding: 0 25px;
  height: 60px;
  line-height: 60px;
  color: #404040;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  #globalHeader .global-navi.pc ul li a {
    padding: 0 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1100px) {
  #globalHeader .global-navi.pc ul li a {
    padding: 0 10px;
    font-size: 13px;
  }
}
@media screen and (max-width: 1000px) {
  #globalHeader .global-navi.pc ul li a {
    padding: 0 7px;
    font-size: 12px;
  }
}
#globalHeader .global-navi.pc ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 5px;
  margin-left: -50%;
  background-color: #980225;
  transform: scale(0, 1);
  transition: 0.3s;
}
#globalHeader .global-navi.pc ul li a:hover {
  color: #980225;
}
#globalHeader .global-navi.pc ul li a:hover::before {
  transform: scale(1, 1);
}
#globalHeader .global-navi.pc .btn {
  position: relative;
}
#globalHeader .global-navi.pc .btn a {
  display: block;
  top: 0;
  left: 0;
  width: 170px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  background-color: #980225;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  #globalHeader .global-navi.pc .btn a {
    width: 150px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1050px) {
  #globalHeader .global-navi.pc .btn a {
    width: 130px;
    font-size: 11px;
  }
}
#globalHeader .global-navi.pc .btn a:hover {
  opacity: 0.7;
}
#globalHeader .global-navi.pc .btn a span {
  padding: 5px 0 5px 35px;
  background: url("../images/header-icn.png") no-repeat left center;
}
@media screen and (max-width: 1200px) {
  #globalHeader .global-navi.pc .btn a span {
    background-size: 20px auto;
  }
}
#globalHeader .global-navi.sp {
  position: fixed;
  z-index: 20;
  top: 50px;
  left: 0;
  width: 100%;
  transform: translateY(-150%);
  transition: 0.5s;
  opacity: 0;
}
#globalHeader .global-navi.sp.active {
  opacity: 1;
  transform: translateY(0);
}
#globalHeader .global-navi.sp ul {
  background-color: #980225;
}
#globalHeader .global-navi.sp ul li a {
  display: block;
  padding: 15px 3vw;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  background: url("../images/gnavi-arrow-sp.png") no-repeat 97% center;
  background-size: 12px auto;
}
#globalHeader .global-navi.sp .btn {
  display: none;
}

/*--------------------------
CONTENTS
----------------------------------*/
#contents .contents-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1030px) {
  #contents .contents-inner {
    padding: 0 3vw;
  }
}
#contents .section-title {
  font-size: 34px;
  text-align: center;
  line-height: 1.4;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .section-title {
    font-size: 22px;
    line-height: 1.6;
  }
}
#contents .section-title span:nth-of-type(2) {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  #contents .section-title span:nth-of-type(2) {
    font-size: 12px;
    line-height: 1.6;
  }
}
#contents .c-mv img {
  width: 100%;
}
#contents .c-box01 {
  padding: 40px 0 60px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #contents .c-box01 {
    padding: 20px 0 30px;
  }
}
#contents .c-box01 p {
  font-size: 18px;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .c-box01 p {
    font-size: 16px;
    line-height: 1.8;
  }
}
#contents .c-box01 .img {
  margin-top: 30px;
}
#contents .c-box01 .slider {
  position: relative;
  margin-top: 30px;
  padding: 0 30px;
}
#contents .c-box01 .slider .swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  outline: none;
}
#contents .c-box01 .slider .swiper-prev img {
  width: 20px;
}
#contents .c-box01 .slider .swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  outline: none;
}
#contents .c-box01 .slider .swiper-next img {
  width: 20px;
}
#contents .c-box02 {
  padding: 60px 0 100px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 900px) {
  #contents .c-box02 {
    padding: 30px 0 50px;
  }
}
#contents .c-box02 .box01 {
  position: relative;
}
@media screen and (min-width: 901px) {
  #contents .c-box02 .box01 {
    text-align: right;
  }
  #contents .c-box02 .box01 .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 257px;
  }
  #contents .c-box02 .box01 .img {
    padding-top: 40px;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box02 .box01 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
  }
  #contents .c-box02 .box01 .text {
    padding: 0 3vw 0 3vw;
    width: 35%;
  }
  #contents .c-box02 .box01 .text img {
    width: 100%;
    max-width: 150px;
  }
  #contents .c-box02 .box01 .img {
    width: 65%;
  }
}
#contents .c-box02 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  #contents .c-box02 .list {
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 0 3vw;
  }
}
#contents .c-box02 .list .left {
  margin-top: 100px;
  flex-shrink: 0;
  width: 480px;
  padding: 25px 30px;
  background-color: #f4f2ed;
}
@media screen and (max-width: 900px) {
  #contents .c-box02 .list .left {
    width: 100%;
    order: 2;
    margin-top: 35px;
    padding: 15px 3vw;
  }
}
#contents .c-box02 .list .left .headline {
  padding-left: 60px;
  font-size: 15px;
  font-weight: bold;
  color: #980225;
  line-height: 1.4;
  background: url("../images/sec02-icn01.png") no-repeat left center;
}
@media screen and (max-width: 900px) {
  #contents .c-box02 .list .left .headline {
    padding-left: 40px;
    font-size: 14px;
    background-size: 30px auto;
  }
}
#contents .c-box02 .list .left p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  #contents .c-box02 .list .left p {
    font-size: 13px;
    line-height: 2;
  }
}
#contents .c-box02 .list .left p a {
  color: #404040;
}
@media screen and (max-width: 900px) {
  #contents .c-box02 .list .left p a {
    font-size: 14px;
  }
}
#contents .c-box02 .list .right {
  padding-left: 30px;
}
@media screen and (max-width: 900px) {
  #contents .c-box02 .list .right {
    padding: 0;
    order: 0;
  }
}
#contents .c-box02 .list .right p {
  font-size: 17px;
  line-height: 1.7;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
}
#contents .c-box02 .list .right p:not(:first-child) {
  margin-top: 35px;
}
@media screen and (max-width: 900px) {
  #contents .c-box02 .list .right p:not(:first-child) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box02 .list .right p {
    font-size: 15px;
    line-height: 1.6;
  }
}
#contents .c-box03 {
  padding: 100px 0 50px;
  background: url("../images/sec03-bg.png") no-repeat right center;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #contents .c-box03 {
    padding: 30px 3vw;
  }
}
#contents .c-box03 h2 {
  font-size: 34px;
  color: #fff;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #contents .c-box03 h2 {
    font-size: 20px;
    line-height: 1.8;
  }
}
#contents .c-box03 .list {
  position: relative;
}
@media screen and (min-width: 901px) {
  #contents .c-box03 .list {
    min-height: 670px;
    margin: 90px 40px 0;
    background: url("../images/sec03-arrow.png") no-repeat center center;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box03 .list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    display: -webkit-flex;
    flex-wrap: wrap;
    margin: 25px 0 0 0;
    background: transparent;
  }
}
#contents .c-box03 .list .item {
  position: absolute;
  width: 260px;
  height: 295px;
  padding: 30px 30px 0;
  background-color: #fff;
}
@media screen and (min-width: 901px) {
  #contents .c-box03 .list .item:nth-of-type(1) {
    top: 0;
    left: 50%;
    margin-left: -130px;
  }
  #contents .c-box03 .list .item:nth-of-type(2) {
    right: 0;
    top: 50%;
    margin-top: -197px;
  }
  #contents .c-box03 .list .item:nth-of-type(3) {
    bottom: 0;
    left: 50%;
    margin-left: -130px;
  }
  #contents .c-box03 .list .item:nth-of-type(4) {
    left: 0;
    top: 50%;
    margin-top: -197px;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box03 .list .item {
    position: relative;
    width: 48.5%;
    height: auto;
    padding: 15px 3vw 90px;
  }
  #contents .c-box03 .list .item:nth-of-type(1)::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    z-index: 2;
    width: 85px;
    height: 81px;
    margin-top: 5px;
    background: url("../images/sec03-arrow-sp.png") no-repeat;
    background-size: 100% auto;
  }
  #contents .c-box03 .list .item:nth-of-type(1) {
    order: 1;
  }
  #contents .c-box03 .list .item:nth-of-type(2) {
    order: 2;
    margin-left: 3%;
  }
  #contents .c-box03 .list .item:nth-of-type(3) {
    order: 4;
    margin-left: 3%;
  }
  #contents .c-box03 .list .item:nth-of-type(4) {
    order: 3;
  }
  #contents .c-box03 .list .item:not(:nth-of-type(-n+2)) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 300px) {
  #contents .c-box03 .list .item {
    width: 100%;
    margin-left: 0 !important;
  }
  #contents .c-box03 .list .item:nth-of-type(1)::after {
    content: none;
  }
  #contents .c-box03 .list .item:not(:first-child) {
    margin-top: 30px;
  }
}
#contents .c-box03 .list .item::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 3px;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
}
#contents .c-box03 .list .item .headline {
  text-align: center;
}
#contents .c-box03 .list .item .headline img {
  width: 113px;
}
@media screen and (max-width: 900px) {
  #contents .c-box03 .list .item .headline img {
    width: 113px;
  }
}
#contents .c-box03 .list .item p {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .c-box03 .list .item p {
    font-size: 14px;
    line-height: 2;
  }
}
#contents .c-box03 .list .item .img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
#contents .c-box03 .list .item .img img {
  width: 80px;
}
#contents .c-box04 {
  padding: 150px 0 140px;
}
@media screen and (max-width: 900px) {
  #contents .c-box04 {
    padding: 50px 3vw;
  }
}
#contents .c-box04 h2 {
  font-size: 26px;
  line-height: 1.6;
  text-align: center;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .c-box04 h2 {
    font-size: 18px;
    line-height: 1.8;
  }
}
#contents .c-box04 h2 span {
  font-size: 30px;
}
@media screen and (max-width: 900px) {
  #contents .c-box04 h2 span {
    font-size: 22px;
  }
}
#contents .c-box04 .img {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 901px) {
  #contents .c-box04 .img img {
    width: 808px;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box04 .img {
    margin-top: 40px;
  }
  #contents .c-box04 .img img {
    width: 100%;
    max-width: 400px;
  }
}
#contents .c-box04 p {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  #contents .c-box04 p {
    margin-top: 40px;
    font-size: 14px;
    line-height: 2;
  }
}
#contents .c-box05 h2 {
  padding: 14px 0;
  text-align: center;
  font-size: 34px;
  color: #fff;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
  background-color: #404040;
}
@media screen and (max-width: 900px) {
  #contents .c-box05 h2 {
    padding: 15px 3vw;
    font-size: 22px;
    line-height: 1.8;
  }
}
#contents .c-box05 .sub-title {
  padding: 8px 0;
  background-color: #980225;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #contents .c-box05 .sub-title {
    padding: 5px 3vw;
    font-size: 12px;
    line-height: 1.4;
  }
}
#contents .c-box05 .contents-inner {
  padding-top: 110px;
  padding-bottom: 90px;
}
@media screen and (max-width: 900px) {
  #contents .c-box05 .contents-inner {
    padding: 40px 3vw;
  }
}
#contents .c-box05 .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  #contents .c-box05 .item {
    display: block;
  }
}
#contents .c-box05 .item:not(:first-child) {
  margin-top: 50px;
}
#contents .c-box05 .item .sentence {
  flex-shrink: 0;
  width: 450px;
}
@media screen and (max-width: 900px) {
  #contents .c-box05 .item .sentence {
    width: 100%;
  }
}
#contents .c-box05 .item .sentence .headline {
  position: relative;
}
#contents .c-box05 .item .sentence .headline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 79px;
  height: 79px;
  background: url("../images/sec05-line.png") no-repeat;
}
@media screen and (max-width: 900px) {
  #contents .c-box05 .item .sentence .headline::before {
    left: 10px;
    width: 40px;
    height: 40px;
    background-size: 100% 100%;
  }
}
#contents .c-box05 .item .sentence .headline .number {
  font-size: 66px;
  color: #980225;
  font-style: italic;
  font-family: 'Crimson Text', serif;
}
@media screen and (max-width: 900px) {
  #contents .c-box05 .item .sentence .headline .number {
    font-size: 40px;
  }
}
#contents .c-box05 .item .sentence .headline .title {
  margin-top: -15px;
  padding-left: 60px;
  font-size: 26px;
  color: #980225;
  line-height: 1.4;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .c-box05 .item .sentence .headline .title {
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.8;
  }
}
#contents .c-box05 .item .sentence p {
  margin-top: 20px;
  padding-left: 60px;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  #contents .c-box05 .item .sentence p {
    margin-top: 5px;
    padding-left: 40px;
    font-size: 14px;
    line-height: 2;
  }
}
#contents .c-box05 .item .img {
  padding-top: 50px;
}
@media screen and (min-width: 901px) {
  #contents .c-box05 .item .img img {
    width: 481px;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box05 .item .img {
    margin-top: 30px;
    padding: 0;
    text-align: center;
  }
  #contents .c-box05 .item .img img {
    max-width: 400px;
    width: 100%;
  }
}
#contents .c-box06 {
  padding: 80px 0 70px;
  background: url("../images/sec06-bg.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 {
    padding: 40px 3vw;
  }
}
#contents .c-box06 h2 {
  color: #fff;
  text-align: center;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
  font-size: 34px;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 h2 {
    font-size: 22px;
    line-height: 1.8;
  }
}
#contents .c-box06 .category {
  margin-top: 50px;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .category {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .category {
    margin-top: 30px;
  }
}
#contents .c-box06 .category ul {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .category ul {
    flex-wrap: wrap;
  }
}
#contents .c-box06 .category ul li {
  position: relative;
  margin: 0 25px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .category ul li {
    width: 20%;
    margin: 0;
    text-align: center;
    line-height: 1.4;
  }
}
@media screen and (max-width: 500px) {
  #contents .c-box06 .category ul li {
    width: 33.3%;
  }
  #contents .c-box06 .category ul li:not(:nth-of-type(-n+3)) {
    margin-top: 20px;
  }
}
#contents .c-box06 .category ul li::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin-left: -50%;
  transform: scale(0, 1);
  transition: 0.3s;
}
#contents .c-box06 .category ul li:hover::before, #contents .c-box06 .category ul li.current::before {
  transform: scale(1, 1);
}
#contents .c-box06 .category ul li:hover {
  cursor: pointer;
}
#contents .c-box06 .slider {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider {
    padding: 0 100px;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #contents .c-box06 .slider {
    padding: 0 30px;
  }
}
#contents .c-box06 .slider .swiper-slide {
  background-color: #fff;
}
#contents .c-box06 .slider .swiper-slide .headline {
  padding: 25px 15px;
  color: #fff;
  background-color: #980225;
  line-height: 1.4;
}
@media screen and (min-width: 901px) {
  #contents .c-box06 .slider .swiper-slide .category {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider .swiper-slide .category {
    display: block;
    margin-top: 0;
    padding: 5px;
    background-color: #980225;
  }
  #contents .c-box06 .slider .swiper-slide .category span {
    display: block;
    width: 100%;
    padding: 5px;
    border: 1px solid #fff;
    background-color: #980225;
    border-radius: 3px;
    text-align: center;
    color: #fff;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider .swiper-slide .headline {
    padding: 20px 3vw;
  }
}
#contents .c-box06 .slider .swiper-slide .headline p:nth-of-type(1) {
  font-size: 16px;
  font-weight: bold;
}
#contents .c-box06 .slider .swiper-slide .headline p:nth-of-type(2) {
  margin-top: 10px;
  font-size: 14px;
}
#contents .c-box06 .slider .swiper-slide .content {
  padding: 25px 15px;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider .swiper-slide .content {
    padding: 20px 3vw;
  }
}
#contents .c-box06 .slider .swiper-slide .content p {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider .swiper-slide .content p {
    line-height: 2;
  }
}
#contents .c-box06 .slider .swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -70px;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider .swiper-prev {
    left: 3vw;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider .swiper-prev {
    left: 0;
    width: 30px;
  }
}
@media screen and (max-width: 600px) {
  #contents .c-box06 .slider .swiper-prev {
    left: -1.5vw;
    width: 20px;
  }
}
#contents .c-box06 .slider .swiper-prev:hover {
  cursor: pointer;
  outline: none;
}
#contents .c-box06 .slider .swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -70px;
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider .swiper-next {
    right: 3vw;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box06 .slider .swiper-next {
    right: 0;
    width: 30px;
  }
}
@media screen and (max-width: 600px) {
  #contents .c-box06 .slider .swiper-next {
    right: -1.5vw;
    width: 20px;
  }
}
#contents .c-box06 .slider .swiper-next:hover {
  cursor: pointer;
  outline: none;
}
#contents .c-box07 {
  padding: 90px 0 70px;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 {
    padding: 30px 0;
  }
}
#contents .c-box07 h2 {
  font-size: 34px;
  text-align: center;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 h2 {
    font-size: 22px;
  }
}
#contents .c-box07 .list {
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list {
    margin-top: 25px;
  }
}
#contents .c-box07 .list .item {
  position: relative;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item {
    padding-bottom: 30px;
    background: url("../images/sec07-bg.png") no-repeat right center;
    background-size: cover;
  }
}
#contents .c-box07 .list .item:nth-of-type(2) {
  margin-top: 50px;
}
#contents .c-box07 .list .item::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 440px;
  background: url("../images/sec07-bg.png") no-repeat right center;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item::before {
    content: none;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item::after {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    width: 105%;
    height: calc(100% + 1px);
    background: url("../images/sec07-white-sp.png") no-repeat right center;
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 900px) and (max-width: 400px) {
  #contents .c-box07 .list .item::after {
    width: 110%;
  }
}

#contents .c-box07 .list .item .item-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
#contents .c-box07 .list .item .item-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150px;
  width: 726px;
  height: 100%;
  background: url("../images/sec07-white.png") no-repeat left top;
  background-size: 100% 100%;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner::before {
    content: none;
  }
}
#contents .c-box07 .list .item .item-inner .case {
  position: absolute;
  top: 40px;
  left: -105px;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .case {
    top: 10px;
    left: 3vw;
  }
}
@media screen and (max-width: 900px) and (max-width: 400px) {
  #contents .c-box07 .list .item .item-inner .case {
    left: 2vw;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .case img {
    width: 30px;
  }
}
@media screen and (max-width: 900px) and (max-width: 400px) {
  #contents .c-box07 .list .item .item-inner .case img {
    width: 20px;
  }
}

#contents .c-box07 .list .item .item-inner .information {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .information {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .information .left {
    text-align: center;
  }
}
#contents .c-box07 .list .item .item-inner .information .left .headline {
  padding-top: 40px;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .information .left .headline {
    padding-top: 10px;
  }
}
#contents .c-box07 .list .item .item-inner .information .left .headline .title {
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .information .left .headline .title {
    margin-top: 10px;
    font-size: 12px;
  }
}
#contents .c-box07 .list .item .item-inner .information .left .comment {
  margin-top: 30px;
  font-size: 24px;
  line-height: 1.6;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .information .left .comment {
    margin-top: 20px;
    font-size: 18px;
    line-height: 2;
  }
}
@media screen and (max-width: 380px) {
  #contents .c-box07 .list .item .item-inner .information .left .comment {
    font-size: 16px;
  }
}
@media screen and (max-width: 350px) {
  #contents .c-box07 .list .item .item-inner .information .left .comment {
    font-size: 14px;
  }
}
#contents .c-box07 .list .item .item-inner .information .left .category {
  margin-top: 30px;
}
#contents .c-box07 .list .item .item-inner .information .left .category span {
  display: inline-block;
  width: 150px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #4c4c4c;
  font-size: 12px;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .information .left .category {
    margin-top: 20px;
    text-align: center;
  }
}
#contents .c-box07 .list .item .item-inner .information .right {
  flex-shrink: 0;
  width: 470px;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .information .right {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  #contents .c-box07 .list .item .item-inner .information .right {
    width: 90%;
    margin: 20px auto 0;
  }
}
#contents .c-box07 .list .item .item-inner .before-after {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 20px;
  background-color: #f4f2ed;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .before-after {
    display: block;
    max-width: 469px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 3vw;
  }
}
@media screen and (max-width: 500px) {
  #contents .c-box07 .list .item .item-inner .before-after {
    width: 90%;
    margin: 0 auto;
  }
}
#contents .c-box07 .list .item .item-inner .before-after .before {
  flex-shrink: 0;
  width: 525px;
  padding: 25px;
  padding-right: 80px;
  background: url("../images/sec07-arrow.png") no-repeat 95% center;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .before-after .before {
    width: 100%;
    padding: 0 0 30px 0;
    background: url("../images/sec07-arrow-sp.png") no-repeat center 95%;
    background-size: 30px auto;
  }
}
#contents .c-box07 .list .item .item-inner .before-after .before .headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#contents .c-box07 .list .item .item-inner .before-after .before .headline span:nth-of-type(2) {
  padding-left: 7px;
  font-size: 16px;
  color: #907c4a;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .before-after .before .headline span:nth-of-type(2) {
    font-size: 14px;
  }
}
#contents .c-box07 .list .item .item-inner .before-after .before p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .c-box07 .list .item .item-inner .before-after .before p {
    font-size: 14px;
    line-height: 1.8;
  }
}
#contents .c-box07 .list .item .item-inner .before-after .after {
  margin: 10px 10px 10px 0;
  padding: 15px;
  background-color: #fff;
}
#contents .c-box07 .list .item .item-inner .before-after .after .headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#contents .c-box07 .list .item .item-inner .before-after .after .headline span:nth-of-type(2) {
  padding-left: 7px;
  font-size: 16px;
  color: #980225;
}
#contents .c-box07 .list .item .item-inner .before-after .after p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
#contents .c-box08 {
  padding: 80px 0 100px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 {
    padding: 40px 3vw;
  }
}
#contents .c-box08 .contents-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
#contents .c-box08 .item {
  margin-top: 45px;
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.1);
}
#contents .c-box08 .item .headline {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 30px 50px 40px;
}
@media screen and (min-width: 901px) {
  #contents .c-box08 .item .headline:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .headline {
    padding: 10px 50px 10px 3vw;
  }
}
#contents .c-box08 .item .headline > span:nth-of-type(1) {
  flex-shrink: 0;
  width: 110px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #980225;
  color: #fff;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .headline > span:nth-of-type(1) {
    width: 90px;
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  #contents .c-box08 .item .headline > span:nth-of-type(1) {
    width: 70px;
    font-size: 12px;
  }
}
#contents .c-box08 .item .headline > span:nth-of-type(1) b {
  font-size: 24px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .headline > span:nth-of-type(1) b {
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  #contents .c-box08 .item .headline > span:nth-of-type(1) b {
    font-size: 16px;
  }
}
#contents .c-box08 .item .headline > span:nth-of-type(2) {
  padding-left: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .headline > span:nth-of-type(2) {
    font-size: 18px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 600px) {
  #contents .c-box08 .item .headline > span:nth-of-type(2) {
    font-size: 16px;
  }
}
#contents .c-box08 .item .headline .icn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .headline .icn {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
#contents .c-box08 .item .headline .icn.active span:nth-of-type(1) {
  opacity: 0;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
#contents .c-box08 .item .headline .icn span:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  margin-left: -2px;
  background-color: #404040;
  transition: 0.3s;
}
#contents .c-box08 .item .headline .icn span:nth-of-type(2) {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  margin-top: -2px;
  background-color: #404040;
}
#contents .c-box08 .item .content {
  display: none;
  padding: 0 30px 50px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .content {
    padding: 0 3vw 30px;
  }
}
#contents .c-box08 .item .box01 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box01 {
    display: block;
  }
}
#contents .c-box08 .item .box01::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 29px;
  background: url("../images/sec07-arrow-right-red.png");
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box01::before {
    content: none;
  }
}
#contents .c-box08 .item .box01 > div {
  width: 480px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box01 > div {
    width: 100%;
  }
}
#contents .c-box08 .item .box01 > div.left {
  position: relative;
}
#contents .c-box08 .item .box01 > div.left::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  width: 10px;
  height: 20px;
  background: url("../images/sec07-arrow-right-red.png");
  background-size: 100% auto;
  transform: translateY(0) rotate(90deg);
}
@media screen and (min-width: 901px) {
  #contents .c-box08 .item .box01 > div.left::before {
    content: none;
  }
}
#contents .c-box08 .item .box01 > div.left .box-headline {
  background-color: #f2f2f2;
}
#contents .c-box08 .item .box01 > div.left ul {
  margin-top: 20px;
  padding: 0 10px;
}
#contents .c-box08 .item .box01 > div.left ul li {
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.6;
  background: url("../images/sec08-icn-check.png") no-repeat left top;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box01 > div.left ul li {
    font-size: 14px;
    background-position: left 2px;
  }
}
#contents .c-box08 .item .box01 > div.left ul li:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box01 > div.right {
    margin-top: 30px;
  }
}
#contents .c-box08 .item .box01 > div.right .box-headline {
  background-color: #f7edef;
  color: #980225;
}
#contents .c-box08 .item .box01 > div.right ol {
  margin-top: 20px;
  padding: 0 10px;
  counter-reset: li;
  list-style: none;
}
#contents .c-box08 .item .box01 > div.right ol li {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  margin-left: 1.4em;
  text-indent: -1.4em;
}
#contents .c-box08 .item .box01 > div.right ol li::before {
  margin-right: 10px;
  counter-increment: li;
  content: counter(li) ".";
  color: #980225;
}
#contents .c-box08 .item .box01 > div.right ol li:not(:first-child) {
  margin-top: 10px;
}
#contents .c-box08 .item .box01 > div .box-headline {
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box01 > div .box-headline {
    padding: 10px;
    font-size: 14px;
  }
}
#contents .c-box08 .item .box02 {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box02 {
    margin-top: 30px;
  }
}
#contents .c-box08 .item .box02 .box-headline {
  height: 40px;
  line-height: 40px;
  background-color: #980225;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box02 .box-headline {
    font-size: 14px;
  }
}
#contents .c-box08 .item .box02 .flow {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 901px) {
  #contents .c-box08 .item .box02 .flow img {
    width: 805px;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box02 .flow {
    overflow-x: scroll;
  }
  #contents .c-box08 .item .box02 .flow img {
    width: 805px;
    max-width: 805px;
  }
}
#contents .c-box08 .item .box03 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 50px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box03 {
    display: block;
    margin-top: 30px;
  }
}
#contents .c-box08 .item .box03 .table {
  flex-shrink: 0;
  width: 590px;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box03 .table {
    width: 100%;
  }
}
#contents .c-box08 .item .box03 .table table {
  width: 100%;
}
#contents .c-box08 .item .box03 .table table th, #contents .c-box08 .item .box03 .table table td {
  font-size: 15px;
  vertical-align: middle;
  border: 1px solid #b5b5b5;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box03 .table table th, #contents .c-box08 .item .box03 .table table td {
    font-size: 14px;
    line-height: 2;
  }
}
#contents .c-box08 .item .box03 .table table th {
  width: 100px;
  font-weight: bold;
  color: #980225;
}
#contents .c-box08 .item .box03 .table table td {
  padding: 10px;
}
#contents .c-box08 .item .box03 .img {
  flex-grow: 1;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #contents .c-box08 .item .box03 .img {
    margin-top: 30px;
  }
}
#contents .c-box09 {
  padding: 90px 0;
  background-color: #f4f2ed;
}
@media screen and (max-width: 900px) {
  #contents .c-box09 {
    padding: 40px 3vw;
  }
}
#contents .c-box09 h2 {
  font-size: 34px;
  color: #907c4a;
  text-align: center;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .c-box09 h2 {
    font-size: 22px;
    line-height: 1.6;
  }
}
#contents .c-box09 .list {
  position: relative;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  #contents .c-box09 .list {
    margin-top: 30px;
  }
}
#contents .c-box09 .list::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 42px;
  width: 5px;
  height: calc(100% - 5px);
  background-color: #907c4a;
}
#contents .c-box09 .list .item {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#contents .c-box09 .list .item:not(:first-child) {
  margin-top: 15px;
}
#contents .c-box09 .list .item .icn {
  flex-shrink: 0;
  width: 90px;
}
#contents .c-box09 .list .item .content {
  display: table;
  width: 630px;
  height: 90px;
  padding: 17px 10px 17px 20px;
  background-color: #fff;
  transform: skew(-15deg);
}
@media screen and (max-width: 900px) {
  #contents .c-box09 .list .item .content {
    transform: skew(0);
    width: calc(100% - 110px);
  }
}
#contents .c-box09 .list .item .content p {
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.6;
  transform: skew(15deg);
}
@media screen and (max-width: 900px) {
  #contents .c-box09 .list .item .content p {
    transform: skew(0);
    font-size: 14px;
    line-height: 2;
    word-break: break-all;
  }
}
#contents .contact-box {
  padding: 50px 0 60px;
  background: url("../images/sec10-bg.png") no-repeat right center;
  background-size: cover;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #contents .contact-box {
    padding: 30px 0;
    background: url("../images/sec10-bg-sp.png") no-repeat center center;
    background-size: cover;
  }
}
#contents .contact-box .contents-inner {
  position: relative;
}
#contents .contact-box .contents-inner::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -200px;
  width: 266px;
  height: 366px;
  background: url("../images/sec10-person.png");
}
@media screen and (max-width: 1200px) {
  #contents .contact-box .contents-inner::before {
    left: -150px;
  }
}
@media screen and (max-width: 900px) {
  #contents .contact-box .contents-inner::before {
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 205px;
    background: url("../images/sec10-person.png") no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 350px) {
  #contents .contact-box .contents-inner::before {
    left: -65px;
  }
}
#contents .contact-box .headline {
  font-size: 34px;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 900px) {
  #contents .contact-box .headline {
    font-size: 22px;
    line-height: 1.6;
  }
}
#contents .contact-box .headline span {
  display: inline-block;
  padding: 0 30px 10px;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 900px) {
  #contents .contact-box .headline span {
    padding: 0 10px 5px;
    border-bottom-width: 1px;
  }
}
#contents .contact-box p {
  margin-top: 30px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #contents .contact-box p {
    margin-top: 20px;
    padding: 0 6vw;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }
}
#contents .contact-box .btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 50px;
}
@media screen and (max-width: 900px) {
  #contents .contact-box .btn-group {
    margin-top: 35px;
    display: block;
    padding: 0 3vw 0 150px;
  }
}
@media screen and (max-width: 450px) {
  #contents .contact-box .btn-group {
    padding-left: 120px;
  }
}
@media screen and (max-width: 350px) {
  #contents .contact-box .btn-group {
    padding-left: 80px;
  }
}
#contents .contact-box .btn-group > div {
  width: 350px;
}
@media screen and (max-width: 900px) {
  #contents .contact-box .btn-group > div {
    width: 100%;
  }
}
@media screen and (min-width: 901px) {
  #contents .contact-box .btn-group > div.tel {
    position: relative;
  }
  #contents .contact-box .btn-group > div.tel::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
#contents .contact-box .btn-group > div.tel a {
  padding-top: 20px;
  background-color: #fff;
  color: #980225;
}
#contents .contact-box .btn-group > div.tel a span {
  display: inline-block;
  padding-left: 40px;
  font-size: 30px;
  background: url("../images/sec10-tel.png") no-repeat left center;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #contents .contact-box .btn-group > div.tel a span {
    padding-left: 30px;
    background-size: 15px auto;
    font-size: 22px;
  }
}
@media screen and (max-width: 400px) {
  #contents .contact-box .btn-group > div.tel a span {
    font-size: 14px;
  }
}
#contents .contact-box .btn-group > div.tel a span b {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
@media screen and (max-width: 400px) {
  #contents .contact-box .btn-group > div.tel a span b {
    font-size: 10px;
  }
}
#contents .contact-box .btn-group > div.contact {
  margin-left: 40px;
}
@media screen and (max-width: 900px) {
  #contents .contact-box .btn-group > div.contact {
    margin: 20px 0 0 0;
  }
}
#contents .contact-box .btn-group > div.contact a {
  padding-top: 25px;
  background: url("../images/sec10-btn-bg.png") no-repeat;
  background-size: cover;
  color: #fff;
}
#contents .contact-box .btn-group > div.contact a span {
  display: inline-block;
  padding-left: 55px;
  margin-left: -30px;
  font-size: 20px;
  background: url("../images/sec10-mail.png") no-repeat left center;
}
@media screen and (max-width: 900px) {
  #contents .contact-box .btn-group > div.contact a span {
    font-size: 18px;
    padding-left: 40px;
    margin-left: 0;
    background-size: 25px auto;
  }
}
@media screen and (max-width: 400px) {
  #contents .contact-box .btn-group > div.contact a span {
    font-size: 14px;
  }
}
#contents .contact-box .btn-group > div.contact a span b {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
@media screen and (max-width: 400px) {
  #contents .contact-box .btn-group > div.contact a span b {
    font-size: 10px;
  }
}
#contents .contact-box .btn-group > div a {
  display: block;
  height: 90px;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  #contents .contact-box .btn-group > div a {
    height: auto;
    padding: 15px 10px;
  }
}
#contents .contact-box .btn-group > div a:hover {
  opacity: 0.7;
}
#contents .c-box11 {
  padding: 90px 0 55px;
}
@media screen and (max-width: 900px) {
  #contents .c-box11 {
    padding: 40px 3vw;
  }
}
#contents .c-box11 .contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1230px) {
  #contents .c-box11 .contents-inner {
    padding: 0 3vw;
  }
}
#contents .c-box11 .list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  #contents .c-box11 .list {
    margin-top: 30px;
  }
}
#contents .c-box11 .list .item {
  width: 23.75%;
  padding: 15px 20px 20px;
  box-shadow: 2px 0 6px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 901px) {
  #contents .c-box11 .list .item:hover {
    box-shadow: 0 5px 28px rgba(0, 0, 0, 0.4);
  }
  #contents .c-box11 .list .item:hover .thumbnail img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 901px) {
  #contents .c-box11 .list .item:not(:nth-of-type(4n+1)) {
    margin-left: 1.666%;
  }
  #contents .c-box11 .list .item:not(:nth-of-type(-n+4)) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box11 .list .item {
    width: 49%;
    padding: 15px 3vw;
  }
  #contents .c-box11 .list .item:nth-of-type(2n) {
    margin-left: 2%;
  }
  #contents .c-box11 .list .item:not(:nth-of-type(-n+2)) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 450px) {
  #contents .c-box11 .list .item {
    width: 100%;
    margin: 0;
  }
  #contents .c-box11 .list .item:not(:first-child) {
    margin-top: 30px;
  }
}
#contents .c-box11 .list .item a {
  color: #404040;
  text-decoration: none;
}
#contents .c-box11 .list .item .thumbnail {
  position: relative;
  overflow: hidden;
}
#contents .c-box11 .list .item .thumbnail img {
  width: 100%;
  transition: 0.3s;
}
#contents .c-box11 .list .item .thumbnail .tab {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  padding: 0 15px;
  line-height: 25px;
  font-size: 12px;
  color: #fff;
  background-color: #980225;
}
@media screen and (max-width: 900px) {
  #contents .c-box11 .list .item .thumbnail .tab {
    height: auto;
    padding: 2px 10px;
  }
}
#contents .c-box11 .list .item p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .c-box11 .list .item p {
    font-size: 14px;
    line-height: 2;
  }
}
#contents .c-box12 {
  padding: 50px 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 900px) {
  #contents .c-box12 {
    padding: 40px 3vw;
  }
}
#contents .c-box12 .list {
  margin-top: 50px;
}
@media screen and (max-width: 900px) {
  #contents .c-box12 .list {
    margin-top: 30px;
  }
}
#contents .c-box12 .list a {
  display: block;
  padding: 20px 95px 20px 85px;
  border-left: 8px solid #980225;
  background-color: #fff;
  transition: 0.3s;
  text-decoration: none;
}
@media screen and (min-width: 901px) {
  #contents .c-box12 .list a:hover {
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box12 .list a {
    padding: 20px 40px;
    border-left-width: 5px;
  }
}
#contents .c-box12 .list a:not(:first-child) {
  margin-top: 10px;
}
#contents .c-box12 .list a .title {
  line-height: 1.6;
  font-size: 15px;
  color: #404040;
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  #contents .c-box12 .list a .title {
    font-size: 14px;
    line-height: 2;
  }
}
#contents .c-box12 .list a p:nth-of-type(2) {
  margin-top: 10px;
  color: #808080;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  #contents .c-box12 .list a p:nth-of-type(2) {
    font-size: 12px;
  }
}
#contents .c-box13 {
  padding-top: 140px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #contents .c-box13 {
    padding: 110px 0 50px;
  }
}
#contents .c-box13 h2 {
  height: 66px;
  line-height: 66px;
  text-align: center;
  color: #fff;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
  font-size: 34px;
  background: url("../images/sec13-title-bg.png") repeat-x;
}
@media screen and (max-width: 900px) {
  #contents .c-box13 h2 {
    height: auto;
    padding: 10px;
    line-height: 1.6;
    font-size: 22px;
  }
}
#contents .c-box13 .box {
  position: relative;
  height: 786px;
  background: url("../images/sec13-bg.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #contents .c-box13 .box {
    height: auto;
    background: transparent;
  }
}
#contents .c-box13 .box .message {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 200px;
  width: 590px;
  text-align: center;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .c-box13 .box .message {
    position: static;
    transform: translateX(0);
    width: 100%;
    padding: 20px 3vw;
  }
}
#contents .c-box13 .box .message .headline {
  font-size: 34px;
  color: #980225;
}
@media screen and (max-width: 900px) {
  #contents .c-box13 .box .message .headline {
    font-size: 22px;
    line-height: 1.6;
  }
}
#contents .c-box13 .box .message p {
  margin-top: 50px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .c-box13 .box .message p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }
}
#contents .c-box13 .box .list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 0 25px;
}
@media screen and (max-width: 900px) {
  #contents .c-box13 .box .list {
    position: static;
    display: block;
    padding: 0 6vw;
    transform: translate(0, 0);
  }
}
#contents .c-box13 .box .list div {
  display: table;
  width: 360px;
  height: 200px;
  background-color: #980225;
  transform: skew(-15deg);
}
@media screen and (max-width: 900px) {
  #contents .c-box13 .box .list div {
    width: calc(90% - 3vw);
    height: 100px;
    margin: 0 auto;
  }
  #contents .c-box13 .box .list div:not(:first-child) {
    margin-top: 10px;
  }
}
#contents .c-box13 .box .list div span {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  transform: skew(15deg);
}
@media screen and (max-width: 900px) {
  #contents .c-box13 .box .list div span {
    font-size: 14px;
    line-height: 1.8;
  }
}
#contents .c-box14 {
  padding: 50px 0 60px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 900px) {
  #contents .c-box14 {
    padding: 40px 3vw;
  }
}
#contents .c-box14 .contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
#contents .c-box14 .headline {
  font-size: 28px;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #contents .c-box14 .headline {
    font-size: 22px;
    line-height: 1.6;
  }
}
#contents .c-box14 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
#contents .c-box14 .list a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 32.5%;
  background-color: #fff;
  color: #404040;
  text-decoration: none;
  transition: 0.3s;
}
#contents .c-box14 .list a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #980225;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: 0.3s;
}
@media screen and (min-width: 901px) {
  #contents .c-box14 .list a:hover::before {
    transform: scale(1, 1);
  }
  #contents .c-box14 .list a:hover .content {
    background: url("../images/sec14-arrow02.png") no-repeat 95% center;
  }
  #contents .c-box14 .list a:hover .content span {
    color: #fff;
  }
}
@media screen and (min-width: 901px) {
  #contents .c-box14 .list a:not(:nth-of-type(3n+1)) {
    margin-left: 0.83%;
  }
  #contents .c-box14 .list a:not(:nth-of-type(-n+3)) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 900px) {
  #contents .c-box14 .list a {
    width: 49%;
  }
  #contents .c-box14 .list a:nth-of-type(2n) {
    margin-left: 2%;
  }
  #contents .c-box14 .list a:not(:nth-of-type(-n+2)) {
    margin-top: 20px;
  }
}
#contents .c-box14 .list a .thumbnail {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 148px;
}
@media screen and (max-width: 900px) {
  #contents .c-box14 .list a .thumbnail {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  #contents .c-box14 .list a .thumbnail {
    height: 90px;
    width: 90px;
  }
  #contents .c-box14 .list a .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 450px) {
  #contents .c-box14 .list a .thumbnail {
    width: 60px;
  }
}
@media screen and (max-width: 350px) {
  #contents .c-box14 .list a .thumbnail {
    width: 45px;
  }
}
#contents .c-box14 .list a .content {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  padding: 10px 30px 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  background: url("../images/sec14-arrow.png") no-repeat 95% center;
  transition: 0.3s;
}
#contents .c-box14 .list a .content span {
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  #contents .c-box14 .list a .content {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 750px) {
  #contents .c-box14 .list a .content span {
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  #contents .c-box14 .list a .content {
    position: relative;
    height: 90px;
    background-size: 12px auto;
    background-position: 97% center;
  }
  #contents .c-box14 .list a .content span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px 0 5px;
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  #contents .c-box14 .list a .content {
    font-size: 10px;
  }
}
#contents .c-box15 {
  padding: 100px 0 110px;
}
@media screen and (max-width: 900px) {
  #contents .c-box15 {
    padding: 40px 3vw;
  }
}
#contents .c-box15 .contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1230px) {
  #contents .c-box15 .contents-inner {
    padding: 0 3vw;
  }
}
#contents .c-box15 .list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  #contents .c-box15 .list {
    display: block;
  }
}
#contents .c-box15 .list > div {
  width: 49%;
}
@media screen and (max-width: 900px) {
  #contents .c-box15 .list > div {
    width: 100%;
  }
  #contents .c-box15 .list > div:nth-of-type(2) {
    margin-top: 30px;
  }
}
#contents .c-box15 .list > div .headline {
  padding-bottom: 30px;
  text-align: center;
  font-size: 24px;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
  border-bottom: 2px solid #404040;
}
@media screen and (max-width: 900px) {
  #contents .c-box15 .list > div .headline {
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom-width: 1px;
  }
}
#contents .c-box15 .list > div table {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  #contents .c-box15 .list > div table {
    margin-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  #contents .c-box15 .list > div table tr, #contents .c-box15 .list > div table th, #contents .c-box15 .list > div table td {
    display: block;
    width: 100%;
  }
}
#contents .c-box15 .list > div table th, #contents .c-box15 .list > div table td {
  padding: 15px 0;
  border-bottom: 1px solid #dcdcdc;
  font-size: 15px;
  font-family: 'Noto Selif JP', serif;
  font-weight: 400;
  line-height: 1.6;
  vertical-align: middle;
}
@media screen and (max-width: 900px) {
  #contents .c-box15 .list > div table th, #contents .c-box15 .list > div table td {
    padding: 10px;
    font-size: 14px;
    line-height: 2;
  }
}
#contents .c-box15 .list > div table th {
  width: 160px;
  text-align: left;
  color: #980225;
}
@media screen and (max-width: 600px) {
  #contents .c-box15 .list > div table th {
    width: 100%;
  }
}
#contents .c-box15 .list > div table td a {
  color: #404040;
}
#contents .c-box15 .list > div table td ul li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#contents .c-box15 .list > div table td ul li span:nth-of-type(1) {
  padding-right: 10px;
}
#contents .c-box15 .list > div table td ul li.indent span:nth-of-type(1) {
  flex-shrink: 0;
  width: 140px;
}
#contents .c-box15 .list > div .logo {
  margin-top: 70px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #contents .c-box15 .list > div .logo {
    margin-top: 30px;
  }
  #contents .c-box15 .list > div .logo img {
    width: 70%;
    max-width: 250px;
  }
}

/*--------------------------
FOOTER
----------------------------------*/
#globalFooter {
  margin-top: 90px;
  padding: 15px 0 60px;
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 900px) {
  #globalFooter {
    margin-top: 50px;
    padding: 20px 3vw;
  }
}
#globalFooter .contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  #globalFooter .contents-inner .logo img {
    max-width: 150px;
  }
}
#globalFooter .contents-inner .logo span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #999999;
}
@media screen and (max-width: 900px) {
  #globalFooter .contents-inner .logo span {
    font-size: 10px;
  }
}
@media screen and (max-width: 900px) {
  #globalFooter .contents-inner .privacy-policy {
    width: 50px;
  }
}

.to-top.pc {
  position: fixed;
  z-index: 20;
  bottom: 50px;
  left: -10px;
}
@media screen and (max-width: 900px) {
  .to-top.pc {
    display: none !important;
  }
}

.fixed-menu {
  position: fixed;
  z-index: 20;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 5px 5px 30px;
  background-color: #980225;
  transform: translateY(100%);
  transition: 0.3s;
}
.fixed-menu.show {
  transform: translateY(0);
}
.fixed-menu .to-top {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}
.fixed-menu .to-top img {
  width: 30px;
}
.fixed-menu .btn-group {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
.fixed-menu .btn-group > div {
  width: 49%;
  border-radius: 3px;
}
.fixed-menu .btn-group > div.tel {
  background-color: #fff;
}
.fixed-menu .btn-group > div.tel a {
  padding-top: 10px;
  color: #980225;
}
.fixed-menu .btn-group > div.tel a span {
  display: inline-block;
  padding-left: 30px;
  font-size: 22px;
  background: url("../images/sec10-tel.png") no-repeat left center;
  background-size: 15px auto;
  font-weight: bold;
}
@media screen and (max-width: 550px) {
  .fixed-menu .btn-group > div.tel a span {
    padding-left: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .fixed-menu .btn-group > div.tel a span {
    background-size: 10px auto;
  }
}
@media screen and (max-width: 390px) {
  .fixed-menu .btn-group > div.tel a span {
    font-size: 13px;
  }
}
@media screen and (max-width: 350px) {
  .fixed-menu .btn-group > div.tel a span {
    padding: 10px 0 10px 20px;
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .fixed-menu .btn-group > div.tel a span {
    font-size: 10px;
  }
}
.fixed-menu .btn-group > div.tel a span b {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
@media screen and (max-width: 550px) {
  .fixed-menu .btn-group > div.tel a span b {
    font-size: 10px;
  }
}
@media screen and (max-width: 350px) {
  .fixed-menu .btn-group > div.tel a span b {
    display: none;
  }
}
.fixed-menu .btn-group > div.contact {
  background: url("../images/sec10-btn-bg.png") no-repeat;
  background-size: cover;
}
.fixed-menu .btn-group > div.contact a {
  padding-top: 15px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 350px) {
  .fixed-menu .btn-group > div.contact a {
    padding-top: 10px;
  }
}
.fixed-menu .btn-group > div.contact a span {
  display: inline-block;
  padding-left: 40px;
  margin-left: -30px;
  font-size: 18px;
  background: url("../images/sec10-mail.png") no-repeat left center;
  background-size: 25px auto;
}
@media screen and (max-width: 550px) {
  .fixed-menu .btn-group > div.contact a span {
    font-size: 14px;
    margin-left: 0;
  }
}
@media screen and (max-width: 450px) {
  .fixed-menu .btn-group > div.contact a span {
    background-size: 20px auto;
  }
}
@media screen and (max-width: 350px) {
  .fixed-menu .btn-group > div.contact a span {
    background-size: 15px auto;
    padding: 10px 0 10px 20px;
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .fixed-menu .btn-group > div.contact a span {
    font-size: 10px;
  }
}
.fixed-menu .btn-group > div.contact a span b {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
@media screen and (max-width: 550px) {
  .fixed-menu .btn-group > div.contact a span b {
    font-size: 10px;
  }
}
@media screen and (max-width: 350px) {
  .fixed-menu .btn-group > div.contact a span b {
    display: none;
  }
}
.fixed-menu .btn-group > div a {
  display: block;
  padding: 15px 10px;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 550px) {
  .fixed-menu .btn-group > div a {
    padding: 10px 5px;
  }
}

/******************************************
LP改修に伴うスタイル追加　2023/02/28追加START
******************************************/
.c-mv__inner {
  position:relative;
}
.c-mv__pc {
  display:block;
}
.c-mv__sp {
  display:none;
}
.c-mv__textwrap {
  position:absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  display:flex;
  justify-content: space-between;
}
.c-mv__date {
  color:#fff;
  font-size:0.694vw;
  margin-right:2.431vw;
  margin-top:1.8vw;
}
.c-mv__number {
  color:#fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size:2.4vw;
  letter-spacing: -0.05rem;
  margin-right:0.903vw;
  margin-top:-2px;
}
@media screen and (min-width: 900px) and  (max-width: 1200px){
  .c-mv__date {
    font-size:10px;
    margin-right:35px;
  }
  .c-mv__number {
    font-size:30px;
    margin-right:15px;
  }
}

@media screen and (max-width: 899px){
  .c-mv__pc {
    display:none;
  }
  .c-mv__sp {
    display:block;
  }
  .c-mv__textwrap {
    top:36%;
    width:43.846vw;
    padding:0 3.2vw 0 2.4vw;
    flex-wrap:wrap;
  }
  .c-mv__box1 {
    display:flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
  }
  .c-mv__ttl {
    font-size:3.2vw;
    color:#ffffff;
  }
  .c-mv__box2 {
    display:flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-mv__date {
    font-size:0.694vw;
    color:#980225;
    text-align: center;
    margin-right:0;
    display: flex;
    justify-content: center;
    width:100%;
    margin-top:3.8vw;
  }
  .c-mv__number {
    font-size:4.667vw;
    margin-right:1.5vw;
  }
  .c-mv__unit {
    color:#ffffff;
    font-size:3.2vw;
  }
}
@media screen and (max-width: 375px){

  .c-mv__textwrap {
    top:36%;
  }

  .c-mv__date {
    white-space: nowrap;
    margin-right:0;
    font-size:8px;
  }
}

.img__inner {
  position:relative;
}
.img__textwrap {
  position:absolute;
  top: 54%;
  left: 54%;
  transform: translate(-50%, -50%);
}
.img__number {
  color:#980225;
  font-family: 'Noto Serif', serif;
  font-size:35px;
  margin-bottom:7px;
  font-weight: 400;
}
.img__date {
  color:#980225;
  font-size:8px;
  text-align: center;
}
@media screen and (max-width: 899px){
  .img__number {
    font-size:4.667vw;
  }
  .img__date {
    font-size:1.067vw;
  }
}

/******************************************
LP改修に伴うスタイル追加　2023/02/28追加END
******************************************/

/******************************************
LP改修に伴うスタイル追加　2023/05/08追加START
******************************************/
.contents-box.c-box07a {
    padding: 80px 0 60px;
}
@media screen and (max-width: 900px) {
.contents-box.c-box07a {
    padding: 40px 0 0;
 }
}
.contents-box.c-box07a .section-title {
    margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
.contents-box.c-box07a .section-title {
    margin-bottom: 30px;
 }
}
#contents .contents-box.c-box07a .contents-inner {
    background: url(../images/sec07-bg.png) no-repeat center center;
    background-size: cover;
    max-width: 100%;
}
.slider {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 0 30px;
}
@media screen and (max-width: 900px) {
.c-box07a .slider {
    max-width: 76%;
    height: auto;
    padding-top: 0;
 }
}
.sliderbg::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -160px;
    width: 100%;
    height: 101%;
    background: url(../images/sec07-white_1200.png) no-repeat right center;
    background-size: cover;
}
@media screen and (max-width: 900px) {
.sliderbg::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -150px;
    width: 178%;
    height: 101%;
    background: url(../images/sec07-white_1200.png) no-repeat right center;
    background-size: cover;
 }
}
.swiper-container {
    width: 1000px;
}
@media screen and (max-width: 900px) {
.swiper-container {
    max-width: 100%;
 }
}
.contents-box.c-box07a .wrap {
}
.contents-box.c-box07a .wrap .head {
    margin-top: 0px;
    font-size: 14px;
}
@media screen and (max-width: 900px) {
.contents-box.c-box07a .wrap .head {
    margin-top: 0;
    padding-left: 0;
 }
}
.contents-box.c-box07a .wrap .title {
    margin-top: 20px;
    font-size: 28px;
    line-height: 1.6;
    font-family: 'Noto Selif JP', serif;
    font-weight: 400;
}
@media screen and (max-width: 900px) {
.contents-box.c-box07a .wrap .title {
    font-size: 20px;
    margin-top: 20px;
    padding-left: 0;
 }
}
.contents-box.c-box07a .wrap .category {
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 14px;
}
@media screen and (max-width: 900px) {
.contents-box.c-box07a .wrap .category {
    margin-bottom: 30px;
    padding-left: 0;
 }
}
.contents-box.c-box07a .before-after {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    display: -webkit-flex;
    flex-wrap: nowrap;
    margin-top: 20px;
    background-color: #f4f2ed;
}
@media screen and (max-width: 900px) {
.contents-box.c-box07a .before-after {
    display: block;
    margin: 0 auto;
    padding: 10px;
 }
}
.contents-box.c-box07a .before-after .before {
    flex-shrink: 0;
    width: 460px;
    padding: 25px;
    padding-right: 80px;
    background: url(../images/sec07-arrow_01.png) no-repeat 95% center;
}
@media screen and (max-width: 900px) {
.contents-box.c-box07a .before-after .before {
    width: 100%;
    padding: 10px 10px 30px;
    background: url(../images/sec07-arrow-sp_01.png) no-repeat center 95%;
    background-size: 30px auto;
 }
}
.contents-box.c-box07a .before-after .before .headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
}
.contents-box.c-box07a .before-after .before p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
}
.contents-box.c-box07a .before-after .after {
    margin: 10px 10px 10px 0;
    padding: 15px;
    background-color: #fff;
    width: 100%;
}
@media screen and (max-width: 900px) {
.contents-box.c-box07a .before-after .after {
    padding: 10px 10px 15px;
 }
}
.contents-box.c-box07a .before-after .after .headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
}
.contents-box.c-box07a .before-after .after p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}
.contents-box.c-box07a .before-after .after p b {
    font-size: 16px;
    font-weight: bold;
}
@media screen and (max-width: 900px) {
.contents-box.c-box07a .before-after .after p b {
    font-size: 15px;
 }
}
.contents-box.c-box07a .before-after .before .headline img,
.contents-box.c-box07a .before-after .after .headline img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
