@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.2820512821vw;
  }
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  letter-spacing: 0;
  list-style-type: none;
  font-style: normal;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.preload* {
  transition: none !important;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}
/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
body {
  color: #414141;
  font-size: 1rem;
  text-align: left;
}

main {
  display: block;
  padding-top: 8rem;
}

section {
  position: relative;
}

.wrap {
  position: relative;
  width: 100%;
  max-width: 142rem;
  padding: 0 11rem;
  margin: 0 auto;
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.75;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.left {
  float: left;
}

.right {
  float: right;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bold,
strong {
  font-weight: bold;
  font-weight: 700;
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.min {
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
}

.en {
  font-weight: 400;
  font-family: "Marcellus", system-ui;
  letter-spacing: 0.11em;
}

.txt_white {
  color: #ffffff;
}

.txt_black {
  color: #000000;
}

.txt_gray {
  color: #E8E8E8;
}

.txt_gray2 {
  color: #9C9D9D;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
  .fade {
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  .fade:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 10rem;
  }
  .wrap {
    width: 100%;
    padding: 0 5rem 0 10rem;
  }
  p,
  th,
  td,
  dt,
  dd,
  li,
  input,
  button,
  textarea {
    font-size: 2.8rem;
  }
  .sp_block {
    display: block;
  }
}
/* scroll-animation
--------------------------------*/
.fadeup {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}

.fadein {
  opacity: 0;
  transition: opacity 1s;
}

.scroll.is-show.fadeup,
.scroll.is-show .fadeup {
  opacity: 1;
  transform: translate(0, 0);
}

.onload.is-show .fadein,
.scroll.is-show.fadein,
.scroll.is-show .fadein {
  opacity: 1;
}

/* ---------------------------------------
  header
-----------------------------------------*/
#header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
#header .header_wrap {
  position: relative;
  width: 100%;
  height: 10rem;
  background-color: #ffffff;
}
#header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 128rem;
  height: 100%;
  padding: 1rem 2rem 2rem;
  margin: 0 auto;
}
#header .logo {
  width: 23.9rem;
  line-height: 1;
  transform: translateY(-0.5rem);
}
#header .logo a {
  position: relative;
  display: block;
}
#header .header_menu .gnavi > li {
  position: relative;
  color: #000000;
  font-family: "Marcellus", system-ui;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#header .header_menu .gnavi > li > a {
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  #header .header_menu .gnavi > li > a {
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  #header .header_menu .gnavi > li > a:hover {
    opacity: 0.6;
  }
}
#header .header_menu .gnavi .subnavi {
  display: none;
  width: 22rem;
  padding-top: 2.5rem;
}
#header .header_menu .gnavi .subnavi li {
  text-align: center;
  color: #414141;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#header .header_menu .gnavi .subnavi li a {
  position: relative;
  display: block;
  padding: 1rem 3.5rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (min-width: 768px) {
  #header .header_menu .gnavi .subnavi li a {
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  #header .header_menu .gnavi .subnavi li a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 768px) {
  #header .header_menu .gnavi {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  #header .header_menu .gnavi > li + li {
    margin-left: 5rem;
  }
  #header .header_menu .gnavi > li.sns {
    margin-left: 4rem;
  }
  #header .header_menu .gnavi > li.sns img {
    width: 2.5rem;
  }
  #header .header_menu .gnavi > li.subnavi_link {
    padding-right: 2rem;
    cursor: pointer;
  }
  #header .header_menu .gnavi > li.subnavi_link::after {
    content: "∨";
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    position: absolute;
    right: 0;
    top: 0.4rem;
    transition: 0.3s ease;
  }
  #header .header_menu .gnavi > li.subnavi_link:hover::after {
    transform: scale(1, -1) translateY(-0.1rem);
  }
  #header .header_menu .gnavi .subnavi {
    border-radius: 2rem;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }
  #header .header_menu .gnavi .subnavi li a::after {
    content: "";
    width: 0.6rem;
    height: 1.2rem;
    border-right: 1px solid #414141;
    border-top: 1px solid #414141;
    transform: skewX(-48deg);
    position: absolute;
    right: 2.2rem;
    top: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #header {
    min-width: inherit;
  }
  #header .wrap {
    padding: 1rem 4.9rem;
  }
  #header .logo {
    width: 32rem;
    transform: none;
    z-index: 101;
  }
  #header .menu_trigger {
    position: relative;
    display: block;
    width: 9.4rem;
    height: 5rem;
    padding: 1rem 0 0;
    text-align: center;
    z-index: 101;
  }
  #header .menu_trigger .txt {
    color: #000000;
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    transition: opacity 0.5s ease;
  }
  #header .menu_trigger span {
    display: inline-block;
    width: 100%;
    height: 0.2rem;
    background-color: #000000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s;
  }
  #header.navOpen .txt {
    opacity: 0;
  }
  #header.navOpen .menu_trigger span:nth-of-type(1) {
    bottom: 1rem;
    transform: rotate(-20deg);
  }
  #header.navOpen .menu_trigger span:nth-of-type(2) {
    bottom: 1rem;
    transform: rotate(20deg);
  }
  #header .header_menu {
    display: none;
    width: 100%;
    height: 100svh;
    background: url(../img/common/header_menu_bg_sp.jpg) no-repeat center top/cover;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    z-index: 100;
  }
  #header .header_menu .menu_wrap {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    text-align: right;
    padding: 18rem 4.9rem 8.3rem;
  }
  #header .header_menu .gnavi > li {
    text-align: right;
    font-size: 3.4rem;
  }
  #header .header_menu .gnavi > li + li {
    margin-top: 5.6rem;
  }
  #header .header_menu .gnavi > li > a {
    position: relative;
  }
  #header .header_menu .gnavi > li:not(.sns):not(.contact) > a {
    padding-right: 6rem;
  }
  #header .header_menu .gnavi > li:not(.sns):not(.contact) > a::before {
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    border-right: 0.2rem solid #000000;
    border-bottom: 0.2rem solid #000000;
    position: absolute;
    right: 0;
    top: 1.7rem;
    transform: rotate(-45deg);
  }
  #header .header_menu .gnavi > li.sns img {
    width: 5.3rem;
  }
  #header .header_menu .gnavi > li.subnavi_link {
    padding-right: 6rem;
  }
  #header .header_menu .gnavi > li.subnavi_link::before {
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    border-right: 0.2rem solid #000000;
    border-bottom: 0.2rem solid #000000;
    position: absolute;
    right: 0;
    top: 1rem;
    transform: rotate(45deg);
  }
  #header .header_menu .gnavi .subnavi {
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 2rem;
  }
  #header .header_menu .gnavi .subnavi li {
    text-align: right;
    font-size: 3.2rem;
  }
  #header .header_menu .gnavi .subnavi li + li {
    margin-top: 2rem;
  }
  #header .header_menu .gnavi .subnavi li a {
    display: inline-block;
    padding: 0;
    background: none;
  }
  #header .header_menu .gnavi .contact {
    font-size: 3.4rem;
    margin-top: 4.5rem;
  }
  #header .header_menu .gnavi .contact a {
    display: inline-block;
    color: #ffffff;
    padding: 1.1rem 5rem;
    background-color: #000000;
  }
  #header .header_menu .close_btn {
    display: inline-block;
    font-size: 2.8rem;
    line-height: 1.4;
    padding: 1rem 1.8rem;
    border-bottom: 0.2rem solid #414141;
    margin: 10rem 0 1rem;
  }
}

/* ---------------------------------------
  main common
-----------------------------------------*/
/* page_ttl
--------------------------------*/
#page_ttl {
  padding: 0;
}
#page_ttl::before, #page_ttl::after {
  content: none;
}
#page_ttl .wrap {
  height: 28.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #page_ttl .wrap {
    height: 40rem;
    padding: 0 5rem;
  }
}
#page_ttl .ttl {
  text-align: center;
  font-size: 7rem;
  line-height: 1.25;
  letter-spacing: 0.11em;
}

/* breadcrumb
--------------------------------*/
#breadcrumb {
  position: relative;
}
#breadcrumb::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(232, 232, 232, 0.8);
  position: absolute;
  left: calc(50% - 67rem);
  top: 0;
}
@media screen and (max-width: 767px) {
  #breadcrumb::before {
    left: 5rem;
  }
}
#breadcrumb .list {
  padding: 1.1rem 0;
}
@media screen and (max-width: 767px) {
  #breadcrumb .list {
    padding: 1.6rem 0;
  }
}
#breadcrumb .list li {
  display: inline;
  color: #414141;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #breadcrumb .list li {
    font-size: 2.4rem;
  }
}
#breadcrumb .list li::before {
  content: "";
  display: inline-block;
  vertical-align: -0.1rem;
  width: 0.3rem;
  height: 1rem;
  transform: skewX(-28deg);
  background-color: #000000;
  margin: 0 1.2rem 0 0.9rem;
}
@media screen and (max-width: 767px) {
  #breadcrumb .list li::before {
    vertical-align: -0.2rem;
    width: 0.6rem;
    height: 2rem;
    margin: 0 2.4rem 0 1.8rem;
  }
}
#breadcrumb .list li:first-child::before {
  content: none;
}
#breadcrumb .list a {
  color: #C9CACA;
}
@media screen and (min-width: 768px) {
  #breadcrumb .list a {
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  #breadcrumb .list a:hover {
    opacity: 0.6;
  }
}

/* parts
--------------------------------*/
/* bg */
.bg_black {
  background-color: #000000;
}

.bg_gray {
  background-color: #E8E8E8;
}

/* section */
section::before, section::after {
  content: "";
  width: 1px;
  background-color: rgba(232, 232, 232, 0.8);
  position: absolute;
  left: calc(50% - 67rem);
}
@media screen and (max-width: 767px) {
  section::before, section::after {
    left: 5rem;
  }
}
section::before {
  height: 9rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  section::before {
    height: 12rem;
  }
}
section::after {
  height: calc(100% - 21rem);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  section::after {
    height: calc(100% - 24rem);
  }
}

section.bg_gray::before, section.bg_gray::after {
  background-color: rgba(255, 255, 255, 0.8);
}
section.bg_black::before, section.bg_black::after {
  background-color: rgba(156, 157, 157, 0.8);
}

/* ttl */
.sec_ttl_en {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: "Marcellus", system-ui;
  color: #E8E8E8;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-left: -11rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec_ttl_en {
    width: calc(100% + 7rem);
    margin-left: -7rem;
  }
}
.sec_ttl_en span:not(.ttl_ja) {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2.5rem 3rem 2.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .sec_ttl_en span:not(.ttl_ja) {
    padding: 2.5rem 3rem 2.5rem 2rem;
  }
}
.sec_ttl_en text {
  fill: transparent;
  text-anchor: start;
  dominant-baseline: hanging;
  transform: translateY(0.1em);
}
.sec_ttl_en.is-show text {
  stroke-dasharray: 500;
  stroke: #E8E8E8;
  animation-name: ttl_anime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  .sec_ttl_en svg {
    width: auto;
    height: 7rem;
  }
}
.sec_ttl_en._white {
  color: #ffffff;
}
.sec_ttl_en._white.is-show text {
  stroke: #ffffff;
  animation-name: ttl_anime_white;
}
.sec_ttl_en .ttl_ja {
  display: inline-block;
  color: #414141;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec_ttl_en .ttl_ja {
    font-size: 2.4rem;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

.bg_black .sec_ttl_en {
  color: #9C9D9D;
}
.bg_black .sec_ttl_en.is-show text {
  stroke: #9C9D9D;
  animation-name: ttl_anime_gray2;
}

.bg_gray .sec_ttl_en {
  color: #ffffff;
}
.bg_gray .sec_ttl_en.is-show text {
  stroke: #ffffff;
  animation-name: ttl_anime_white;
}

.sec_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .sec_head {
    display: block;
  }
}
.sec_head .txt_wrap {
  width: 79.6rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .sec_head .txt_wrap {
    width: 100%;
  }
}
.sec_head .txt_wrap .txt {
  max-width: 66rem;
}
@media screen and (max-width: 767px) {
  .sec_head .txt_wrap .txt {
    max-width: inherit;
  }
}

@keyframes ttl_anime {
  0% {
    stroke-dashoffset: 500;
    stroke-width: 1px;
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-width: 0px;
    fill: #E8E8E8;
  }
}
@keyframes ttl_anime_white {
  0% {
    stroke-dashoffset: 500;
    stroke-width: 1px;
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-width: 0px;
    fill: #ffffff;
  }
}
@keyframes ttl_anime_gray2 {
  0% {
    stroke-dashoffset: 500;
    stroke-width: 1px;
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-width: 0px;
    fill: #9C9D9D;
  }
}
.ttl01 {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .ttl01 {
    font-size: 5rem;
    line-height: 1.8;
  }
}

.ttl01 + .txt {
  text-align: justify;
  margin-top: 6.3rem;
}
@media screen and (max-width: 767px) {
  .ttl01 + .txt {
    letter-spacing: 0;
    margin-top: 7rem;
  }
}

/* btn */
.btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 15rem;
  padding: 1.1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .btn a {
    width: 24.3rem;
    padding: 1.75rem 2.3rem;
  }
}
.btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleY(0.44);
  transform-origin: center bottom;
  transition: transform 0.3s ease;
}
.btn .btn_txt {
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .btn .btn_txt {
    font-size: 2.2rem;
  }
}
.btn .arw {
  width: 0.6rem;
  height: 1.2rem;
  border-right: 1px solid #000000;
  border-top: 1px solid #000000;
  transform: skewX(-48deg);
  position: absolute;
  right: 2.1rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn .arw {
    width: 1rem;
    height: 2rem;
    border-width: 0.2rem;
    right: 3rem;
  }
}
.btn._back a {
  padding: 1.1rem 2.2rem;
}
.btn._back a::before {
  background-color: #E8E8E8;
}
.btn._back .btn_txt {
  text-align: right;
  font-weight: 500;
}
.btn._back .arw {
  right: auto;
  left: 2.1rem;
  transform: scale(-1, 1) skewX(-48deg);
}
.btn._white a::before {
  background-color: #696B6B;
}
.btn._white .btn_txt {
  color: #ffffff;
}
.btn._white .arw {
  border-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .btn a:hover::before {
    transform: scaleY(1);
  }
  .btn a:hover .arw {
    transform: skewX(-48deg) translateX(0.5rem);
  }
  .btn._back a:hover .arw {
    transform: scale(-1, 1) skewX(-48deg) translateX(0.5rem);
  }
}

.btn_box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem 5rem;
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .btn_box a {
    padding: 1rem 4rem;
  }
}
.btn_box a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform 0.3s ease;
}
.btn_box .btn_txt {
  position: relative;
  color: #ffffff;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.5;
  z-index: 1;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn_box .btn_txt {
    font-size: 4.2rem;
  }
}
.btn_box .arw {
  width: 0.6rem;
  height: 1.2rem;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  transform: skewX(-48deg);
  position: absolute;
  right: 3.7rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn_box .arw {
    width: 1rem;
    height: 2rem;
    border-width: 0.2rem;
    right: 5rem;
  }
}
.btn_box._white a {
  background-color: #ffffff;
}
.btn_box._white a::before {
  background-color: #000000;
}
.btn_box._white .btn_txt {
  color: #414141;
}
.btn_box._white .arw {
  border-color: #414141;
}
@media screen and (min-width: 768px) {
  .btn_box a:hover::before {
    transform: scaleY(1);
    transform-origin: center bottom;
  }
  .btn_box a:hover .btn_txt {
    color: #000000;
  }
  .btn_box a:hover .arw {
    border-color: #000000;
    transform: skewX(-48deg) translateX(0.5rem);
  }
  .btn_box._white a:hover::before {
    background-color: #000000;
  }
  .btn_box._white a:hover .btn_txt {
    color: #ffffff;
  }
  .btn_box._white a:hover .arw {
    border-color: #ffffff;
  }
}

/* sec_contact
--------------------------------*/
#sec_contact {
  padding: 9rem 0 12rem;
  background: url(../img/index/contact_bg_pc.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  #sec_contact {
    padding: 12rem 0 15rem;
    background: url(../img/index/contact_bg_sp.jpg) no-repeat center/cover;
  }
}
#sec_contact::before, #sec_contact::after {
  background-color: rgba(156, 157, 157, 0.8);
}
#sec_contact .wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #sec_contact .wrap {
    display: block;
  }
}
#sec_contact .sec_ttl_en {
  color: #9C9D9D;
}
#sec_contact .sec_ttl_en.is-show text {
  stroke: #9C9D9D;
  animation-name: ttl_anime_gray2;
}
#sec_contact .txt_wrap {
  width: 36.5rem;
}
@media screen and (max-width: 767px) {
  #sec_contact .txt_wrap {
    width: 100%;
  }
}
#sec_contact .txt_wrap .txt {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  #sec_contact .txt_wrap .txt {
    margin-top: 6rem;
  }
}
#sec_contact .btn_wrap {
  width: 63.9rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  #sec_contact .btn_wrap {
    width: 100%;
    margin-top: 10rem;
  }
}
#sec_contact .btn_wrap .btn_box {
  height: 8.9rem;
}
@media screen and (max-width: 767px) {
  #sec_contact .btn_wrap .btn_box {
    height: 15rem;
  }
}
#sec_contact .btn_wrap .btn_box + .btn_box {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  #sec_contact .btn_wrap .btn_box + .btn_box {
    margin-top: 4rem;
  }
}
#sec_contact .btn_wrap .btn_box a {
  border: 1px solid #ffffff;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  #sec_contact .btn_wrap .btn_box a {
    border-width: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  #sec_contact .btn_wrap .btn_box .btn_txt {
    font-size: 3.6rem;
    text-align: center;
  }
}
#sec_contact .btn_wrap .btn_box._tel .btn_txt {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #sec_contact .btn_wrap .btn_box._tel .btn_txt {
    display: block;
  }
}
#sec_contact .btn_wrap .btn_box._tel .btn_txt .num {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  #sec_contact .btn_wrap .btn_box._tel .btn_txt .num {
    font-size: 4.4rem;
  }
}
#sec_contact .btn_wrap .btn_box._tel .btn_txt .time {
  font-size: 1.4rem;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  #sec_contact .btn_wrap .btn_box._tel .btn_txt .time {
    display: block;
    font-size: 2.2rem;
    margin-left: 0;
  }
}

/* ---------------------------------------
  pagetop
-----------------------------------------*/
#pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  font-size: 0;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background-color: #171717;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  #pagetop {
    width: 9rem;
    height: 9rem;
    bottom: 12rem;
  }
}
#pagetop::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  position: absolute;
  transform: translateY(0.1rem) rotate(-45deg);
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  #pagetop::before {
    width: 1.3rem;
    height: 1.3rem;
    border-width: 0.2rem;
  }
}
@media screen and (min-width: 768px) {
  #pagetop:hover {
    background-color: #ffffff;
  }
  #pagetop:hover:before {
    border-color: #171717;
  }
}

#fixed_btn {
  width: 19.4rem;
  height: 5rem;
  width: 5rem;
  height: 19.4rem;
  position: fixed;
  right: 0;
  bottom: calc(50% - 14.4rem);
  z-index: 99;
}
@media screen and (max-width: 767px) {
  #fixed_btn {
    width: 100%;
    height: 10rem;
    left: 0;
    bottom: 0;
  }
}
#fixed_btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  background-color: #171717;
}
@media screen and (min-width: 768px) {
  #fixed_btn a {
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 767px) {
  #fixed_btn a {
    font-size: 2.8rem;
    letter-spacing: 0.15em;
  }
}
#fixed_btn a.min {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 767px) {
  #fixed_btn a.min {
    font-size: 2.8rem;
  }
}
#fixed_btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/contact_bg.png) repeat center/0.6rem auto;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  #fixed_btn a::before {
    background-size: 1.2rem auto;
  }
}
@media screen and (min-width: 768px) {
  #fixed_btn a:hover::before {
    opacity: 0;
  }
}

/* ---------------------------------------
  footer
-----------------------------------------*/
#footer {
  padding: 8rem 0 5rem;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 9.5rem 0 16rem;
  }
}
#footer .wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #footer .wrap {
    display: block;
    padding: 0 5rem;
  }
}
#footer .footer_info .logo {
  width: 31.9rem;
  transform: translateX(-9rem);
}
@media screen and (max-width: 767px) {
  #footer .footer_info .logo {
    width: 51.3rem;
    transform: translateX(0.7rem);
  }
}
#footer .footer_info .logo a {
  display: block;
}
#footer .footer_info .logo a img {
  width: 100%;
}
#footer .footer_info .address {
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  #footer .footer_info .address {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin-top: 6.5rem;
  }
}
#footer .footer_info .num {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #footer .footer_info .num {
    font-size: 3.4rem;
  }
}
#footer .footer_info .num + .num {
  margin-top: 0.5rem;
}
#footer .footer_info .num span:not(.time) {
  display: inline-block;
  min-width: 2.5em;
}
#footer .footer_info .num .time {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  vertical-align: 0.3em;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  #footer .footer_info .num .time {
    font-size: 2.4rem;
    letter-spacing: 0;
    vertical-align: 0.2em;
  }
}
#footer .footer_menu {
  width: 62rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu {
    display: block;
    width: 100%;
    margin-top: 11rem;
  }
}
#footer .footer_menu .f_navi {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi .list {
    width: 50%;
  }
  #footer .footer_menu .f_navi .list:nth-child(3) {
    margin-left: auto;
    margin-top: 6rem;
  }
}
#footer .footer_menu .f_navi .list li a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  #footer .footer_menu .f_navi .list li a {
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  #footer .footer_menu .f_navi .list li a:hover {
    opacity: 0.6;
  }
}
#footer .footer_menu .f_navi .list li a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/common/ico_blank.svg) no-repeat left bottom/1.8rem 1.7rem;
  margin-left: 2rem;
  vertical-align: -0.4rem;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi .list li a[target=_blank]::after {
    width: 2.6rem;
    height: 2.6rem;
    background-size: contain;
    vertical-align: -0.3rem;
  }
}
@media screen and (min-width: 768px) {
  #footer .footer_menu .f_navi .list li a[target=_blank]:hover::after {
    background: url(../img/common/ico_blank_on.svg) no-repeat left bottom/2.2rem 2.1rem;
  }
}
#footer .footer_menu .f_navi .list > li {
  font-family: "Marcellus", system-ui;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi .list > li {
    font-size: 3rem;
  }
}
#footer .footer_menu .f_navi .list > li + li {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi .list > li + li {
    margin-top: 4.5rem;
  }
}
#footer .footer_menu .f_navi .list > li.sns a::after {
  content: none;
}
#footer .footer_menu .f_navi .list > li.sns img {
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi .list > li.sns img {
    width: 4rem;
  }
}
#footer .footer_menu .f_navi .list ul {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi .list ul {
    margin-top: 2.4rem;
  }
}
#footer .footer_menu .f_navi .list ul li {
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi .list ul li {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
}
#footer .footer_menu .f_navi .list ul li + li {
  margin-top: 1rem;
}
#footer .footer_menu .f_navi .list ul li a {
  position: relative;
  padding-left: 2.2rem;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi .list ul li a {
    padding-left: 3.6rem;
  }
}
#footer .footer_menu .f_navi .list ul li a::before {
  content: "";
  width: 1.2rem;
  height: 1px;
  background-color: #414141;
  position: absolute;
  left: 0;
  top: 1.5rem;
}
@media screen and (max-width: 767px) {
  #footer .footer_menu .f_navi .list ul li a::before {
    width: 1.9rem;
    height: 0.2rem;
    top: 2.1rem;
  }
}
#footer .copyright {
  text-align: right;
  font-size: 1.3rem;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
  #footer .copyright {
    text-align: left;
    font-size: 2.4rem;
    margin-top: -3.8rem;
  }
}

/* ---------------------------------------
  clearfix
-----------------------------------------*/
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End Hack */