@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap");
* {
  font-family: 'Noto Sans JP', sans-serif,"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin: 0;
  padding: 0;
  color: #1D263A;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

a:hover img {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

img.aligncenter {
  margin-right: auto;
  margin-left: auto;
}

img.alignleft {
  margin-right: auto;
  margin-left: 0;
}

img.alignright {
  margin-right: 0;
  margin-left: auto;
}

body {
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-rendering: optimizeSpeed;
  position: relative;
  height: 100%;
}

@media screen and (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }
}

#contents {
  padding-top: 97px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  #contents {
    padding-bottom: 12%;
  }
}

@media screen and (max-width: 480px) {
  #contents {
    padding-top: 68px;
    padding-bottom: 14%;
  }
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap_wide {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.fc_key {
  color: #7B1831;
}

.inter {
  font-family: 'Inter', sans-serif;
}

.btn_small a {
  background: #fff url(../images/common/button_arrow.png) no-repeat 90% 50%/7px 9px;
  border: 1px solid #7B1831;
  position: relative;
  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;
  max-width: 220px;
  padding: 10px 25px;
  font-size: 1.4rem;
  color: #7B1831;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 5px 5px 0 #7B1831;
          box-shadow: 5px 5px 0 #7B1831;
}

.btn_small a:hover {
  color: #fff;
  background-color: #7B1831;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFFDC2));
  background: linear-gradient(transparent 60%, #FFFDC2 60%);
}

/*----------------------------
アニメーション
----------------------------*/
.scroll_up {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1.0;
}

.scroll_left {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.scroll_right {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  hover関連                                                   */
.txt_hover {
  display: block;
}

.txt_hover:hover {
  color: #7b1831;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: underline;
}

.img_hover:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}

.img_hover_zoom {
  display: block;
  overflow: hidden;
}

.img_hover_zoom img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.img_hover_zoom:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.img_hover_small {
  display: block;
  overflow: hidden;
}

.img_hover_small img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.img_hover_small:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  header                                                   */
header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  background: #fff;
}

@media screen and (max-width: 768px) {
  header {
    padding: 10px 0;
  }
}

header .wrap {
  max-width: 100%;
  padding: 0;
}

header .hd_flex {
  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;
}

@media screen and (max-width: 1024px) {
  header .hd_flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

header .hd_flex__l {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 60px;
  color: #7b1831;
  font-size: 1.2rem;
}

@media screen and (max-width: 1300px) {
  header .hd_flex__l {
    display: block;
    padding-left: 6%;
  }
}

@media screen and (max-width: 1157px) {
  header .hd_flex__l {
    width: 24%;
    padding-left: 2%;
    padding-right: 4%;
  }
}

@media screen and (max-width: 1024px) {
  header .hd_flex__l {
    width: 24%;
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  header .hd_flex__l {
    width: 46%;
    padding-left: 20px;
    padding-right: 0;
  }
}

@media screen and (max-width: 480px) {
  header .hd_flex__l {
    font-size: 1rem;
  }
}

header .hd_flex__l a {
  display: block;
  width: 100%;
  margin-right: 4%;
  max-width: 262px;
}

@media screen and (max-width: 1300px) {
  header .hd_flex__l a {
    margin-right: 0;
    margin-bottom: 10px;
    display: block;
  }
}

@media screen and (max-width: 480px) {
  header .hd_flex__l a {
    margin-bottom: 5px;
  }
}

header .hd_flex__c {
  width: 50%;
}

@media screen and (max-width: 1157px) {
  header .hd_flex__c {
    width: 62%;
  }
}

@media screen and (max-width: 768px) {
  header .hd_flex__c {
    display: none;
  }
}

header .hd_flex__c nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 4%;
}

header .hd_flex__c nav ul li {
  margin-right: 3%;
}

header .hd_flex__c nav ul li:last-child {
  margin-right: 0;
}

header .hd_flex__c nav ul li a {
  color: #1D263A;
  display: block;
  position: relative;
}

@media screen and (max-width: 1040px) {
  header .hd_flex__c nav ul li a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 820px) {
  header .hd_flex__c nav ul li a {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 796px) {
  header .hd_flex__c nav ul li a {
    font-size: 1.3rem;
  }
}

header .hd_flex__c nav ul li a:hover {
  color: #7b1831;
}

@media screen and (min-width: 1025px) {
  header .hd_flex__c nav ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #7b1831;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  header .hd_flex__c nav ul li a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

header .hd_flex__r {
  width: 20%;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 1024px) {
  header .hd_flex__r {
    width: 14%;
  }
}

@media screen and (max-width: 768px) {
  header .hd_flex__r {
    display: none;
  }
}

header .hd_flex__r .access_flex {
  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;
}

header .hd_flex__r .access_flex__l {
  width: 57%;
  margin-right: 3%;
}

@media screen and (max-width: 1024px) {
  header .hd_flex__r .access_flex__l {
    display: none;
  }
}

header .hd_flex__r .access_flex__l img {
  max-width: 214px;
}

header .hd_flex__r .access_flex__r {
  width: 40%;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 1024px) {
  header .hd_flex__r .access_flex__r {
    width: 100%;
  }
}

header .hd_flex__r .access_flex__r a {
  text-align: center;
  display: block;
  background: #7b1831;
  border: 2px solid #7b1831;
}

header .hd_flex__r .access_flex__r a:hover {
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .hd_flex__r .access_flex__r a span {
  font-size: 1.3rem;
  color: #fff;
  padding: 20px 0;
  display: block;
}

header .hd_flex__r .access_flex__r a span:hover {
  color: #7b1831;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  sp nav                                                   */
body.fix {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.sp_hd_nav .drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0 1em;
}

.sp_hd_nav .sp_menu {
  text-align: center;
  background: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 30px 9.6vw;
}

.sp_hd_nav .sp_menu_logo {
  max-width: 180px;
  margin: 0 auto 12.8vw 0;
}

.sp_hd_nav .sp_menu ul {
  margin-bottom: 14vw;
}

.sp_hd_nav .sp_menu ul li a {
  font-size: 1.6rem;
  text-align: left;
  display: block;
  line-height: 6.4vw;
  padding: 0;
  margin-bottom: 6.4vw;
}

.sp_hd_nav .sp_menu_ct {
  width: 31.1%;
  margin: 0 0 0 auto;
  padding-left: 3.5%;
  border-left: 1px solid #cccccc;
}

@media screen and (max-width: 1024px) {
  .sp_hd_nav .sp_menu_ct {
    width: 100%;
    padding: 0;
  }
}

.sp_hd_nav .sp_menu_ct a {
  display: block;
  background: #7b1831;
  border: 2px solid #7b1831;
}

@media screen and (max-width: 1024px) {
  .sp_hd_nav .sp_menu_ct a {
    max-width: 360px;
    margin: 0 auto;
  }
}

.sp_hd_nav .sp_menu_ct a:hover {
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp_hd_nav .sp_menu_ct a span {
  font-size: 1.3rem;
  color: #fff;
  padding: 20px 0;
  display: block;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .sp_hd_nav .sp_menu_ct a span {
    padding: 14px 0;
  }
}

.sp_hd_nav .sp_menu_ct a span:hover {
  color: #7b1831;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp_hd_nav .sp_menu_copy {
  margin-top: 30px;
  text-align: center;
  font-size: 1.1rem;
}

.sp_hd_nav .sp_menu_copy * {
  color: #8d8d8d;
}

.sp_hd_nav .sp_menu.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.sp_hd_nav .sp_hamburger p {
  margin-top: 20px;
  text-align: center;
  color: #7b1831;
  font-size: 1rem;
}

.sp_hd_nav .sp_hamburger .Toggle {
  display: block;
  position: fixed;
  width: 32px;
  height: 15px;
  cursor: pointer;
  z-index: 3;
  right: 20px;
  top: 15px;
}

.sp_hd_nav .sp_hamburger .Toggle span {
  display: block;
  position: absolute;
  width: 100%;
  border-bottom: solid 2px #7b1831;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.sp_hd_nav .sp_hamburger .Toggle span:nth-child(1) {
  top: 0;
}

.sp_hd_nav .sp_hamburger .Toggle span:nth-child(2) {
  bottom: 0;
}

.sp_hd_nav .sp_hamburger .Toggle.active span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sp_hd_nav .sp_hamburger .Toggle.active span:nth-child(2) {
  bottom: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  footer                                                   */
footer {
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
  background: url(../images/common/ft_img_pc.jpg) no-repeat center/cover;
}

@media screen and (max-width: 1024px) {
  footer {
    background: none;
  }
}

footer .ft_catch {
  padding: 75px 0 70px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  footer .ft_catch {
    padding: 7.5% 0 7%;
    background: url(../images/common/ft_img_sp.jpg) no-repeat center center/cover;
  }
}

footer .ft_catch * {
  color: #7b1831;
}

footer .ft_catch p {
  font-size: 3.1rem;
}

@media screen and (max-width: 768px) {
  footer .ft_catch p {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  footer .ft_catch p {
    font-size: 1.6rem;
  }
}

footer .ft_catch div {
  font-size: 4.5rem;
}

@media screen and (max-width: 1020px) {
  footer .ft_catch div {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  footer .ft_catch div {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 480px) {
  footer .ft_catch div {
    font-size: 1.8rem;
  }
}

footer .ft_cta .wrap {
  padding: 4% 50px 5%;
  background: #fff;
}

@media screen and (max-width: 1024px) {
  footer .ft_cta .wrap {
    padding: 4% 4% 5%;
  }
}

footer .ft_cta__ttl {
  text-align: center;
  color: #000;
  font-size: 2.6rem;
  margin-bottom: 4.5%;
}

@media screen and (max-width: 768px) {
  footer .ft_cta__ttl {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  footer .ft_cta__ttl {
    font-size: 1.4rem;
  }
}

footer .ft_cta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  footer .ft_cta ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

footer .ft_cta ul li {
  width: 30%;
}

footer .ft_cta ul li:nth-of-type(1) {
  width: 33.5%;
  margin-right: 7%;
}

@media screen and (max-width: 1024px) {
  footer .ft_cta ul li:nth-of-type(1) {
    width: 48%;
    margin-right: 0;
  }
}

footer .ft_cta ul li:nth-of-type(2) {
  width: 26%;
  margin-right: 3%;
}

@media screen and (max-width: 1024px) {
  footer .ft_cta ul li:nth-of-type(2) {
    width: 48%;
    margin-right: 0;
  }
}

footer .ft_cta ul li:last-child {
  width: 31.1%;
  margin: 0 0 0 auto;
  padding-left: 3.5%;
  border-left: 1px solid #cccccc;
}

@media screen and (max-width: 1024px) {
  footer .ft_cta ul li:last-child {
    width: 100%;
    padding: 0;
  }
}

footer .ft_cta ul li:last-child a {
  display: block;
  background: #7b1831;
  border: 2px solid #7b1831;
}

@media screen and (max-width: 1024px) {
  footer .ft_cta ul li:last-child a {
    max-width: 360px;
    margin: 0 auto;
  }
}

footer .ft_cta ul li:last-child a:hover {
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

footer .ft_cta ul li:last-child a span {
  font-size: 1.3rem;
  color: #fff;
  padding: 20px 0;
  display: block;
  text-align: center;
}

@media screen and (max-width: 480px) {
  footer .ft_cta ul li:last-child a span {
    padding: 14px 0;
  }
}

footer .ft_cta ul li:last-child a span:hover {
  color: #7b1831;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1024px) {
  footer .ft_cta ul li:last-child {
    border-top: 1px solid #cccccc;
    border-left: none;
    margin-top: 20px;
    padding: 25px 10% 0;
  }
}

footer .ft_nav {
  background: #f2f2f2;
}

@media screen and (max-width: 768px) {
  footer .ft_nav {
    display: none;
  }
}

footer .ft_nav nav {
  padding: 20px 0;
}

footer .ft_nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media screen and (max-width: 1024px) {
  footer .ft_nav nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .ft_nav nav ul li {
  margin-left: 3%;
}

@media screen and (max-width: 1024px) {
  footer .ft_nav nav ul li {
    margin-left: 0;
  }
  footer .ft_nav nav ul li:nth-of-type(2) {
    margin: 0 4%;
  }
}

footer .ft_nav nav ul li a {
  color: #1D263A;
  display: block;
  position: relative;
  font-size: 1.3rem;
}

footer .ft_nav nav ul li a:hover {
  color: #7b1831;
}

@media screen and (min-width: 1025px) {
  footer .ft_nav nav ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #7b1831;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  footer .ft_nav nav ul li a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

footer .ft_copy {
  background: #fff;
}

footer .ft_copy p {
  text-align: center;
  font-size: 1.2rem;
  color: #515867;
  padding: 20px 0 33px;
}

footer .pagetop-wrap {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  footer .pagetop-wrap {
    bottom: 120px;
  }
}

@media screen and (max-width: 480px) {
  footer .pagetop-wrap {
    bottom: 67px;
  }
}

footer .pagetop-wrap a:hover {
  opacity: 0.8;
}

footer .pagetop-wrap a img {
  width: 49px;
  margin: 0 auto;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  top                                                   */
.ttl_border {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 65px;
}

@media screen and (max-width: 768px) {
  .ttl_border {
    padding-bottom: 2%;
    margin-bottom: 6.5%;
  }
}

@media screen and (max-width: 480px) {
  .ttl_border {
    padding-bottom: 4%;
    margin-bottom: 8.5%;
  }
}

.ttl_border h2 {
  line-height: 1;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .ttl_border h2 {
    margin-bottom: 1.5%;
  }
}

@media screen and (max-width: 480px) {
  .ttl_border h2 {
    margin-bottom: 3.5%;
  }
}

.ttl_border h2 img {
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .ttl_border h2 img {
    width: 70%;
  }
}

.ttl_border h2.en {
  font-size: 4.9vw;
  font-family: 'Inter', sans-serif;
}

@media screen and (max-width: 768px) {
  .ttl_border h2.en {
    font-size: 9vw;
  }
}

.ttl_border:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 2px;
  background: url(../images/common/ttl_border.svg) no-repeat center/cover;
}

#mv.mv_top {
  background: #fff url(../images/top/mv_bg.jpg) no-repeat center bottom/100% 75%;
}

#mv.mv_top .wrap {
  max-width: 1347px;
}

#mv.mv_top .wrap > h1 {
	position: relative;
	display: flex;
}

.mv_logo {
	max-width: 312px;
	top: 40px;
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mv_logo > span:nth-of-type(1) {
	max-width: 160px;
	width: 250px;
}

.mv_logo > span:nth-of-type(2) {
	max-width: 30px;
	width: 60px;
}

.mv_logo > span:nth-of-type(3) {
	max-width: 110px;
	width: 200px;
}

.mv_logo > span img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home #mv {
  position: relative;
}

.home #mv .overlay {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 2;
}

@media screen and (max-width: 1240px) {
  .home #mv.mv_top .wrap > h1 .mv_logo {
		top: 20px;
	}
}

@media screen and (max-width: 980px) {
  .home #mv.mv_top .wrap > h1 .mv_logo {
		top: 4px;
	}
}

@media screen and (max-width: 768px) {
  .home #mv.mv_top .wrap > h1 .mv_logo {
		top: 0px;
		max-width: 250px;
	}
}


@media screen and (max-width: 750px) {
  .home #mv .overlay {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

@media screen and (max-width: 600px) {  
  .home #mv.mv_top .wrap > h1 .mv_logo {
		max-width: 180px;
	}
}

@media screen and (max-width: 430px) {  
  .home #mv.mv_top .wrap > h1 {
		justify-content: center;
		padding-top: 10px;
	}
}

.home #mv .btn_area {
  position: relative;
}

@media screen and (max-width: 750px) {
  .home #mv .btn_area {
    width: 100%;
    margin: 0 auto;
  }
}

.home #mv .btn_area button {
  position: absolute;
  top: -10px;
  right: -10px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .home #mv .btn_area button {
    left: 9px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 8%;
    height: 40px;
    margin: auto;
  }
}

.home #contents {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .home #contents {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .home #contents {
    padding-bottom: 0;
  }
}

.home .intro_bnr {
	display: flex;
	justify-content: center;
	padding: 0px 15px 80px;
}

.home .intro_txt {
  text-align: center;
  padding: 80px 0 100px;
  background: url(../images/top/intro_txt_bg.jpg) no-repeat center/cover;
}

.home .search_ttl {
	color: #000;
}
 
.home .search_ttl > span {
	color: #FFF !important;
	padding: 0px 6px 2px;
    font-weight: 500;
}

.home .search_ttl > span.zenki {
	background: #7B1831;
	margin-left: 5px;
}

.home .search_ttl > span.kouki {
	background: #1D263A;
	margin-right: 5px;
}

.home .search_btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	max-width: 800px;
	margin: 0px auto 60px;
}

.home .search_btn > div {
	width: 48%;
}


@media screen and (max-width: 768px) {
  .home .intro_txt {
    padding: 8% 0 10%;
  }
  
  .home .search_btn {
	margin: 0px auto 10px;
  }
  
  .home .search_btn > div {
  	width: 100%;
	margin: 10px 0px;
  }
}

@media screen and (max-width: 480px) {
  .home .intro_txt {
    padding: 10% 0 12%;
  }
}

.home .intro_txt h2 {
  font-size: 3.1rem;
  font-weight: bold;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .home .intro_txt h2 {
    margin-bottom: 3%;
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .home .intro_txt h2 {
    margin-bottom: 5%;
  }
}

.home .intro_txt h2 span {
  color: #7b1831;
}

@media screen and (max-width: 480px) {
  .home .intro_txt p {
    text-align: left;
  }
}

.home .intro_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 480px) {
  .home .intro_flex {
    display: block;
  }
}

.home .intro_flex_l, .home .intro_flex_r {
  width: 50%;
  text-align: center;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .home .intro_flex_l, .home .intro_flex_r {
    width: 100%;
  }
}

.home .news {
  padding: 8vw 0 6vw;
}

@media screen and (max-width: 768px) {
  .home .news {
    padding: 8% 0 12%;
  }
}

@media screen and (max-width: 480px) {
  .home .news {
    padding: 10% 0 14%;
  }
}

.home .news_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .home .news_flex {
    display: block;
  }
}

.home .news_flex_l {
  width: 50%;
  padding-right: 3vw;
}

@media screen and (max-width: 768px) {
  .home .news_flex_l {
    width: 100%;
    padding-right: 0;
    margin-bottom: 4vw;
  }
}

.home .news_flex_l .slider-2 .slick-slide {
  position: relative;
  overflow: hidden;
}

.home .news_flex_l .slider-2 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home .news_flex_l .slider-2 .slick-arrow {
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  bottom: 0;
  z-index: 1;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.home .news_flex_l .slider-2 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #1d263a;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 24px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.home .news_flex_l .slider-2 .slick-next {
  right: 0;
}

@media screen and (max-width: 768px) {
  .home .news_flex_l .slider-2 .slick-next {
    right: 20px;
  }
}

.home .news_flex_l .slider-2 .slick-prev {
  right: 15px;
}

@media screen and (max-width: 768px) {
  .home .news_flex_l .slider-2 .slick-prev {
    right: 30px;
  }
}

.home .news_flex_l .slider-2 .slick-prev::before {
  border-width: 0 0 2px 2px;
}

.home .news_flex_l .dots-2 {
  margin-top: 20px;
  padding-left: 20px;
}

.home .news_flex_l .dots-2 .slick-dots {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home .news_flex_l .dots-2 .slick-dots li {
  display: inline-block;
}

.home .news_flex_l .dots-2 .slick-dots button {
  display: block;
  width: 6px;
  height: 6px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}

.home .news_flex_l .dots-2 .slick-dots .slick-active button {
  background: #0a467d;
}

.home .news_flex_r {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .home .news_flex_r {
    width: 100%;
  }
}

.home .news_flex_r .newslist_ttl {
  border-bottom: 1px solid #1d263a;
}

.home .news_flex_r .newslist_ttl * {
  font-weight: bold;
}

.home .news_flex_r .newslist_ttl .en {
  font-size: 2.9rem;
  padding-right: 7px;
}

.home .news_flex_r .newslist_ttl .jp {
  font-size: 1.6rem;
}

.home .news_flex_r ul {
  border-top: 1px solid #ccc;
}

.home .news_flex_r ul li {
  border-bottom: 1px solid #ccc;
}

.home .news_flex_r ul li a {
  display: block;
  padding: 25px 10px;
  font-size: 1.2rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .home .news_flex_r ul li a {
    padding: 2.5% 1%;
  }
}

@media screen and (max-width: 480px) {
  .home .news_flex_r ul li a {
    padding: 4.5% 3%;
  }
}

.home .news_flex_r ul li a:hover {
  color: #7b1831;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home .news_flex_r ul li a:hover span {
  color: #7b1831;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home .news_flex_r ul li a span {
  padding-right: 2.1vw;
}

.home .concept h2 {
  max-width: 480px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 480px) {
  .home .concept h2 {
    max-width: 48vw;
    margin: 0 auto 3%;
  }
}

.home .concept_list_box {
  padding-top: 122px;
  margin-bottom: 100px;
}

.home .concept_list_box:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .home .concept_list_box {
    padding-top: 40%;
    margin-bottom: 10%;
  }
}

@media screen and (max-width: 480px) {
  .home .concept_list_box {
    padding-top: 42%;
    margin-bottom: 12%;
  }
}

.home .concept_list_box dl {
  max-width: 660px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3% 3% 3% 1.5%;
}

@media screen and (max-width: 768px) {
  .home .concept_list_box dl {
    padding: 5% 0;
  }
}

.home .concept_list_box dl dt {
  width: 10%;
  padding: 2% 3% 2% 1.5%;
}

@media screen and (max-width: 480px) {
  .home .concept_list_box dl dt {
    width: 12%;
  }
}

.home .concept_list_box dl dd {
  width: 90%;
  padding: 2% 3%;
  position: relative;
}

@media screen and (max-width: 480px) {
  .home .concept_list_box dl dd {
    width: 88%;
  }
}

.home .concept_list_box dl dd:before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 100%;
  z-index: 1;
  background: #ccc url(../images/top/concept_list_border.png) no-repeat top center/auto;
}

.home .concept_list_box dl dd h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .home .concept_list_box dl dd h3 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .home .concept_list_box dl dd h3 {
    font-size: 1.6rem;
    margin-bottom: 4%;
  }
}

.home .concept_list_box dl dd p {
  font-size: 1.4rem;
}

.home .concept_list_box_link {
  max-width: 660px;
  padding: 27px 20px 0 100px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .home .concept_list_box_link {
    padding: 2.7% 2%;
  }
}

@media screen and (max-width: 480px) {
  .home .concept_list_box_link {
    padding: 4.7% 4%;
  }
}

.home .concept_list_box_link a {
  display: block;
  max-width: 107px;
}

@media screen and (max-width: 768px) {
  .home .concept_list_box_link a {
    margin: 0 0 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .home .concept_list_box_link a {
    max-width: 88px;
  }
}

.home .concept_list_box:nth-of-type(even) dl {
  margin: 0 0 0 auto;
}

.home .concept_list_box:nth-of-type(even) .concept_list_box_img {
  margin: 0 0 0 auto;
}

@media screen and (max-width: 480px) {
  .home .concept_list_box:nth-of-type(even) .concept_list_box_img {
    margin: 0 auto;
  }
}

.home .concept_list_box:nth-of-type(even) .concept_list_box_link {
  margin: 0 0 0 auto;
}

.home .concept_list_box:nth-of-type(1) {
  background: url(../images/top/concept_img_bg01.jpg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .home .concept_list_box:nth-of-type(1) {
    background: url(../images/top/concept_img_bg01_sp.jpg) no-repeat top center/100% auto;
  }
}

.home .concept_list_box:nth-of-type(1) .concept_list_box_img {
  max-width: 372px;
  padding-left: 20px;
}

@media screen and (max-width: 480px) {
  .home .concept_list_box:nth-of-type(1) .concept_list_box_img {
    padding: 0 20px;
  }
}

.home .concept_list_box:nth-of-type(2) {
  background: url(../images/top/concept_img_bg02.jpg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .home .concept_list_box:nth-of-type(2) {
    background: url(../images/top/concept_img_bg02_sp.jpg) no-repeat top center/100% auto;
  }
}

.home .concept_list_box:nth-of-type(2) .concept_list_box_img {
  max-width: 316px;
  padding-right: 20px;
}

@media screen and (max-width: 480px) {
  .home .concept_list_box:nth-of-type(2) .concept_list_box_img {
    padding: 0 20px;
  }
}

.home .concept_list_box:nth-of-type(3) {
  background: url(../images/top/concept_img_bg03.jpg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .home .concept_list_box:nth-of-type(3) {
    background: url(../images/top/concept_img_bg03_sp.jpg) no-repeat top center/100% auto;
  }
}

.home .concept_list_box:nth-of-type(3) .concept_list_box_img {
  max-width: 336px;
  padding-left: 20px;
}

@media screen and (max-width: 480px) {
  .home .concept_list_box:nth-of-type(3) .concept_list_box_img {
    padding: 0 20px;
  }
}

.home .concept_list_box:nth-of-type(4) {
  background: url(../images/top/concept_img_bg04.jpg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .home .concept_list_box:nth-of-type(4) {
    background: url(../images/top/concept_img_bg04_sp.jpg) no-repeat top center/100% auto;
  }
}

.home .concept_list_box:nth-of-type(4) .concept_list_box_img {
  max-width: 295px;
  padding-right: 20px;
}

@media screen and (max-width: 480px) {
  .home .concept_list_box:nth-of-type(4) .concept_list_box_img {
    padding: 0 20px;
  }
}

.home .plans {
  background: #7B1831;
  padding: 120px 0 150px;
}

@media screen and (max-width: 768px) {
  .home .plans {
    padding: 12% 0 15%;
  }
}

@media screen and (max-width: 480px) {
  .home .plans {
    padding: 14% 0 17%;
  }
}

.home .plans .ttl_border:before {
  background: url(../images/common/ttl_border_white.svg) no-repeat center/cover;
}

.home .plans .ttl_border h2 {
  color: #fff;
}

.home .plans .ttl_border P {
  color: #fff;
}

.home .plans_cont {
  padding: 60px 140px 100px;
  background: #F2F2F2;
}

@media screen and (max-width: 768px) {
  .home .plans_cont {
    padding: 6% 4% 10%;
  }
}

@media screen and (max-width: 480px) {
  .home .plans_cont {
    padding: 8% 4% 12%;
  }
}

.home .plans_cont h3 {
  text-align: center;
  font-size: 2.9rem;
  font-weight: bold;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .home .plans_cont h3 {
    margin-bottom: 7%;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 480px) {
  .home .plans_cont h3 {
    margin-bottom: 9%;
    font-size: 1.8rem;
  }
}

.home .plans_cont_top {
  margin-bottom: 50px;
  margin-top: 1vw;
}

@media screen and (max-width: 768px) {
  .home .plans_cont_top {
    margin-bottom: 5%;
  }
}

@media screen and (max-width: 480px) {
  .home .plans_cont_top {
    margin-bottom: 7%;
    display: block;
  }
}

.home .plans_cont_top li {
  position: relative;
  border: 2px solid #1D263A;
  padding: 0px;
}

@media screen and (max-width: 480px) {
  .home .plans_cont_top li {
    width: 100%;
    padding: 3% 0 4%;
    margin-bottom: 50px;
  }
}

.home .plans_cont_top_ttl {
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
  margin: auto;
  text-align: center;
}

.home .plans_cont_top_ttl span {
  font-size: 2.8rem;
  font-weight: 600;
  background: #F2F2F2;
  padding: 0 15px;
}

.home .plans_cont_top_tb {
  /*margin-bottom: 30px;*/
}

.plan_ttl {
	margin: 3vw 0px 0px !important;
}

.home .plans_cont_top_tb table tr th, .home .plans_cont_top_tb table tr td {
  color: #1D263A;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.home .plans_cont_top_tb table tr th {
  padding-left: 6%;
  width: 10em;
}

@media screen and (max-width: 500px) {
	.home .plans_cont_top_tb table tr th {
		width: auto;
	}	
}

.home .plans_cont_top_tb table tr td {
  padding-right: 6%;
}

.home .plans_cont_top_btn a {
  color: #fff;
  text-align: center;
  background: #DB8B31 url(../images/common/arrow_white.svg) no-repeat 98% center/37px 5.7px;
  padding: 20px 10px;
  display: block;
  max-width: 271px;
  margin: 0 auto 50px;
  border: 1px solid #DB8B31;
}

.home .plans_cont_top_btn a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  color: #DB8B31;
}

.home .plans_cont_bottom h4 {
  margin-bottom: 40px;
  font-size: 2rem;
}


@media screen and (max-width: 480px) {
  .home .plans_cont_bottom h4 {
    font-size: 1.8rem;
  }
}

.home .plans_cont_bottom h4 span {
  color: #B07483;
}

.home .plans_cont_bottom dl {
  border-top: 1px solid #ccc;
  padding: 18px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home .plans_cont_bottom dl dt {
  font-size: 1.5rem;
  font-weight: 600;
  padding-right: 5%;
  min-width: 90px;
}

.home .plans_cont_bottom dl:last-child {
  display: block;
}

.home .plans_cont_bottom dl:last-child dt {
  margin-bottom: 20px;
}

.home .plans_cont_bottom dl:last-child table {
  margin-bottom: 30px;
}

.home .plans_cont_bottom dl:last-child table th, .home .plans_cont_bottom dl:last-child table td {
  vertical-align: top;
  font-size: 1.3rem;
  padding: 3px 0;
}

@media screen and (max-width: 768px) {
  .home .plans_cont_bottom dl:last-child table th, .home .plans_cont_bottom dl:last-child table td {
    padding: 5px 0;
  }
}

.home .plans_cont_bottom dl:last-child table th {
  width: 12%;
  min-width: 90px;
}

.home .plans_cont_bottom dl:last-child table td {
  width: 88%;
  padding-left: 4%;
  position: relative;
}

.home .plans_cont_bottom dl:last-child table td:after {
  position: absolute;
  content: '';
  width: 4%;
  height: 2px;
  display: block;
  left: 0;
  top: 15px;
  margin: auto;
  border-bottom: 1px dashed #ccc;
}

.home .plans_cont_bottom dl:last-child p {
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.8;
}

.home .voice {
  padding: 140px 0 150px;
}

@media screen and (max-width: 768px) {
  .home .voice {
    padding: 14% 0 15%;
  }
}

@media screen and (max-width: 480px) {
  .home .voice {
    padding: 16% 0 17%;
  }
}

.home .voice_list_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -60px;
  padding-bottom: -60px;
}

@media screen and (max-width: 1040px) {
  .home .voice_list_flex {
    margin-top: -6%;
    padding-bottom: -6%;
  }
}

@media screen and (max-width: 480px) {
  .home .voice_list_flex {
    display: block;
  }
}

.home .voice_list_flex li {
  width: 48%;
  max-width: 500px;
  position: relative;
  padding: 9px 40px 45px;
  background: #F2F2F2;
}

@media screen and (max-width: 1040px) {
  .home .voice_list_flex li {
    padding: 2% 2% 4%;
  }
}

@media screen and (max-width: 768px) {
  .home .voice_list_flex li {
    width: 100%;
    max-width: 600px;
    padding: 4% 4% 4%;
    margin: 0 auto 10%;
  }
}

@media screen and (max-width: 480px) {
  .home .voice_list_flex li {
    padding: 4% 6% 6%;
    margin: 0 auto 15%;
  }
}

.home .voice_list_flex li h3 {
  position: absolute;
  left: 45px;
  top: -32px;
  z-index: 2;
}

@media screen and (max-width: 1040px) {
  .home .voice_list_flex li h3 {
    top: -12px;
    left: 2%;
  }
}

@media screen and (max-width: 768px) {
  .home .voice_list_flex li h3 {
    left: 4%;
  }
}

@media screen and (max-width: 400px) {
  .home .voice_list_flex li h3 {
    top: -15px;
    left: 6%;
  }
}

.home .voice_list_flex li .voice_name {
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  line-height: 1.2;
}

.home .voice_list_flex li .voice_name small {
  font-size: 1.4rem;
  display: block;
}

.home .voice_list_flex li .voice_icon {
  margin: 0 0 40px auto;
}

@media screen and (max-width: 1040px) {
  .home .voice_list_flex li .voice_icon {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .home .voice_list_flex li .voice_icon {
    margin: 0 0 4% auto;
  }
}

@media screen and (max-width: 768px) {
  .home .voice_list_flex li .voice_icon {
    width: 44px;
  }
}

.home .voice_list_flex li p {
  font-size: 1.3rem;
  line-height: 1.8;
}

.home .voice_list_flex li:nth-of-type(1) h3 {
  width: 281px;
}

@media screen and (max-width: 1040px) {
  .home .voice_list_flex li:nth-of-type(1) h3 {
    width: 18vw;
  }
}

@media screen and (max-width: 400px) {
  .home .voice_list_flex li:nth-of-type(1) h3 {
    width: 54vw;
  }
}

.home .voice_list_flex li:nth-of-type(1) .voice_icon {
  width: 64px;
}

.home .voice_list_flex li:nth-of-type(2) h3 {
  width: 292px;
}

@media screen and (max-width: 1040px) {
  .home .voice_list_flex li:nth-of-type(2) h3 {
    width: 17vw;
  }
}

@media screen and (max-width: 400px) {
  .home .voice_list_flex li:nth-of-type(2) h3 {
    width: 47vw;
  }
}

.home .voice_list_flex li:nth-of-type(2) .voice_icon {
  width: 71px;
}

.home .faq {
  padding: 110px 0 140px;
}

@media screen and (max-width: 768px) {
  .home .faq {
    padding: 11% 0 14%;
  }
}

@media screen and (max-width: 480px) {
  .home .faq {
    padding: 13% 0 16%;
  }
}

.home .faq .accordion_area .accordion_box {
  padding: 25px 15px;
  background: #fff;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .home .faq .accordion_area .accordion_box {
    padding: 2.5% 1.5%;
  }
}

@media screen and (max-width: 480px) {
  .home .faq .accordion_area .accordion_box {
    padding: 4.5% 3.5%;
  }
}

.home .faq .accordion_area .accordion_box .ac_header {
  position: relative;
  z-index: +1;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

.home .faq .accordion_area .accordion_box .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

.home .faq .accordion_area .accordion_box .ac_header .i_box:before,
.home .faq .accordion_area .accordion_box .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}

.home .faq .accordion_area .accordion_box .ac_header .i_box:before {
  border-top: 2px solid #1D263A;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.home .faq .accordion_area .accordion_box .ac_header .i_box:after {
  border-left: 2px solid #1D263A;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  -webkit-transition: .3s;
  transition: .3s;
}

.home .faq .accordion_area .accordion_box .ac_header.open .i_box:after {
  height: 0;
}

.home .faq .accordion_area .accordion_box .ac_inner {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.home .faq .accordion_area .accordion_box .p-faq__headinner::before,
.home .faq .accordion_area .accordion_box .p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  height: 44px;
  content: '';
}

.home .faq .accordion_area .accordion_box .p-faq__headinner::before {
  background: url(../images/top/faq_icon_q.svg) no-repeat center/cover;
}

.home .faq .accordion_area .accordion_box .p-faq__bodyinner::before {
  background: url(../images/top/faq_icon_a.svg) no-repeat center/cover;
}

.home .faq .accordion_area .accordion_box .p-faq__headinner {
  display: block;
  padding-left: 60px;
  padding-right: 40px;
  position: relative;
  line-height: 1.5;
}

.home .faq .accordion_area .accordion_box .p-faq__bodyinner {
  display: block;
  padding-left: 60px;
  position: relative;
  line-height: 1.5;
  font-size: 1.4rem;
}

.home .about {
  padding: 120px 0 170px;
  background: #F2F2F2;
}

@media screen and (max-width: 768px) {
  .home .about {
    padding: 12% 0 17%;
  }
}

@media screen and (max-width: 480px) {
  .home .about {
    padding: 14% 0 19%;
  }
}

.home .about h2 {
  font-size: 2rem;
  margin-bottom: 0;
}

.home .about_cont {
  margin-bottom: 120px;
  padding: 70px 65px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .home .about_cont {
    margin-bottom: 12%;
    padding: 7% 6.5%;
  }
}

@media screen and (max-width: 480px) {
  .home .about_cont {
    margin-bottom: 14%;
    padding: 8% 4%;
  }
}

.home .about_cont_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: 768px) {
  .home .about_cont_flex {
    display: block;
  }
}

.home .about_cont_flex_l, .home .about_cont_flex_r {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .home .about_cont_flex_l, .home .about_cont_flex_r {
    width: 100%;
  }
}

.home .about_cont_flex_l table, .home .about_cont_flex_r table {
  margin-bottom: 30px;
}

.home .about_cont_flex_l table th, .home .about_cont_flex_l table td, .home .about_cont_flex_r table th, .home .about_cont_flex_r table td {
  vertical-align: top;
  font-size: 1.4rem;
  padding: 3px 0;
}

@media screen and (max-width: 768px) {
  .home .about_cont_flex_l table th, .home .about_cont_flex_l table td, .home .about_cont_flex_r table th, .home .about_cont_flex_r table td {
    padding: 5px 0;
  }
}

.home .about_cont_flex_l table td, .home .about_cont_flex_r table td {
  position: relative;
}

.home .about_cont_flex_l table td:after, .home .about_cont_flex_r table td:after {
  position: absolute;
  content: '';
  width: 14%;
  height: 2px;
  display: block;
  left: 0;
  top: 15px;
  margin: auto;
  border-bottom: 1px dashed #ccc;
}

.home .about_cont_flex_l table tr th {
  width: 15%;
  min-width: 60px;
}

.home .about_cont_flex_l table tr td {
  width: 85%;
  padding-left: 14%;
}

.home .about_cont_flex_r table tr th {
  width: 20%;
  min-width: 60px;
}

.home .about_cont_flex_r table tr td {
  width: 80%;
  padding-left: 15%;
}

@media screen and (max-width: 768px) {
  .home .about_map iframe {
    height: 260px;
  }
}

@media screen and (max-width: 480px) {
  .home .about_map iframe {
    height: 180px;
  }
}

.home .about_map p {
  margin: 20px 0 0 0;
  font-size: 1.5rem;
  line-height: 1.7;
}

.home .about_map p span {
  color: #7B1831;
  padding-right: 10px;
}
/*# sourceMappingURL=base.css.map */