@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 900px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 901px) {
  .is-sp {
    display: none !important;
  }
}
body {
  font-size: 16px;
  color: #212322;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  background: #fff;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 14px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  .inner {
    padding: 0 20px;
    max-width: 500px !important;
    margin: 0 auto;
  }
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  .header-inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  font-family: "Noto Sans JP", sans-serif;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
  font-size: 14px;
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
  font-size: 14px;
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
  font-size: 14px;
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
  font-size: 14px;
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
  font-size: 14px;
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #212322;
  background: #F4F4F4;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 8px 15px;
  margin: 0;
  outline: none;
}

.top2 .flex,
.mv {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 900px) {
  .header {
    padding: 10px 0;
  }
}
.header .header-inner {
  position: relative;
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header .flex .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.header .flex .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex .right ul li {
  margin-right: 30px;
}
.header .flex .right ul li a {
  font-size: 15px;
  font-weight: 700;
  color: #212322;
  padding: 30px 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .flex .right ul li a:hover {
  color: #CA2F2F;
}
.header .logo-wrap {
  max-width: 160px;
  position: absolute;
  top: 0;
  left: 40px;
}
@media screen and (max-width: 900px) {
  .header .logo-wrap {
    left: 20px;
    max-width: 45px;
    position: initial;
  }
}
.header .logo-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 1000px;
  left: -1000px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 82.5px, rgba(255, 255, 255, 0.9) 82.5px, rgba(255, 255, 255, 0.9) 100%);
}
.header .btn a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 12px 40px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  border: 1px solid #CE3030;
}
.header .btn a span {
  position: relative;
  z-index: 2;
  color: inherit;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.header .btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#CE3030), to(#881F1F));
  background: linear-gradient(to bottom, #CE3030, #881F1F);
  z-index: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.header .btn a:hover::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.header .btn a:hover span {
  color: #CA2F2F;
}
.header .logo {
  padding: 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 82.5px, rgba(255, 255, 255, 0.9) 82.5px, rgba(255, 255, 255, 0.9) 100%);
}
@media screen and (max-width: 900px) {
  .header .logo {
    padding: 0px;
  }
}
.header .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .logo a:hover {
  opacity: 0.6;
}
.header .parent {
  position: relative;
}
.header .parent .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(10px);
          transform: translateX(-50%) translateY(10px);
  width: 160px;
  text-align: center;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .parent .sub-menu a {
  border-bottom: 1px solid #CA2F2F;
  padding: 20px 0 !important;
  white-space: nowrap;
}
.header .parent .sub-menu .sub-list:last-child a {
  border-bottom: none;
}
.header .parent:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

.drawer-icon {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (min-width: 901px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 30px;
  height: 3px;
  background: #CA2F2F;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 250;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  max-width: 270px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.drawer-content.is-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer-icon-nav {
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}
.drawer-icon-nav ul li {
  margin-bottom: 30px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #212322;
  font-size: 15px;
  font-weight: 500;
}
.drawer-icon-nav .arrow {
  color: #881F1F;
  margin-right: 5px;
}
.drawer-icon-nav .sub-menu {
  padding-left: 20px;
}
.drawer-icon-nav .sub-list {
  margin-bottom: 7px;
}
.drawer-icon-nav .title {
  font-weight: 700;
  color: #212322;
  margin-bottom: 7px;
}
.drawer-icon-nav .title span {
  color: #881F1F;
}
.drawer-icon-nav .btn {
  text-align: center;
}
.drawer-icon-nav .btn a {
  background: -webkit-gradient(linear, left top, left bottom, from(#CE3030), to(#881F1F));
  background: linear-gradient(to bottom, #CE3030, #881F1F);
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.mv {
  position: relative;
}
@media screen and (max-width: 900px) {
  .mv {
    padding-top: 72.8px;
  }
}
.mv .contents {
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  .mv .contents {
    top: 45%;
  }
}
@media screen and (max-width: 900px) {
  .mv .contents {
    top: 50%;
  }
}
.mv .contents .title {
  text-align: center;
  font-size: 45px;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-weight: 900;
  text-shadow: 2px 3px 3px black;
}
@media screen and (max-width: 1100px) {
  .mv .contents .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 900px) {
  .mv .contents .title {
    font-size: 7.5vw;
    text-shadow: 2px 2px 2px black;
  }
}

.copyright {
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: #212322;
  padding: 20px 0;
}
@media screen and (max-width: 900px) {
  .copyright {
    font-size: 8px;
    padding: 15px 0;
  }
}

body,
html {
  overflow-x: hidden;
}

.footer {
  padding: 80px 0;
  background: #B2B2B2;
}
.footer .inner {
  max-width: 1300px;
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 40px 0;
  }
}
.footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .footer .flex {
    display: block;
  }
}
.footer .logo {
  max-width: 150px;
  margin-bottom: 15px;
}
@media screen and (max-width: 900px) {
  .footer .logo {
    margin: 0 auto 10px;
    max-width: 100px;
  }
}
.footer .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .logo a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 900px) {
  .footer .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer .left .text p {
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  .footer .left .text p {
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .footer .right {
    width: 100%;
  }
}
@media screen and (min-width: 901px) {
  .footer .right {
    margin-left: 30px;
  }
}
.footer .right .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .footer .right .heading {
    margin-bottom: 20px;
    display: block;
  }
}
.footer .right .heading ul {
  margin-right: 40px;
}
@media screen and (max-width: 900px) {
  .footer .right .heading ul {
    margin-right: 10px;
  }
}
.footer .right .heading ul li {
  margin-bottom: 15px;
}
.footer .right .heading ul li .arrow {
  color: #881F1F;
  margin-right: 10px;
}
.footer .right .heading ul li:last-child {
  margin-bottom: 0;
}
.footer .right .heading ul li a {
  font-size: 15px;
  color: #212322;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .footer .right .heading ul li a {
    font-size: 14px;
    white-space: nowrap;
  }
}
.footer .right .heading ul li a:hover {
  opacity: 0.6;
}
.footer .right .heading ul li .title {
  margin-bottom: 15px;
}
.footer .right .heading ul li .sub-list {
  margin-bottom: 15px;
}
.footer .right .heading ul li .sub-menu {
  padding-left: 20px;
}
.footer .right .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .footer .right .bottom {
    display: block;
  }
}
.footer .right .bottom .btn:nth-child(1) {
  margin-right: 40px;
}
@media screen and (max-width: 900px) {
  .footer .right .bottom .btn:nth-child(1) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.footer .right .bottom .btn a {
  display: block;
  background: #fff;
  border: 1px solid #CA2F2F;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #CA2F2F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .footer .right .bottom .btn a {
    font-size: 14px;
    padding: 15px 20px;
    white-space: nowrap;
  }
}
.footer .right .bottom .btn a:hover {
  opacity: 0.6;
}
.footer .right .bottom .btn a .btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .right .bottom .btn a .btn-flex .icon {
  width: 20px;
}
.footer .right .bottom .btn a .btn-flex .icon img {
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.footer .right .bottom .btn a .btn-flex .icon1 {
  margin-right: 20px;
}
.footer .right .bottom .btn a .btn-flex .icon2 {
  margin-left: 20px;
}

@media screen and (max-width: 900px) {
  .mv .inner {
    max-width: 1000px !important;
  }
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 900px) {
  .section {
    padding: 50px 0;
  }
}

.top1 {
  position: relative;
  padding-bottom: 150px;
}
.top1 .bg-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .top1 .bg-text {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.top1 .red {
  color: #CA2F2F;
}
.top1 .text1 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .top1 .text1 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 370px) {
  .top1 .text1 {
    font-size: 13px;
    white-space: nowrap;
  }
}
.top1 .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 900px) {
  .top1 .btn-area {
    display: block;
  }
}
.top1 .btn-area .btn:nth-child(1) {
  margin-right: 60px;
}
@media screen and (max-width: 900px) {
  .top1 .btn-area .btn:nth-child(1) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.top1 .btn-area .btn a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 15px 70px 15px 40px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border: 1px solid #CE3030;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .top1 .btn-area .btn a {
    display: block;
    font-size: 14px;
    padding: 12px 30px 12px 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.top1 .btn-area .btn a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  z-index: 2;
  width: 7px;
  height: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top1 .btn-area .btn a span {
  position: relative;
  z-index: 2;
  color: inherit;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.top1 .btn-area .btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#CE3030), to(#881F1F));
  background: linear-gradient(to bottom, #CE3030, #881F1F);
  z-index: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.top1 .btn-area .btn a:hover::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.top1 .btn-area .btn a:hover::after {
  border-left: 2px solid #CA2F2F;
  border-bottom: 2px solid #CA2F2F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top1 .btn-area .btn a:hover span {
  color: #CA2F2F;
}
.top1 .inner {
  position: relative;
  z-index: 2;
}

.top2 {
  padding: 0;
}
.top2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .top2 .flex {
    display: block;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.top2 .flex .item {
  width: 33.3333333333%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 900px) {
  .top2 .flex .item {
    width: 100%;
  }
}
.top2 .flex .item .contents {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #fff;
}
.top2 .flex .item .contents h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .top2 .flex .item .contents h3 {
    font-size: 22px;
  }
}
.top2 .flex .item .contents .btn {
  text-align: center;
}
.top2 .flex .item .contents .btn a {
  color: #fff;
  border: 2px solid #fff;
  display: inline-block;
  padding: 13px 70px 13px 40px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .top2 .flex .item .contents .btn a {
    display: block;
    font-size: 14px;
    padding: 11px 30px 11px 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.top2 .flex .item .contents .btn a:hover {
  background: #fff;
  color: #212322;
}
.top2 .flex .item .contents .btn a:hover::after {
  border-left: 2px solid #212322;
  border-bottom: 2px solid #212322;
}
.top2 .flex .item .contents .btn a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  z-index: 2;
  width: 7px;
  height: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body {
  background: #FBFBFB;
}

.cta a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
.cta a:hover {
  opacity: 0.6;
}
.cta .box {
  background: url(../img/cta.webp) no-repeat center center/cover;
  padding: 40px 20px 50px;
}
.cta .box .box-inner {
  max-width: 800px;
  margin: 0 auto;
}
.cta .box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
  .cta .box h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.cta .box p {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .cta .box p {
    font-size: 14px;
  }
}

.bread {
  padding: 10px 0;
}
.bread .inner {
  max-width: 1300px;
}
.bread .arrow {
  width: 9px;
  margin: 0 10px;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 900px) {
  .bread .arrow {
    margin: 0 5px;
    width: 7px;
  }
}
.bread .arrow img {
  vertical-align: middle;
}
.bread span {
  display: inline-block;
}
.bread h1,
.bread a,
.bread span {
  display: inline-block;
  color: #A0A0A0;
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .bread h1,
  .bread a,
  .bread span {
    font-size: 12px;
  }
}
.bread a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bread a:hover {
  color: #CA2F2F;
}
.bread h1 {
  display: inline-block;
}

.common-heading {
  padding-top: 150px;
}
@media screen and (max-width: 900px) {
  .common-heading {
    padding-top: 70px;
  }
}
.common-heading .inner .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(to bottom, rgba(202, 47, 47, 0) 0px, rgba(202, 47, 47, 0) 70px, #ca2f2f 70px, #ca2f2f 100%);
}
@media screen and (max-width: 900px) {
  .common-heading .inner .flex {
    padding-bottom: 40px;
    background: linear-gradient(to bottom, rgba(202, 47, 47, 0) 0px, rgba(202, 47, 47, 0) 32px, #ca2f2f 32px, #ca2f2f 100%);
  }
}
.common-heading .inner .flex .en {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-size: 90px;
  margin-right: 40px;
}
@media screen and (max-width: 900px) {
  .common-heading .inner .flex .en {
    margin-right: 10px;
    font-size: 42px;
  }
}
.common-heading .inner .flex {
  position: relative;
}
.common-heading .inner .flex::after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 1000px;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, rgba(202, 47, 47, 0) 0px, rgba(202, 47, 47, 0) 70px, #ca2f2f 70px, #ca2f2f 100%);
}
@media screen and (max-width: 900px) {
  .common-heading .inner .flex::after {
    background: linear-gradient(to bottom, rgba(202, 47, 47, 0) 0px, rgba(202, 47, 47, 0) 32px, #ca2f2f 32px, #ca2f2f 100%);
  }
}
.common-heading .inner .flex .ja {
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .common-heading .inner .flex .ja {
    font-size: 16px;
  }
}

.section-title {
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title .ja {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .section-title .ja {
    font-size: 22px;
  }
}
.section-title .en {
  color: rgba(202, 47, 47, 0.17);
  font-size: 64px;
  font-weight: 700;
  font-family: "futura-pt", sans-serif;
  line-height: 1.4;
  position: absolute;
  top: -45px;
  left: 0;
}
@media screen and (max-width: 900px) {
  .section-title .en {
    font-size: 30px;
    top: -20px;
    white-space: nowrap;
  }
}

.company1 .inner {
  position: relative;
}
.company1 .bg {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 50%;
}
@media screen and (max-width: 900px) {
  .company1 .bg {
    right: initial;
    left: 20px;
    bottom: 20px;
    width: 100px;
  }
}
.company1 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #F2D2D2;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.company1 .row:last-child {
  border-bottom: none;
}
.company1 .row .dt {
  width: 250px;
  color: #CA2F2F;
  font-weight: 700;
}
@media screen and (min-width: 901px) {
  .company1 .row .dt {
    padding-left: 60px;
  }
}
@media screen and (max-width: 900px) {
  .company1 .row .dt {
    width: 100px;
  }
}
.company1 .row .dd {
  width: calc(100% - 280px);
}
@media screen and (max-width: 900px) {
  .company1 .row .dd {
    width: calc(100% - 120px);
  }
}

.company2 .wrap {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .company2 .wrap {
    padding-top: 100%;
  }
}
.company2 .wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact .lead1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .contact .lead1 {
    margin-bottom: 20px;
  }
}
.contact .lead2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .contact .lead2 {
    margin-bottom: 15px;
  }
}
.contact .lead2 span {
  display: inline-block;
  color: #fff;
  background: #D90B0B;
  padding: 5px 10px;
  font-size: 14px;
  margin-right: 3px;
}
@media screen and (max-width: 900px) {
  .contact .lead2 span {
    font-size: 12px;
  }
}
.contact .required {
  display: inline-block;
  color: #fff;
  background: #D90B0B;
  padding: 5px 10px;
  font-size: 14px;
}
.contact .required.no {
  background: #989898;
}
@media screen and (max-width: 900px) {
  .contact .required {
    font-size: 12px;
  }
}
.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 35px;
}
@media screen and (max-width: 900px) {
  .contact .row {
    display: block;
    margin-bottom: 20px;
  }
}
.contact .row .dt {
  width: 300px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .contact .row .dt {
    width: 100%;
    margin-bottom: 7px;
  }
}
.contact .row .dd {
  width: calc(100% - 360px);
}
@media screen and (max-width: 900px) {
  .contact .row .dd {
    width: 100%;
  }
}
.contact .textarea-row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 901px) {
  .contact .textarea-row .dt {
    padding-top: 8px;
  }
}
.contact textarea {
  resize: none;
  height: 120px;
}
.contact .check {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact .submit {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .contact .submit {
    margin-top: 40px;
  }
}
.contact .submit .span1 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 15px 70px 15px 40px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border: 1px solid #CE3030;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .contact .submit .span1 {
    display: block;
    font-size: 14px;
    padding: 12px 30px 12px 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact .submit .span1::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  z-index: 2;
  width: 7px;
  height: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact .submit .span1 .span2 {
  position: relative;
  z-index: 2;
  color: inherit;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.contact .submit .span1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#CE3030), to(#881F1F));
  background: linear-gradient(to bottom, #CE3030, #881F1F);
  z-index: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.contact .submit .span1:hover::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.contact .submit .span1:hover::after {
  border-left: 2px solid #CA2F2F;
  border-bottom: 2px solid #CA2F2F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact .submit .span1:hover .span2 {
  color: #CA2F2F;
}
.contact input[type=submit] {
  position: absolute;
  left: -1000%;
  opacity: 0;
}

.bg-color1 {
  background: #F2D2D2;
}

.bg-color2 {
  background: #D55959;
}

.bg-color2-2 {
  background: #DE8585;
}

.bg-color3 {
  background: #CB6363;
}

.bg-color3-2 {
  background: #D55959;
}

.bg-color4 {
  background: #CA2F2F;
}

.flow1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .flow1 ul {
    display: block;
  }
}
.flow1 ul li {
  width: 33.3333%;
  padding: 20px 40px;
  clip-path: polygon(85% 0, 100% 50%, 85% 100%, 0 100%, 0 0);
}
@media screen and (max-width: 900px) {
  .flow1 ul li {
    width: 100%;
    clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
    padding: 20px 20px 40px;
  }
}
.flow1 ul li .li-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .flow1 ul li .li-flex {
    max-width: 190px;
    margin: 0 auto;
  }
}
.flow1 ul li .li-flex .left {
  line-height: 1.1;
  font-size: 36px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-right: 30px;
}
.flow1 ul li .li-flex .left span {
  font-size: 20px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
}
.flow1 ul li .li-flex .right {
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}
.flow1 ul li:last-child {
  clip-path: none;
  padding: 20px;
}
.flow1 .attention {
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .flow1 .attention {
    margin-top: 10px;
  }
}

.work1 h2 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .work1 h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.work1 p {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .work1 p {
    text-align: left;
  }
}
.work1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1700px;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  .work1 .flex {
    margin-top: 30px;
  }
}
.work1 .flex .img {
  width: 49%;
}
.work2 {
  padding-top: 0;
}
.work2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .work2 ul {
    display: block;
    margin-top: 10px;
  }
}
.work2 ul li {
  width: 25%;
  padding: 20px 35px 15px 20px;
  clip-path: polygon(85% 0, 100% 50%, 85% 100%, 0 100%, 0 0);
}
@media screen and (max-width: 900px) {
  .work2 ul li {
    width: 100%;
    clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
    padding: 20px 20px 50px;
  }
}
.work2 ul li:last-child {
  clip-path: none;
  padding: 20px;
}
.work2 ul li .step {
  font-family: "futura-pt", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 900px) {
  .work2 ul li .step {
    text-align: center;
  }
}
.work2 ul li h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
  .work2 ul li h3 {
    text-align: center;
  }
}
.work2 ul li p {
  line-height: 2;
  font-size: 14px;
}

.min-section {
  padding: 70px 0;
}
@media screen and (max-width: 900px) {
  .min-section {
    padding: 40px 0;
  }
}
.min-section:last-child {
  padding-bottom: 0;
}
.min-section p {
  line-height: 2;
}
@media screen and (min-width: 901px) {
  .min-section .section-title {
    margin-bottom: 40px;
  }
}
.min-section .ul2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .min-section .ul2 {
    margin-bottom: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.min-section .ul2 .li2 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .min-section .ul2 .li2 {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 900px) {
  .min-section .ul2 .li2 {
    padding: 5px;
  }
}
.min-section .ul2 .li2 .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .min-section .ul2 .li2 .wrap {
    font-size: 16px;
  }
}

.kobadan1 .lead {
  margin-bottom: 20px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .kobadan1 .lead {
    margin-bottom: 10px;
  }
}
.kobadan1 .big-en {
  color: #CA2F2F;
  font-family: "futura-pt", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 900px) {
  .kobadan1 .big-en {
    font-size: 45px;
  }
}
.kobadan1 .big-ja {
  color: #CA2F2F;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 900px) {
  .kobadan1 .big-ja {
    font-size: 35px;
  }
}
.kobadan1 .small {
  font-size: 70%;
}
.kobadan1 .title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 7px;
}
@media screen and (max-width: 900px) {
  .kobadan1 .title {
    font-size: 14px;
    min-height: 42px;
  }
}
.kobadan1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.kobadan1 ul li {
  -webkit-box-shadow: 0 3px 6px rgba(202, 47, 47, 0.07);
          box-shadow: 0 3px 6px rgba(202, 47, 47, 0.07);
  background: #fff;
  padding: 20px 18px;
}
@media screen and (min-width: 901px) {
  .kobadan1 ul li {
    width: calc(33.3333% - 16.6666666667px);
    margin-right: 25px;
  }
  .kobadan1 ul li:nth-child(3n) {
    margin-right: 0;
  }
  .kobadan1 ul li:nth-child(n+4) {
    margin-top: 25px;
  }
}
@media screen and (max-width: 900px) {
  .kobadan1 ul li {
    width: calc(50% - 5px);
    margin-right: 10px;
  }
  .kobadan1 ul li:nth-child(2n) {
    margin-right: 0;
  }
  .kobadan1 ul li:nth-child(n+3) {
    margin-top: 10px;
  }
}
.kobadan1 ul .icon {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .kobadan1 ul .icon {
    margin-bottom: 7px;
  }
}
.kobadan1 ul .icon img {
  height: 80px;
  width: auto;
}
@media screen and (max-width: 900px) {
  .kobadan1 ul .icon img {
    height: 50px;
  }
}
.kobadan1 ul .text1 {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .kobadan1 ul .text1 {
    font-size: 14px;
  }
}
.kobadan1 ul .text2 {
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .kobadan1 ul .text2 {
    font-size: 12px;
    text-align: left;
  }
}
@media screen and (max-width: 900px) {
  .kobadan1 ul .text2 {
    font-size: 12px;
    text-align: left;
  }
}
.kobadan1 ul .text3 {
  margin-bottom: 10px;
}
.kobadan1 .text-hight {
  min-height: 163px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .kobadan1 .text-hight {
    min-height: 63px;
    margin-bottom: 50px;
  }
}
.kobadan1 .text-hight .wrap {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
}

.kobadan2 p {
  line-height: 1.7;
}
.kobadan2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .kobadan2 .flex {
    margin-bottom: 40px;
  }
}
.kobadan2 .flex:last-child {
  margin-bottom: 0;
}
.kobadan2 .flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .kobadan2 .flex {
    display: block;
  }
}
.kobadan2 .flex .left {
  width: 58%;
}
@media screen and (max-width: 900px) {
  .kobadan2 .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.kobadan2 .flex .left .row {
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .kobadan2 .flex .left .row {
    margin-bottom: 30px;
  }
}
.kobadan2 .flex .left .row:last-child {
  margin-bottom: 0;
}
.kobadan2 .flex .left h3 {
  color: #fff;
  background: #CA2F2F;
  font-size: 28px;
  font-weight: 900;
  display: inline-block;
  padding: 5px 20px 5px 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .kobadan2 .flex .left h3 {
    font-size: 20px;
  }
}
.kobadan2 .flex .left h3 span {
  display: inline-block;
  width: 40px;
  min-width: 40px;
  margin-right: 7px;
}
@media screen and (max-width: 900px) {
  .kobadan2 .flex .left h3 span {
    width: 25px;
    min-width: 25px;
    margin-right: 4px;
  }
}
.kobadan2 .flex .left h3 span img {
  vertical-align: sub;
}
.kobadan2 .flex .right {
  width: 38%;
  position: relative;
}
.kobadan2 .flex .right .maru1 {
  position: absolute;
  right: -25%;
  top: 90%;
  width: 50%;
}
@media screen and (max-width: 900px) {
  .kobadan2 .flex .right .maru1 {
    width: 20%;
    right: 10%;
    top: 60%;
  }
}
.kobadan2 .flex .right .maru2 {
  position: absolute;
  left: -25%;
  top: 90%;
  width: 50%;
}
@media screen and (max-width: 900px) {
  .kobadan2 .flex .right .maru2 {
    width: 20%;
    left: 10%;
    top: 60%;
  }
}
@media screen and (max-width: 900px) {
  .kobadan2 .flex .right {
    width: 100%;
  }
}
@media screen and (min-width: 901px) {
  .kobadan2 .flex .right {
    padding-top: 100px;
  }
}
.kobadan2 .img {
  position: relative;
}
.kobadan2 .img-a {
  width: 90%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .kobadan2 .img-a {
    width: 60%;
    margin: 0 auto;
  }
}
.kobadan2 .img-b {
  width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .kobadan2 .img-b {
    width: 60%;
    margin: 0 auto;
  }
}
.kobadan2 .right2 {
  text-align: right;
}

.kobadan3 .inner {
  max-width: 1200px;
}
.kobadan3 .lead {
  font-size: 22px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .kobadan3 .lead {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.kobadan3 .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.kobadan3 .flex1 .card {
  width: 48%;
  -webkit-box-shadow: 0 3px 6px rgba(202, 47, 47, 0.07);
          box-shadow: 0 3px 6px rgba(202, 47, 47, 0.07);
}
@media screen and (max-width: 900px) {
  .kobadan3 .flex1 .card:last-child {
    margin-bottom: 0;
  }
}
.kobadan3 .flex1 .card-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .kobadan3 .flex1 .card-flex {
    display: block;
  }
}
@media screen and (min-width: 901px) {
  .kobadan3 .flex1 .card-flex .img {
    width: 45%;
    height: 100%;
  }
}
@media screen and (max-width: 900px) {
  .kobadan3 .flex1 .card-flex .img {
    width: 100%;
  }
}
@media screen and (min-width: 901px) {
  .kobadan3 .flex1 .card-flex .img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.kobadan3 .flex1 .card-flex .contents {
  width: 55%;
  padding: 20px;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .kobadan3 .flex1 .card-flex .contents {
    width: 100%;
    padding: 15px 10px;
  }
}
.kobadan3 .flex1 .card-flex .contents .position {
  font-weight: 500;
}
.kobadan3 .flex1 .card-flex .contents .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.kobadan3 .flex1 .card-flex .contents p {
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .kobadan3 .flex1 .card-flex .contents p {
    font-size: 12px;
  }
}

.section-block {
  padding-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .section-block {
    padding-bottom: 40px;
  }
}
.section-block:last-child {
  margin-bottom: 0;
}

.section-title2 {
  color: #CA2F2F;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .section-title2 {
    margin-bottom: 20px;
  }
}
.section-title2 .span-en {
  font-family: "futura-pt", sans-serif;
  font-size: 38px;
  line-height: 1.1;
}
@media screen and (max-width: 900px) {
  .section-title2 .span-en {
    line-height: 1;
    font-size: 26px;
  }
}
.section-title2 .span-ja {
  font-size: 30px;
  line-height: 1.3;
}
@media screen and (max-width: 900px) {
  .section-title2 .span-ja {
    font-size: 20px;
  }
}

.section-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .section-row {
    margin-bottom: 15px;
  }
}
.section-row:last-child {
  margin-bottom: 0;
}
.section-row .name {
  font-size: 17px;
  font-weight: 700;
  background: #CA2F2F;
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
  white-space: nowrap;
  margin-right: 15px;
}
.section-row p {
  line-height: 1.9;
}

.section-block .flex4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .section-block .flex4 {
    display: block;
  }
}
.section-block .flex4 .left {
  width: 55%;
}
@media screen and (max-width: 900px) {
  .section-block .flex4 .left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.section-block .flex4 .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 5%;
}
@media screen and (max-width: 900px) {
  .section-block .flex4 .right {
    margin-left: 0;
    margin-right: initial;
    width: 100%;
  }
}
.section-block .flex4 .right img {
  max-width: 800px;
}
.section-block .flex5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .section-block .flex5 {
    display: block;
  }
}
.section-block .flex5 .left {
  width: 55%;
}
@media screen and (max-width: 900px) {
  .section-block .flex5 .left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.section-block .flex5 .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 5%;
}
@media screen and (max-width: 900px) {
  .section-block .flex5 .right {
    margin-right: 0;
    margin-left: initial;
    width: 100%;
  }
}
.section-block .flex5 .right img {
  max-width: 800px;
}
.section-block .flex5 .span-ja {
  max-width: 450px;
}
@media screen and (min-width: 901px) {
  .section-block .flex5-b .section-title3 {
    position: relative;
    left: -100px;
  }
}

@media screen and (min-width: 901px) {
  .kobadan3 .flex1 .card-flex .contents p {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  .section-row .name {
    font-size: 14px;
    padding: 3px 10px;
    margin-right: 7px;
  }
}
.last-message {
  background: url(../img/last-message.webp) no-repeat center center/cover;
}
@media screen and (max-width: 900px) {
  .last-message {
    padding: 25px 0;
  }
}
.last-message p {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.8;
  text-shadow: 2px 3px 3px black;
}
@media screen and (max-width: 900px) {
  .last-message p {
    font-size: 14px;
  }
}
@media screen and (max-width: 370px) {
  .last-message p {
    font-size: 13px;
  }
}

.section-block:last-child {
  padding-bottom: 0;
}

.section-title3 {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .section-title3 {
    margin-bottom: 20px;
  }
}
.section-title3 span {
  background: #CA2F2F;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  padding: 10px 20px;
  line-height: 2.7;
}
@media screen and (max-width: 900px) {
  .section-title3 span {
    padding: 5px;
    font-size: 16px;
    line-height: 2.4;
  }
}
@media screen and (max-width: 370px) {
  .section-title3 span {
    font-size: 15px;
  }
}

.greeting .flex4, .greeting .flex5 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 901px) {
  .greeting .section-title3 {
    white-space: nowrap;
  }
}
.greeting p {
  line-height: 1.7;
}
.greeting3 h2 {
  color: #CA2F2F;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .greeting3 h2 {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.greeting3 .img {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .greeting3 .img {
    margin-bottom: 20px;
  }
}
.greeting3 p {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 900px) {
  .greeting3 p {
    font-size: 14px;
  }
}

.greeting5 .section-title3 {
  text-align: right;
}
@media screen and (max-width: 900px) {
  .greeting5 .section-title3 {
    text-align: left;
  }
}

.check a {
  color: #212322;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.check a:hover {
  opacity: 0.6;
}
.check .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.check .wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
}
.check .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #212322;
}
.check .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  content: "";
  width: 20px;
  height: 5px;
  border-left: 4px solid #CA2F2F;
  border-bottom: 4px solid #CA2F2F;
  opacity: 0;
}
.check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.check input[type=checkbox] {
  position: absolute;
  left: -1000%;
  opacity: 0;
}

.wpcf7-spinner {
  display: none !important;
}