@charset "UTF-8";
/*----------------------------------------------------------------*/
/* HTML initialization */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}

/*----------------------------------------------------------------*/
/* body initialization */
body {
  font-size: 1.6rem;
  font-family: source-han-serif-japanese, serif;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
  color: #000000;
}

@media (max-width: 768px) {
  body {
    max-width: 100%;
    min-width: 320px;
    overflow: hidden;
    font-size: 1.5rem;
  }
}
/*----------------------------------------------------------------*/
/*------------------------------------------------------------
header
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.header_wrap {
  position: relative;
  background: #ffffff;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  line-height: 1;
}

.header_container {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 1201px) {
  .header_wrap {
    z-index: 999;
  }
}
.header_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 2.5rem;
}

.header_logo {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header_logo:hover {
  opacity: 0.5;
}
.header_logo .ja_logo {
  display: block;
  line-height: 0;
}
.header_logo .ja_logo img {
  width: 20rem;
}

@media screen and (max-width: 1200px) {
  .header_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    height: 6rem;
  }
  .header_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_logo .ja_logo img {
    width: auto;
    height: 2.5rem;
  }
}
.header_year .year {
  font-family: baskerville-display-pt, serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-top: 0.5rem;
  padding-right: 6rem;
}

@media screen and (max-width: 1200px) {
  .header_year {
    padding-left: 2rem;
  }
  .header_year .year {
    font-size: 1.4rem;
    padding-right: 3.6rem;
  }
}
@media screen and (max-width: 1500px) {
  .header_year .year {
    font-size: 1.4rem;
    font-family: baskerville-display-pt, serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding-top: 0.5rem;
    padding-right: 3.6rem;
  }
}
@media screen and (max-width: 1500px) {
  .header_year .year {
    padding-top: 0.6rem;
  }
}
.header_nav {
  padding: 2rem 0;
  font-size: 1.4rem;
  font-weight: 400;
}
.header_nav .header_nav_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  letter-spacing: 0.08em;
}
.header_nav .header_nav_box .header_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 2rem;
}
.header_nav .header_nav_box .header_items li {
  padding: 0 1.6rem;
}
.header_nav .header_nav_box .header_items li:last-child {
  padding: 0 0 0 1.6rem;
}
.header_nav .header_nav_box .header_items li > a {
  display: block;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.header_nav .header_nav_box .header_items li > a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #e50012;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header_nav .header_nav_box .header_items li > a:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header_nav .header_nav_box .header_items .no-link {
  color: #cccccc;
  pointer-events: none;
}
.header_nav .header_nav_box .header_items .no-link:after {
  display: none;
}
.header_nav .header_nav_box .header_entryArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header_nav .header_nav_box .header_entryArea__list {
  margin-left: 1rem;
}
.header_nav .header_nav_box .header_entryArea__list .header_btn_red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  background-color: #e50012;
  color: #ffffff;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}
.header_nav .header_nav_box .header_entryArea__list .header_btn_red:hover {
  color: #ffffff;
  background-color: #000000;
}
.header_nav .header_nav_box .header_entryArea__list .header_btn_red.no-link {
  opacity: 0.1;
  pointer-events: none;
  background-color: #000000;
}

@media screen and (max-width: 1200px) {
  .header_nav {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: rgba(0, 0, 0, 0.8);
    overflow-y: scroll;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 10;
    pointer-events: none;
  }
  .header_nav.opened {
    opacity: 1;
    pointer-events: all;
  }
  .header_nav .header_nav_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    text-align: center;
  }
  .header_nav .header_nav_box .header_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
  }
  .header_nav .header_nav_box .header_items li {
    padding: 3vh 0;
  }
  .header_nav .header_nav_box .header_items li:last-child {
    padding: 3vh 0 0 0;
  }
  .header_nav .header_nav_box .header_items li > a {
    text-align: center;
    font-size: 2rem;
  }
  .header_nav .header_entryArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50%;
    margin: 0 auto;
  }
  .header_nav .header_entryArea__list {
    width: 100%;
    margin: 5vh 0 0 0 !important;
  }
  .header_nav .header_entryArea__list .header_btn_red {
    width: 100%;
    height: 5vw;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header_nav .header_entryArea__list .header_btn_red.no-link {
    opacity: 0.5 !important;
    pointer-events: none;
    background-color: #b2b2b2 !important;
  }
}
@media screen and (min-width: 1201px) {
  .header_nav .header_items li.is-action > a::after {
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: -32px;
    position: absolute;
  }
  .header_nav .header_items li.is-action > a::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
            transform: translate(-50%, -50%) rotate(45deg) scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_items li {
    float: none;
    padding: 3vh 0;
    opacity: 0;
  }
  .header_nav .header_items li:nth-child(1) {
    -webkit-animation: example 0.5s ease 1.2s 1 forwards;
            animation: example 0.5s ease 1.2s 1 forwards;
  }
  .header_nav .header_items li:nth-child(2) {
    -webkit-animation: example 0.5s ease 1.3s 1 forwards;
            animation: example 0.5s ease 1.3s 1 forwards;
  }
  .header_nav .header_items li:nth-child(3) {
    -webkit-animation: example 0.5s ease 1.4s 1 forwards;
            animation: example 0.5s ease 1.4s 1 forwards;
  }
  .header_nav .header_items li:nth-child(4) {
    -webkit-animation: example 0.5s ease 1.5s 1 forwards;
            animation: example 0.5s ease 1.5s 1 forwards;
  }
  .header_nav .header_items li:nth-child(5) {
    -webkit-animation: example 0.5s ease 1.6s 1 forwards;
            animation: example 0.5s ease 1.6s 1 forwards;
  }
  .header_nav .header_items li:nth-child(6) {
    -webkit-animation: example 0.5s ease 1.7s 1 forwards;
            animation: example 0.5s ease 1.7s 1 forwards;
  }
  .header_nav .header_items li:nth-child(7) {
    -webkit-animation: example 0.5s ease 1.8s 1 forwards;
            animation: example 0.5s ease 1.8s 1 forwards;
  }
  @-webkit-keyframes example {
    100% {
      opacity: 1;
    }
  }
  @keyframes example {
    100% {
      opacity: 1;
    }
  }
}
@media all and (-ms-high-contrast: none) {
  .header_nav .header_items li {
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_items li > a {
    color: #fff;
    display: inline-block;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_items li > a::before {
    height: 65px;
  }
}
@media screen and (min-width: 1201px) {
  .header_nav .header_items li > a:hover::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
            transform: translate(-50%, -50%) rotate(45deg) scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_btn_box {
    width: 100%;
    margin-top: 8vw;
    float: none;
    margin-left: 0;
  }
  .header_nav .header_btn_box .header_btn_red {
    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;
    width: 50%;
    height: 2vw;
    font-size: 2rem;
    float: none;
    margin: 0 auto;
  }
  .header_nav .header_btn_box .header_btn_red_no-link {
    padding: 1.5rem 4rem;
    float: none;
  }
}
@media screen and (min-width: 1201px) {
  .header_nav .header_btn_red:hover:before {
    top: 0;
    left: 0;
  }
  .header_nav .header_btn_red:hover::after {
    bottom: 0;
    right: 0;
  }
  .header_nav .header_btn_red_no-link:hover:before {
    top: 0;
    left: 0;
  }
  .header_nav .header_btn_red_no-link:hover::after {
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_btn_red a {
    width: 100%;
  }
  .header_nav .header_btn_red_no-link a {
    width: 100%;
  }
}
.header_menu {
  display: none;
  width: 8rem;
  height: 8rem;
  background: #000000;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
  top: 0;
  right: 0;
}
.header_menu p {
  background: #ffffff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: background ease 0.2s, top ease 0.2s 0.2s, -webkit-transform ease 0.2s;
  -webkit-transition: background ease 0.2s, top ease 0.2s 0.2s, -webkit-transform ease 0.2s;
  transition: background ease 0.2s, top ease 0.2s 0.2s, transform ease 0.2s;
  transition: background ease 0.2s, top ease 0.2s 0.2s, transform ease 0.2s, -webkit-transform ease 0.2s;
  text-indent: -999999px;
  left: 25%;
  top: 37.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header_menu p::before, .header_menu p::after {
  background: #ffffff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: background ease 0.2s, top ease 0.2s 0.2s, -webkit-transform ease 0.2s;
  -webkit-transition: background ease 0.2s, top ease 0.2s 0.2s, -webkit-transform ease 0.2s;
  transition: background ease 0.2s, top ease 0.2s 0.2s, transform ease 0.2s;
  transition: background ease 0.2s, top ease 0.2s 0.2s, transform ease 0.2s, -webkit-transform ease 0.2s;
  width: 40px;
}
.header_menu p::before {
  top: -6px;
}
.header_menu p::after {
  top: 6px;
}
.header_menu.opened {
  background: #e50012;
}
.header_menu.opened p {
  background: transparent;
}
.header_menu.opened p::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header_menu.opened p::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header_menu.opened p::before, .header_menu.opened p::after {
  background: #fff;
  top: 0;
  transition: top ease 0.2s, -webkit-transform ease 0.2s 0.2s;
  -webkit-transition: top ease 0.2s, -webkit-transform ease 0.2s 0.2s;
  transition: top ease 0.2s, transform ease 0.2s 0.2s;
  transition: top ease 0.2s, transform ease 0.2s 0.2s, -webkit-transform ease 0.2s 0.2s;
}
.header_menu::after {
  content: "MENU";
  position: relative;
  top: 64%;
  font-size: 1.4rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 700;
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .header_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 6rem;
    height: 6rem;
  }
  .header_menu p::before, .header_menu p::after {
    width: 30px;
  }
  .header_menu p::before {
    top: -2px;
  }
  .header_menu p::after {
    top: 6px;
  }
}
.cur {
  position: relative;
}
.cur::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #e50012;
  -webkit-transform: initial !important;
          transform: initial !important;
  -webkit-transform-origin: initial !important;
          transform-origin: initial !important;
  -webkit-transition: -webkit-transform initial !important;
  transition: -webkit-transform initial !important;
  transition: transform initial !important;
  transition: transform initial, -webkit-transform initial !important;
}

.fixed {
  position: fixed;
}

@media all and (-ms-high-contrast: none) {
  .cur {
    border-bottom: 2px solid #e50012;
    padding-bottom: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .header_logo .ja_logo img {
    width: auto;
    height: 2.5rem;
  }
  .header_nav .header_nav_box .header_items li {
    padding: 2vh 0;
  }
  .header_nav .header_nav_box .header_items li > a::after {
    display: none;
  }
  .header_nav .header_nav_box .header_entryArea {
    width: 90%;
    margin: 7.5vw auto 0;
  }
  .header_nav .header_nav_box .header_entryArea__list {
    margin: 7.5vw 0 0 0 !important;
  }
  .header_nav .header_nav_box .header_entryArea__list .header_btn_red {
    height: 15vw;
  }
}
/*---------------------------------------*/
/*about*/
/*---------------------------------------*/
/*---------------------------------------*/
/*font*/
/*---------------------------------------*/
.L_font {
  font-size: 9.6rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  letter-spacing: 0.048em;
  color: #000000;
  position: relative;
  line-height: 0.8;
}
.L_font::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.7rem;
  display: inline-block;
  width: 16rem;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}

.ttl_03 {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-top: 5rem;
}

.ttl_txt {
  line-height: 2;
}

.M_font {
  font-size: 4rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  letter-spacing: 0.048em;
  color: #000000;
  position: relative;
  margin-top: 2.9rem;
}
.M_font::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  display: inline-block;
  width: 8rem;
  height: 4px;
  background-color: #e50012;
}

.ttl_05 {
  font-weight: 600;
  letter-spacing: 0.24em;
  padding-top: 3.5rem;
}
.ttl_05.ww_img_area__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2em;
  line-height: 1.6;
  font-size: 2.4rem;
}
.ttl_05.ww_img_area__title br.sp {
  display: none;
}
.ttl_05.ww_img_area__title::before {
  content: "■";
  display: inline-block;
  color: #e50012;
}

.ttl_txt {
  width: 86.6666%;
  margin-top: 3.5rem;
  font-family: source-han-sans-japanese, sans-serif;
}

.img_area .about_pic {
  position: relative;
}
.img_area .about_pic::before {
  content: url(../images/common/arrow_black_right.svg);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  padding: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
.img_area .about_pic:hover::before {
  background-color: #ffffff;
}

@media all and (max-width: 768px) {
  .L_font {
    font-size: 4.8rem;
  }
  .L_font::after {
    bottom: -1.6rem;
    width: 8rem;
  }
  .ttl_03 {
    font-size: 2rem;
    padding-top: 3rem;
  }
  .ttl_txt {
    line-height: 1.6;
  }
  .M_font {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
  .M_font::after {
    width: 4rem;
  }
  .ttl_05 {
    padding-top: 3rem;
  }
  .ttl_05.ww_img_area__title br.sp {
    display: block;
  }
  .ttl_txt {
    width: 100%;
    margin-top: 1.5rem;
  }
}
/*---------------------------------------*/
/*main_about*/
/*---------------------------------------*/
.main_about_wrap {
  max-width: 120rem;
  margin: 0 auto;
}
.main_about_wrap .ct01 {
  margin: 20rem auto 0;
}
.main_about_wrap .ct01 .textBox {
  text-align: center;
}
.main_about_wrap .ct01 .box_area {
  max-width: 120rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 12rem;
  margin-left: auto;
  margin-right: auto;
}
.main_about_wrap .ct01 .box_area .box_ini {
  display: block;
  width: 50%;
}
.main_about_wrap .ct01 .box_area .box_ini .img_area {
  position: relative;
  line-height: 0;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.main_about_wrap .ct01 .box_area .box_ini .img_area::before {
  content: url(../images/common/arrow_black_right.svg);
  position: absolute;
  background-color: #ffffff;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  padding: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
.main_about_wrap .ct01 .box_area .box_ini .img_area:hover::before {
  content: url(../images/common/arrow_white_right.svg);
  background-color: #e50012;
}
.main_about_wrap .ct01 .box_area .box_ini .img_area .about_pic {
  line-height: 0;
  width: 100%;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.main_about_wrap .ct01 .box_area .box_ini .img_area .about_pic:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.main_about_wrap .ct01 .box_area .box_ini .text_area {
  text-align: left;
}

@media all and (max-width: 1334px) {
  .main_about_wrap {
    width: 90%;
  }
}
@media all and (max-width: 768px) {
  .main_about_wrap {
    width: 90%;
  }
  .main_about_wrap .ct01 {
    margin: 10rem auto 0;
  }
  .main_about_wrap .ct01 .box_area {
    display: block;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    margin-top: 6rem;
  }
  .main_about_wrap .ct01 .box_area .box_ini {
    width: 100%;
  }
  .main_about_wrap .ct01 .box_area .box_ini + .box_ini {
    margin-top: 6rem;
  }
  .main_about_wrap .ct01 .box_area .box02 {
    margin-top: 4rem;
  }
}
/*---------------------------------------*/
/*interview*/
/*---------------------------------------*/
/*---------------------------------------*/
/*font*/
/*---------------------------------------*/
.L_font_in {
  font-size: 3vw;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  color: #000000;
  position: relative;
  line-height: 1.71;
}
.L_font_in::after {
  content: "";
  position: absolute;
  left: 2.5vw;
  bottom: -0.5vh;
  display: inline-block;
  width: 5vw;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}

.ttl_01_in {
  font-size: 1vw;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-top: 2rem;
  line-height: 2;
}

.sub_font {
  text-align: left;
}

.sub_font.to {
  font-size: 0.875vw;
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1.4;
}

.sub_font.fr {
  font-size: 1.5vw;
  letter-spacing: 0.08em;
  font-weight: 400;
  padding-top: 1rem;
  line-height: 1.33;
}

.ttl_02_in {
  font-family: source-han-sans-japanese, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ttl_03_in {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
}
.ttl_03_in br.pc {
  display: block;
}
.ttl_03_in br.sp {
  display: none;
}

.txt {
  font-family: source-han-sans-japanese, sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

@media all and (max-width: 768px) {
  .L_font_in {
    font-size: 6vw;
  }
  .L_font_in::after {
    left: 4vw;
    bottom: -0.5vh;
    width: 8vw;
  }
  .ttl_01_in {
    font-size: 3vw;
    padding-top: 1rem;
  }
  .sub_font.to {
    font-size: 2vw;
  }
  .sub_font.fr {
    font-size: 2vw;
  }
  .ttl_02_in {
    font-size: 2rem;
  }
  .ttl_03_in {
    font-size: 2.4rem;
  }
  .ttl_03_in br.pc {
    display: none;
  }
  .ttl_03_in br.sp {
    display: block;
  }
  .txt {
    font-size: 1.6rem;
  }
}
/*---------------------------------------*/
/*main_interview*/
/*---------------------------------------*/
.main_interview_wrap br.pc-only {
  display: block;
}
.main_interview_wrap br.sp-only {
  display: none;
}
.main_interview_wrap .ct01 {
  width: 75%;
  height: 0;
  margin-left: 25%;
  margin-top: 11rem;
  padding-top: 37.5%;
  background: url(../images/about/interview/images_interview_01.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.main_interview_wrap .ct01 .main_txt_area .textBox {
  position: absolute;
  top: 39%;
  left: -16.8%;
  z-index: 1;
}
.main_interview_wrap .ct01 .main_txt_area .sub_txt {
  position: absolute;
  top: 80%;
  left: -16.8%;
  z-index: 1;
}
.main_interview_wrap .ct01 .main_ttl_area {
  position: absolute;
  left: 59.3%;
  top: 5%;
  z-index: 2;
}
.main_interview_wrap .ct01 .main_ttl_area .main_txt {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 2vw;
  line-height: 1.41;
  text-align: left;
}
.main_interview_wrap .ct01 .main_ttl_area .main_txt > span {
  display: inline-block;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.main_interview_wrap .ct01 .main_ttl_area .main_txt .h1_font.up {
  background: #ffffff;
  padding: 0.943vw 0.5vw 1.25vw;
  height: 29vw;
}
.main_interview_wrap .ct01 .main_ttl_area .main_txt .h1_font.mid {
  background: #ffffff;
  padding: 0.943vw 0.5vw 1.25vw;
  height: 29vw;
}
.main_interview_wrap .ct01 .main_ttl_area .main_txt .h1_font.down {
  background: #ffffff;
  padding: 0.943vw 0.5vw 1.25vw;
  height: 52.5vw;
  z-index: 2;
}
.main_interview_wrap .se_all {
  max-width: 120rem;
  margin: 6rem auto 0;
}
.main_interview_wrap .se_all .se_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main_interview_wrap .se_all .se_area .se_group01 {
  display: block;
  text-align: center;
  width: 9.66%;
  margin: 0 auto;
}
.main_interview_wrap .se_all .se_area .se_group01 .se_en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.4rem;
  font-family: baskerville-display-pt, serif;
  color: #e50012;
}
.main_interview_wrap .se_all .se_area .se_group01 .se_red {
  font-size: 9.6rem;
  font-family: baskerville-display-pt, serif;
  font-style: italic;
  color: #e50012;
  padding-top: 2rem;
  line-height: 1.25;
  padding-right: 5%;
}
.main_interview_wrap .se_all .se_area .se_group02 {
  border-top: 1px solid #000000;
  margin-top: 6rem;
}
.main_interview_wrap .se_all .se_area .se_group02 .item_area {
  padding-left: 9.4%;
}
.main_interview_wrap .se_all .se_area .se_group02 .item_area .ttl_02_in {
  padding: 4rem 0;
  border-bottom: 1px solid #000000;
}
.main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in {
  margin-top: 7.2rem;
}
.main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_item .item01 {
  margin-top: 4.6rem;
}
.main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_item .item02, .main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_item .item03, .main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_item .item04 {
  margin-top: 3.2rem;
}
.main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_img {
  margin: 12rem auto 0;
  width: 60%;
}
.main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_img .in_pic {
  width: 100%;
}
.main_interview_wrap .se_all .ct03, .main_interview_wrap .se_all .ct04, .main_interview_wrap .se_all .ct05 {
  margin-top: 6rem;
}
.main_interview_wrap .se_all .profile {
  width: 86.666%;
  margin: 10rem auto 0;
}
.main_interview_wrap .se_all .profile .pro {
  font-size: 9.6rem;
  font-weight: 400;
  font-family: baskerville-display-pt, serif;
  color: #e9ecec;
}
.main_interview_wrap .se_all .profile .profile_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4rem;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group01 {
  width: 26.92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group01 .profile_vt {
  width: 14.29%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 2;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group01 .profile_img {
  width: 85.71%;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group01 .profile_img .pro_pic {
  width: 100%;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group02 {
  width: 69.23%;
  margin: 0 auto;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_txt {
  font-size: 1.4rem;
  font-weight: 400;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item01 {
  letter-spacing: 0.08em;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item01 .profile_pre {
  font-size: 2.4rem;
  margin-top: 1rem;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item02 {
  margin-top: 2rem;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item02 .i02 {
  letter-spacing: 0.04em;
  padding-top: 1.5rem;
  font-family: source-han-sans-japanese, sans-serif;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item03 {
  margin-top: 3rem;
}
.main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item03 .i03 {
  line-height: 2;
  letter-spacing: 0.03em;
  font-family: source-han-sans-japanese, sans-serif;
}
.main_interview_wrap .about_link {
  width: 100%;
  margin-top: 7.5rem;
}
.main_interview_wrap .about_link .air_plane_area {
  padding-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_interview_wrap .about_link .air_plane_area .air_line {
  width: 82.5%;
}
.main_interview_wrap .about_link .air_plane_area .air_line .air_line_item {
  width: 100%;
  height: 1px;
}
.main_interview_wrap .about_link .air_plane_area .air_group {
  width: 12.5%;
}
.main_interview_wrap .about_link .air_plane_area .air_group .air_item {
  width: 100%;
}
.main_interview_wrap .about_link .animate2 {
  -webkit-animation: animation2 6s ease-out;
          animation: animation2 6s ease-out;
}
@-webkit-keyframes animation2 {
  0% {
    position: relative;
    left: -120%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
@keyframes animation2 {
  0% {
    position: relative;
    left: -120%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.main_interview_wrap .about_link .animate3 {
  -webkit-animation: animation3 6s ease-out;
          animation: animation3 6s ease-out;
}
@-webkit-keyframes animation3 {
  0% {
    position: relative;
    left: -800%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
@keyframes animation3 {
  0% {
    position: relative;
    left: -800%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.main_interview_wrap .about_link .about_link_area {
  max-width: 120rem;
  margin: 8rem auto 0;
}
.main_interview_wrap .about_link .about_link_area .about_link_item {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
.main_interview_wrap .about_link .about_link_area .about_link_item .textBox .ttl_en {
  font-size: 4.8rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  position: relative;
}
.main_interview_wrap .about_link .about_link_area .about_link_item .textBox .ttl_en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  display: inline-block;
  width: 8rem;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}
.main_interview_wrap .about_link .about_link_area .about_link_item .textBox .ttl_ja {
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  margin-top: 3rem;
}
.main_interview_wrap .about_link .about_link_area .about_link_item .btn_in {
  margin-top: 6rem;
}
.main_interview_wrap .about_link .about_link_area .about_link_item .btn_in .link {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 2rem 8rem 2rem 10%;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.main_interview_wrap .about_link .about_link_area .about_link_item .btn_in .link::before {
  content: "";
  position: absolute;
  top: 34%;
  width: 33.333%;
  height: 33.333%;
  right: 0%;
  background: url(../images/common/arrow_black_right.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.main_interview_wrap .about_link .about_link_area .about_link_item .btn_in .link:hover {
  background-color: #e50012;
  color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.main_interview_wrap .about_link .about_link_area .about_link_item .btn_in .link:hover::before {
  background: url(../images/common/arrow_white_right.svg) no-repeat;
  right: -4%;
}

@media all and (max-width: 1334px) {
  .se_all {
    width: 90%;
  }
}
@media all and (max-width: 1200px) {
  .main_interview_wrap .ct01 {
    margin-top: 6rem;
  }
}
@media all and (max-width: 768px) {
  .sp {
    display: none;
  }
  br.pc-only {
    display: none;
  }
  br.sp-only {
    display: block;
  }
  .main_interview_wrap .ct01 {
    width: 80%;
    margin-left: 20%;
    margin-top: 6rem;
    padding-top: 75%;
  }
  .main_interview_wrap .ct01 .main_txt_area .textBox {
    top: 20%;
  }
  .main_interview_wrap .ct01 .main_txt_area .sub_txt {
    top: 45%;
  }
  .main_interview_wrap .ct01 .main_ttl_area {
    left: -18%;
    bottom: -5%;
    top: initial;
  }
  .main_interview_wrap .ct01 .main_ttl_area .main_txt {
    font-size: 4.16vw;
    -webkit-writing-mode: rl-tb;
        -ms-writing-mode: rl-tb;
            writing-mode: rl-tb;
    text-orientation: initial;
    line-height: 1.6;
  }
  .main_interview_wrap .ct01 .main_ttl_area .main_txt .h1_font.up {
    padding: 0.5vw 1vw;
    height: auto;
  }
  .main_interview_wrap .ct01 .main_ttl_area .main_txt .h1_font.mid {
    padding: 0.5vw 1vw;
    height: auto;
  }
  .main_interview_wrap .ct01 .main_ttl_area .main_txt .h1_font.down {
    padding: 0.5vw 1vw;
    height: auto;
  }
  .main_interview_wrap .se_all {
    margin: 3rem auto 0;
  }
  .main_interview_wrap .se_all .se_area {
    display: block;
  }
  .main_interview_wrap .se_all .se_area .se_group01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .main_interview_wrap .se_all .se_area .se_group01 .se_en {
    font-size: 2rem;
    -webkit-writing-mode: rl-tb;
        -ms-writing-mode: rl-tb;
            writing-mode: rl-tb;
  }
  .main_interview_wrap .se_all .se_area .se_group01 .se_red {
    font-size: 4.8rem;
    padding-top: 0;
  }
  .main_interview_wrap .se_all .se_area .se_group02 {
    margin-top: 0;
  }
  .main_interview_wrap .se_all .se_area .se_group02 .item_area {
    padding-left: 0;
  }
  .main_interview_wrap .se_all .se_area .se_group02 .item_area .ttl_02_in {
    padding: 2rem 0;
  }
  .main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in {
    margin-top: 3.6rem;
  }
  .main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_item .item01 {
    margin-top: 2.5rem;
  }
  .main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_item .item02, .main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_item .item03, .main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_item .item04 {
    margin-top: 1.6rem;
  }
  .main_interview_wrap .se_all .se_area .se_group02 .item_area .se_area_in .in_img {
    margin: 4rem auto 0;
    width: 80%;
  }
  .main_interview_wrap .se_all .ct03, .main_interview_wrap .se_all .ct04, .main_interview_wrap .se_all .ct05 {
    margin-top: 3rem;
  }
  .main_interview_wrap .se_all .profile {
    width: 90%;
    margin: 5rem auto 0;
  }
  .main_interview_wrap .se_all .profile .pro {
    font-size: 4.8rem;
  }
  .main_interview_wrap .se_all .profile .profile_group {
    display: block;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    margin-top: 2rem;
  }
  .main_interview_wrap .se_all .profile .profile_group .profile_group01 {
    width: 100%;
  }
  .main_interview_wrap .se_all .profile .profile_group .profile_group01 .profile_vt {
    width: 10%;
    font-size: 2rem;
  }
  .main_interview_wrap .se_all .profile .profile_group .profile_group02 {
    width: 100%;
    margin-top: 2.5rem;
  }
  .main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item01 .profile_pre {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
  .main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item02 {
    margin-top: 1rem;
  }
  .main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item02 .i02 {
    padding-top: 0.75rem;
  }
  .main_interview_wrap .se_all .profile .profile_group .profile_group02 .profile_item03 {
    margin-top: 1.5rem;
  }
  .main_interview_wrap .about_link {
    margin-top: 3.75rem;
  }
  .main_interview_wrap .about_link .air_plane_area .air_group {
    width: 25%;
  }
  @-webkit-keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  @keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  .main_interview_wrap .about_link .about_link_area {
    width: 90%;
    margin: 4rem auto 0;
  }
  .main_interview_wrap .about_link .about_link_area .about_link_item {
    width: 100%;
  }
  .main_interview_wrap .about_link .about_link_area .about_link_item .textBox .ttl_en {
    font-size: 3.2rem;
  }
  .main_interview_wrap .about_link .about_link_area .about_link_item .textBox .ttl_en::after {
    width: 4rem;
    bottom: -0.7rem;
  }
  .main_interview_wrap .about_link .about_link_area .about_link_item .textBox .ttl_ja {
    margin-top: 1.5rem;
  }
  .main_interview_wrap .about_link .about_link_area .about_link_item .btn_in {
    width: 65%;
    margin: 3rem auto 0;
  }
}
/*---------------------------------------*/
/*strength*/
/*---------------------------------------*/
/*---------------------------------------*/
/*font*/
/*---------------------------------------*/
.L_font_ww {
  font-size: 3vw;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  color: #000000;
  position: relative;
  line-height: 1.71;
}
.L_font_ww::after {
  content: "";
  position: absolute;
  left: 2.5vw;
  bottom: -0.5vh;
  display: inline-block;
  width: 5vw;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}

.ttl_01_ww {
  font-size: 1vw;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-top: 2rem;
  line-height: 2;
  color: #000000;
}

.main_txt_ww {
  font-size: 2.5vw;
  font-weight: 400;
  color: #000000;
  line-height: 1.41;
  letter-spacing: 0.08em;
}

.se_red_ww {
  font-size: 6.4rem;
  font-weight: 400;
  font-style: italic;
  color: #e50012;
}

.ttl_02_ww {
  font-size: 3.2rem;
  font-weight: 600;
}

.txt_ww {
  font-size: 1.6rem;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.04em;
}

.ww_img_txt {
  font-size: 1.4rem;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}

@media all and (max-width: 768px) {
  .L_font_ww {
    font-size: 6vw;
  }
  .L_font_ww::after {
    left: 4vw;
    width: 8vw;
  }
  .ttl_01_ww {
    font-size: 3vw;
    padding-top: 1rem;
  }
  .main_txt_ww {
    font-size: 4.16vw;
    line-height: 1.6;
  }
  .se_red_ww {
    font-size: 4.8rem;
  }
  .ttl_02_ww {
    font-size: 2.4rem;
  }
  .ww_img_txt {
    line-height: 1.6;
  }
}
/*---------------------------------------*/
/*main_wwa_wrap*/
/*---------------------------------------*/
.main_wwa_wrap br.pc-only {
  display: block;
}
.main_wwa_wrap br.sp-only {
  display: none;
}
.main_wwa_wrap .ct01_wwa {
  width: 75%;
  height: 0;
  margin-left: 25%;
  margin-top: 11rem;
  padding-top: 37.5%;
  background: url(../images/about/strength/images_strength01.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.main_wwa_wrap .ct01_wwa .main_txt_area_ww .textBox_ww {
  position: absolute;
  top: 39%;
  left: -16.8%;
  z-index: 1;
}
.main_wwa_wrap .ct01_wwa .main_ttl_area_ww {
  position: absolute;
  left: -18%;
  bottom: 0%;
  z-index: 1;
}
.main_wwa_wrap .ct01_wwa .main_ttl_area_ww .main_txt_ww {
  line-height: 1.7;
}
.main_wwa_wrap .ct01_wwa .main_ttl_area_ww .main_txt_ww .h1_font_ww.up {
  background: #ffffff;
  padding: 0.75vw 1vw 0.75vw 0.95vw;
}
.main_wwa_wrap .ct01_wwa .main_ttl_area_ww .main_txt_ww .h1_font_ww.down {
  background: #ffffff;
  padding: 0.75vw 2.5vw 0.75vw 0.95vw;
}
.main_wwa_wrap .se_all_ww {
  width: 75%;
  margin-left: 12.5%;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group01_ww {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group01_ww .se_red_ww {
  width: 16.66%;
  text-align: left;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group01_ww .ttl_02_ww {
  width: 83.34%;
  margin: 0 auto;
  line-height: 1.25;
  position: relative;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group01_ww .ttl_02_ww::before {
  content: "";
  background: url(../images/common/square_bl.jpg);
  position: absolute;
  width: 5vw;
  height: 1px;
  top: 50%;
  left: -6vw;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww {
  padding-left: 16.66%;
  width: 100%;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ttl_03_in {
  margin-top: 3rem;
  line-height: 1.6;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .txt_ww {
  line-height: 2;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ww_img_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  letter-spacing: 0.1rem;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ww_img_txt .note {
  display: inline-block;
  margin-right: 0.5rem;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ww_img_txt > a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #e50012;
  text-decoration: underline;
  white-space: nowrap;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ww_img_txt .note__text {
  display: inline-block;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ww_img_txt + .ww_img_txt {
  margin-top: 1rem;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item01_ww {
  margin-top: 4.5rem;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item02_ww, .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item03_ww, .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item04_ww, .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item05_ww {
  margin-top: 3.5rem;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_img_area {
  margin-top: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_img_area .ww_img_item {
  width: 30%;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_img_area .ww_img_item .ww_pic {
  width: 100%;
}
.main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_img_area .ww_img_item .ww_img_txt {
  margin-top: 2rem;
  text-align: center;
}
.main_wwa_wrap .se_all_ww .ct02_ww, .main_wwa_wrap .se_all_ww .ct03_ww, .main_wwa_wrap .se_all_ww .ct04_ww {
  margin-top: 9.5rem;
}
.main_wwa_wrap .about_link {
  width: 100%;
  margin-top: 7.5rem;
}
.main_wwa_wrap .about_link .air_plane_area {
  padding-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_wwa_wrap .about_link .air_plane_area .air_line {
  width: 82.5%;
}
.main_wwa_wrap .about_link .air_plane_area .air_line .air_line_item {
  width: 100%;
  height: 1px;
}
.main_wwa_wrap .about_link .air_plane_area .air_group {
  width: 12.5%;
}
.main_wwa_wrap .about_link .air_plane_area .air_group .air_item {
  width: 100%;
}
.main_wwa_wrap .about_link .animate2 {
  -webkit-animation: animation2 6s ease-out;
          animation: animation2 6s ease-out;
}
@keyframes animation2 {
  0% {
    position: relative;
    left: -120%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.main_wwa_wrap .about_link .animate3 {
  -webkit-animation: animation3 6s ease-out;
          animation: animation3 6s ease-out;
}
@keyframes animation3 {
  0% {
    position: relative;
    left: -800%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.main_wwa_wrap .about_link .about_link_area {
  max-width: 120rem;
  margin: 8rem auto 0;
}
.main_wwa_wrap .about_link .about_link_area .about_link_item {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
.main_wwa_wrap .about_link .about_link_area .about_link_item .textBox .ttl_en {
  font-size: 4.8rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  position: relative;
}
.main_wwa_wrap .about_link .about_link_area .about_link_item .textBox .ttl_en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  display: inline-block;
  width: 8rem;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}
.main_wwa_wrap .about_link .about_link_area .about_link_item .textBox .ttl_ja {
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  margin-top: 3rem;
}
.main_wwa_wrap .about_link .about_link_area .about_link_item .btn_in {
  margin-top: 6rem;
}
.main_wwa_wrap .about_link .about_link_area .about_link_item .btn_in .link {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 2rem 8rem 2rem 10%;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.main_wwa_wrap .about_link .about_link_area .about_link_item .btn_in .link::before {
  content: "";
  position: absolute;
  top: 34%;
  width: 33.333%;
  height: 33.333%;
  right: 0%;
  background: url(../images/common/arrow_black_right.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.main_wwa_wrap .about_link .about_link_area .about_link_item .btn_in .link:hover {
  background-color: #e50012;
  color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.main_wwa_wrap .about_link .about_link_area .about_link_item .btn_in .link:hover::before {
  background: url(../images/common/arrow_white_right.svg) no-repeat;
  right: -4%;
}

@media all and (max-width: 1200px) {
  .main_wwa_wrap .ct01_wwa {
    margin-top: 6rem;
  }
}
@media all and (max-width: 768px) {
  .main_wwa_wrap br.pc-only {
    display: none;
  }
  .main_wwa_wrap br.sp-only {
    display: block;
  }
  .main_wwa_wrap .ct01_wwa {
    width: 80%;
    margin-left: 20%;
    margin-top: 6rem;
    padding-top: 75%;
    background: url(../images/about/strength/images_strength01.jpg) no-repeat center;
    background-size: cover;
  }
  .main_wwa_wrap .ct01_wwa .main_txt_area_ww .textBox_ww {
    top: 32%;
  }
  .main_wwa_wrap .ct01_wwa .main_ttl_area_ww {
    left: -18%;
    bottom: 0%;
  }
  .main_wwa_wrap .ct01_wwa .main_ttl_area_ww .main_txt_ww {
    line-height: 1.7;
  }
  .main_wwa_wrap .ct01_wwa .main_ttl_area_ww .main_txt_ww .h1_font_ww.up {
    padding: 0.7vw 1vw;
  }
  .main_wwa_wrap .ct01_wwa .main_ttl_area_ww .main_txt_ww .h1_font_ww.down {
    padding: 0.7vw 1vw;
  }
  .main_wwa_wrap .se_all_ww {
    width: 90%;
    margin-left: initial;
    margin: 0 auto;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group01_ww {
    display: block;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group01_ww .se_red_ww {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group01_ww .ttl_02_ww {
    width: 100%;
    margin-top: 6rem;
    text-align: center;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group01_ww .ttl_02_ww::before {
    width: 1px;
    height: 4rem;
    left: 50%;
    top: -4.75rem;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww {
    padding-left: 0;
    width: 100%;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .txt_ww {
    line-height: 2;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ww_img_txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3rem;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ww_img_txt + .ww_img_txt {
    margin-top: 3rem;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ww_img_txt > a {
    margin: 0;
    margin-top: 0.5rem;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .ww_img_txt .note__text {
    margin-top: 1rem;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item01_ww {
    margin-top: 4rem;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item02_ww, .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item03_ww, .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item04_ww, .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_item .item05_ww {
    margin-top: 2.5rem;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_img_area {
    margin-top: initial;
    display: block;
    width: 80%;
    margin: 4.5rem auto 0;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_img_area .ww_img_item {
    width: 100%;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_img_area .ww_img_item .ww_img_txt {
    margin-top: 2rem;
  }
  .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_img_area .wi02, .main_wwa_wrap .se_all_ww .se_area_ww .se_group02_ww .ww_img_area .wi03 {
    margin-top: 4rem;
  }
  .main_wwa_wrap .se_all_ww .ct02_ww, .main_wwa_wrap .se_all_ww .ct03_ww, .main_wwa_wrap .se_all_ww .ct04_ww {
    margin-top: 4.75rem;
  }
  .main_wwa_wrap .about_link {
    margin-top: 3.75rem;
  }
  .main_wwa_wrap .about_link .air_plane_area .air_group {
    width: 25%;
  }
  @-webkit-keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  @keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  .main_wwa_wrap .about_link .about_link_area {
    width: 90%;
    margin: 4rem auto 0;
  }
  .main_wwa_wrap .about_link .about_link_area .about_link_item {
    width: 100%;
  }
  .main_wwa_wrap .about_link .about_link_area .about_link_item .textBox .ttl_en {
    font-size: 3.2rem;
  }
  .main_wwa_wrap .about_link .about_link_area .about_link_item .textBox .ttl_en::after {
    width: 4rem;
    bottom: -0.7rem;
  }
  .main_wwa_wrap .about_link .about_link_area .about_link_item .textBox .ttl_ja {
    margin-top: 1.5rem;
  }
  .main_wwa_wrap .about_link .about_link_area .about_link_item .btn_in {
    width: 65%;
    margin: 3rem auto 0;
  }
}
/*---------------------------------------*/
/*ie*/
/*---------------------------------------*/
@media all and (-ms-high-contrast: none) {
  .main_interview_wrap .se_all .se_area .se_group01 {
    width: 45% !important;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 1334px) {
  .main_about_wrap .ct01 {
    width: 90%;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 768px) {
  .main_interview_wrap .ct01 .main_ttl_area {
    top: 73%;
    text-align: left;
  }
  .main_interview_wrap .se_all .se_area .se_group01 {
    width: 100% !important;
  }
}
.footer_wrap {
  margin-top: 12rem;
  padding-top: 1rem;
  background-color: #f5f5f5;
}
.footer_wrap .footer_entry {
  background: url(../images/common/footer_image.jpg) no-repeat center;
  background-size: cover;
}
.footer_wrap .footer_entry .footer_entry_wrap {
  max-width: 120rem;
  margin: 0 auto;
  text-align: center;
  padding: 8rem 0 12rem;
}
.footer_wrap .footer_entry .footer_entry_wrap .footer_logo {
  width: 20rem;
  margin: 0 auto;
}
.footer_wrap .footer_entry .footer_entry_wrap .footer_ttl {
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-size: 4.8rem;
  letter-spacing: 0.048em;
  color: #ffffff;
  padding-top: 4rem;
}
.footer_wrap .footer_entry .footer_entry_wrap .footer_txt {
  line-height: 2;
  text-align: center;
  color: #ffffff;
  margin-top: 6rem;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side {
  width: 66.66%;
  margin: 6rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link {
  color: #ffffff;
  width: 40%;
  font-weight: 600;
  padding: 2.4rem 0;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link.rd {
  background-color: #e50012;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link.rd:hover {
  color: #ffffff;
  background-color: #000000;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link_no-link.rd_no-link {
  background-color: #e50012;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
  opacity: 0.6;
  pointer-events: none;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01 {
  width: 40% !important;
  pointer-events: initial !important;
  background-color: #ffffff !important;
  color: #e50012 !important;
  opacity: 1 !important;
  -webkit-transition: all 0.4s !important;
  transition: all 0.4s !important;
  position: relative !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01::before, .footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01::after {
  position: absolute !important;
  z-index: 2 !important;
  content: "" !important;
  width: 0 !important;
  height: 0 !important;
  border: 1px solid transparent !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01::before {
  top: -1px !important;
  left: -1px !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01::after {
  bottom: -1px !important;
  right: -1px !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover {
  color: #ffffff !important;
  background-color: #e50012 !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover::before, .footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover::after {
  width: 100% !important;
  height: 100% !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover::before {
  border-bottom-color: #ffffff !important;
  border-left-color: #ffffff !important;
  -webkit-transition: height 0.3s, width 0.3s 0.3s !important;
  transition: height 0.3s, width 0.3s 0.3s !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover::after {
  border-top-color: #ffffff !important;
  border-right-color: #ffffff !important;
  -webkit-transition: height 0.3s, width 0.3s 0.3s !important;
  transition: height 0.3s, width 0.3s 0.3s !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl02 {
  width: 40% !important;
  border: 1px solid transparent !important;
}
.footer_wrap .video_area {
  width: 100%;
  padding: 2.5vw 0;
  background-color: #f5f5f5;
}
.footer_wrap .video_area .footer_news_head {
  margin-bottom: 2.5vw;
  color: #e50012;
  text-align: center;
  font-size: 1.5vw;
  letter-spacing: 8px;
}
.footer_wrap .video_area .footer_news_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 65%;
  margin: 0 auto;
}
.footer_wrap .video_area .footer_news_wrap .footer_news_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link {
  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;
  width: 30vw;
  padding: 1.5625vw 0;
  background-color: #ffffff;
  color: #e50012;
  border: 2px solid #e50012;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link:hover {
  color: white;
  background-color: #e50012;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link > p {
  font-size: 1.25vw;
  font-family: source-han-sans-japanese, sans-serif;
}
.footer_wrap .footer_news {
  width: 100%;
  padding: 2.5vw 0;
  background-color: #f5f5f5;
}
.footer_wrap .footer_news .footer_news_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 46vw;
  margin: 0 auto;
}
.footer_wrap .footer_news .footer_news_wrap .news-link, .footer_wrap .footer_news .footer_news_wrap .video-link {
  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;
  width: 100%;
  padding: 1.5625vw 0;
  background-color: #ffffff;
  color: #e50012;
  border: 2px solid #e50012;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.footer_wrap .footer_news .footer_news_wrap .news-link:before, .footer_wrap .footer_news .footer_news_wrap .video-link:before {
  content: "";
  display: inline-block;
  width: 6.25vw;
  height: 6.3125vw;
  background: url(../images/common/banner_anniversary_01.png) no-repeat;
  background-size: 100%;
  background-position: center;
}
.footer_wrap .footer_news .footer_news_wrap .news-link:hover, .footer_wrap .footer_news .footer_news_wrap .video-link:hover {
  color: white;
  background-color: #e50012;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.footer_wrap .footer_news .footer_news_wrap .news-link:hover:before, .footer_wrap .footer_news .footer_news_wrap .video-link:hover:before {
  background: url(../images/common/banner_anniversary_02.png) no-repeat;
  background-size: 100%;
  background-position: center;
}
.footer_wrap .footer_news .footer_news_wrap .news-link > p, .footer_wrap .footer_news .footer_news_wrap .video-link > p {
  margin-left: 2.5vw;
  font-size: 1.5vw;
  font-family: source-han-sans-japanese, sans-serif;
}
.footer_wrap .footer_news .footer_news_wrap .video-link:before {
  display: none;
}
.footer_wrap .detail_wrap {
  margin: 12rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
.footer_wrap .detail_wrap .detail_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 47.5%;
}
.footer_wrap .detail_wrap .detail_group .detail_box01 {
  width: 37.5%;
}
.footer_wrap .detail_wrap .detail_group .detail_box02 {
  width: 57.5%;
}
.footer_wrap .detail_wrap .detail_group .detail_box03 {
  width: 57.14%;
}
.footer_wrap .detail_wrap .detail_group .detail_box04 {
  width: 32.5%;
}
.footer_wrap .detail_wrap .detail_group .ttl_04 {
  color: #e50012;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2;
  pointer-events: none;
}
.footer_wrap .detail_wrap .detail_group .detail_item02 {
  margin-top: 5rem;
}
.footer_wrap .detail_wrap .detail_group .detail {
  margin-top: 1.8rem;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list + .d_list {
  margin-top: 0.5em;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list::before {
  content: "";
  width: 0;
  height: 0;
  padding: 3px;
  display: inline-block;
  background-color: #e50012;
  border-radius: 50%;
  position: relative;
  top: 13px;
  margin-right: 5px;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list .num {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  line-height: 2.28;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list .f_link {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  line-height: 2.28;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list .f_link:hover {
  color: #e50012;
}
.footer_wrap .detail_wrap .d_02 {
  width: 50%;
}
.footer_wrap .footer_bg {
  background-color: #ffffff;
}
.footer_wrap .footer_bg .footer_pall {
  margin: 0 4rem;
  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;
  padding: 4rem 0;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../images/common/footer_icon.png) no-repeat;
  background-size: contain;
  display: inline-block;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area + .footer_area {
  margin-left: 2em;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area .footer_link {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2rem;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group02 {
  width: 23.333%;
  text-align: right;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group02 .copy {
  font-size: 400;
  font-family: baskerville-display-pt, serif;
  font-size: 1.2rem;
}
.footer_wrap .no-link_ft {
  opacity: 0.4;
  pointer-events: none;
}
.footer_wrap .no-link_ft:hover {
  color: initial;
}

@media all and (max-width: 1334px) {
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side {
    width: 90%;
  }
}
@media all and (max-width: 1200px) {
  .sp {
    display: none;
  }
  .footer_wrap {
    margin-top: 6rem;
    padding-top: 0;
  }
  .footer_wrap .footer_entry .footer_entry_wrap {
    width: 90%;
    margin: 0 auto;
    padding: 4rem 0 7.5rem;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .footer_ttl {
    font-size: 4rem;
    padding-top: 2rem;
    line-height: 1.2;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .footer_txt {
    margin-top: 3rem;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side {
    display: block;
    width: 65%;
    margin: 5rem auto 0;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link {
    display: block;
    width: 100% !important;
    padding: 2rem 0%;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01 {
    width: 100% !important;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl02 {
    width: 100% !important;
    margin-top: 3.5rem;
  }
  .footer_wrap .video_area {
    padding: 5vw 0;
  }
  .footer_wrap .video_area .footer_news_head {
    margin-bottom: 5vw;
    font-size: 2vw;
    letter-spacing: 8px;
  }
  .footer_wrap .video_area .footer_news_wrap {
    width: 57.5vw;
  }
  .footer_wrap .video_area .footer_news_wrap .footer_news_group {
    display: block;
  }
  .footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link {
    padding: 4vw 0;
    margin: 0 auto;
    width: 100%;
  }
  .footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link > p {
    font-size: 2vw;
  }
  .footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link:nth-child(n+2) {
    margin-top: 5vw;
  }
  .footer_wrap .footer_news .footer_news_wrap {
    width: 57.5vw;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link {
    padding: 2.5vw 0;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link > p {
    font-size: 2vw;
  }
  .footer_wrap .detail_wrap {
    margin: 0 auto;
    width: 100%;
    display: block;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  .footer_wrap .detail_wrap .detail_group {
    display: block;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    width: 100%;
  }
  .footer_wrap .detail_wrap .detail_group .detail_box01 {
    width: 100%;
    padding-right: initial;
  }
  .footer_wrap .detail_wrap .detail_group .detail_box02 {
    width: 100%;
  }
  .footer_wrap .detail_wrap .detail_group .detail_box03 {
    width: 100%;
  }
  .footer_wrap .detail_wrap .detail_group .detail_box04 {
    width: 100%;
  }
  .footer_wrap .detail_wrap .detail_group .ttl_04 {
    color: #e50012;
    font-size: 1.4rem;
    line-height: 2;
    border-top: 1px solid #b2b2b2;
    padding: 1.5rem 5%;
    cursor: pointer;
    pointer-events: all;
  }
  .footer_wrap .detail_wrap .detail_group .ttl_04:hover {
    background: #e50012;
    color: #ffffff;
  }
  .footer_wrap .detail_wrap .detail_group .ttl_04:focus {
    background-color: #e50012;
    color: #ffffff;
  }
  .footer_wrap .detail_wrap .detail_group .ttl_04.menu::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .footer_wrap .detail_wrap .detail_group .detail_item02 {
    margin-top: 0;
  }
  .footer_wrap .detail_wrap .detail_group .detail {
    margin-top: 0;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu {
    display: none;
    padding: 0;
    background: #fff;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu .d_list {
    padding: 1rem 0;
    color: #567867;
    border-top: 1px solid #b2b2b2;
    padding-left: 7.5%;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu .d_list + .d_list {
    margin-top: 0;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu .d_list .num {
    color: #000000;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu .d_list .f_link {
    display: block;
    width: 100%;
  }
  .footer_wrap .footer_bg .footer_pall {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 2rem 0;
    border-top: 1px solid #b2b2b2;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group01 {
    width: 100%;
    padding-bottom: 2rem;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: url(../images/common/footer_icon.png) no-repeat;
    background-size: contain;
    display: inline-block;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area .footer_link {
    font-size: 1.2rem;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area:hover {
    text-decoration: underline;
    opacity: 0.7;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group02 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #b2b2b2;
  }
  .footer_wrap .footer_bg .footer_pall .item01 {
    padding-left: 5%;
  }
  .footer_wrap .footer_bg .footer_pall .item02 {
    padding-right: 5%;
  }
  .f_bgy {
    border-bottom: 1px solid #b2b2b2;
  }
  .f_bgy_none {
    border-top: initial !important;
  }
}
@media all and (max-width: 768px) {
  .footer_wrap .footer_news, .footer_wrap .video_area {
    padding: 10vw;
  }
  .footer_wrap .footer_news .footer_news_head, .footer_wrap .video_area .footer_news_head {
    margin-bottom: 5vw;
    font-size: 4vw;
    letter-spacing: 8px;
  }
  .footer_wrap .footer_news .footer_news_wrap, .footer_wrap .video_area .footer_news_wrap {
    width: 57.5vw;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link, .footer_wrap .footer_news .footer_news_wrap .video-link, .footer_wrap .video_area .footer_news_wrap .news-link, .footer_wrap .video_area .footer_news_wrap .video-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5vw 0;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link:before, .footer_wrap .footer_news .footer_news_wrap .video-link:before, .footer_wrap .video_area .footer_news_wrap .news-link:before, .footer_wrap .video_area .footer_news_wrap .video-link:before {
    width: 15.625vw;
    height: 15.78125vw;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link:hover, .footer_wrap .footer_news .footer_news_wrap .video-link:hover, .footer_wrap .video_area .footer_news_wrap .news-link:hover, .footer_wrap .video_area .footer_news_wrap .video-link:hover {
    color: #e50012;
    background-color: #ffffff;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link:hover:before, .footer_wrap .footer_news .footer_news_wrap .video-link:hover:before, .footer_wrap .video_area .footer_news_wrap .news-link:hover:before, .footer_wrap .video_area .footer_news_wrap .video-link:hover:before {
    background: url(../images/common/banner_anniversary_01.png) no-repeat;
    width: 15.625vw;
    height: 15.78125vw;
    background-size: 100%;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link > p, .footer_wrap .footer_news .footer_news_wrap .video-link > p, .footer_wrap .video_area .footer_news_wrap .news-link > p, .footer_wrap .video_area .footer_news_wrap .video-link > p {
    margin-left: 0;
    margin-top: 2.5vw;
    font-size: 2vw;
    text-align: center;
  }
  .footer_wrap .footer_news .footer_news_wrap .video-link > p, .footer_wrap .video_area .footer_news_wrap .video-link > p {
    margin-top: 0;
  }
}
/*# sourceMappingURL=about.css.map */