@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  font-family: "MFW-PKasumiShirafujiMin2-R", serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  font-family: "MFW-PKasumiShirafujiMin2-B", serif;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

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

img {
  max-width: 100%;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --primary-font:'游ゴシック体',YuGothic,游ゴシック Medium,Yu Gothic Medium,游ゴシック,Yu Gothic,Meiryo,sans-serif;
  --cormorant-infant-font:'Cormorant Infant', serif;
  --yu-mincho-font: '游明朝体', '游明朝', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
  --primary:#333333;
  --primary-light:#BBBBBB;
  --primary-dark:#1E0405;
  --secondary:#999;
  --secondary-dark:#605858;
  --primary-background-color:#231815;
  --accent-color: #8B7246;
  --border-primary:#DDDDDD;
  --border-primary-light:#e5e5e5;
  --border-second: #CCCCCC;
  --white: #FFFFFF;
  --black: #000;
  --hover-button-light: #F5F5F5;
  --background-red: rgba(218, 49, 12, 0.05);
  --red:#DA310C;
  --blue:#0070BF;
  --green: #6FBA2C;
  --orange: #ED6104;
}

/*------------------------------------------------------------
------------------------------------------------------------*/
body {
  --white: #ffffff;
  --back: #111111;
  --beige_light: #F5F3EB;
  --beige_dark: #E5E1CF;
  --gold: linear-gradient(94.67deg, #856910 0%, #BD930D 51.44%, #856910 100%);
  --green: #07362C;
  --font01: "MFW-PKasumiShirafujiMin2-R", serif;
  --font02: "MFW-PKasumiShirafujiMin2-B", serif;
  font-weight: 500;
  font-family: var(--font01);
  color: var(--back);
  line-height: 1.5;
}

.l-content {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1240px;
}
@media screen and (max-width: 768px) {
  .l-content {
    padding: 0 14px;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .tab {
    display: block !important;
  }
}

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

html,
body {
  scroll-behavior: auto;
}

body.overflow {
  overflow: hidden;
  touch-action: none;
}

.scrollanime {
  opacity: 0;
  transform: translateY(80px);
}

.scrollanime.anime-delay1 {
  animation-delay: 0.4s;
}

.scrollanime.anime-delay2 {
  animation-delay: 1s;
}

.scrollanime_kv_cv {
  opacity: 0;
}

.is-action {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.is-action_kv {
  animation-name: fadeIn_kv;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn_kv {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------------------------------------------------------
    Sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
    Header
------------------------------------------------------------*/
.c-header {
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 9999;
}
.c-header--wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  align-items: center;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 1023px) {
  .c-header--wrap {
    height: 58px;
  }
}
.c-header .logo {
  width: 200px;
  height: 52px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .c-header .logo {
    width: 180px;
  }
}
.c-header .logo a {
  display: block;
}
.c-header .logo a img {
  position: absolute;
  transition: ease-in-out 0.3s;
  width: 200px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-header .logo a img {
    width: 180px;
  }
}
.c-header .logo a {
  transition: ease-in-out 0.3s;
}
@media screen and (min-width: 769px) {
  .c-header .logo a:hover {
    opacity: 0.7;
  }
}
.c-header .nav01 {
  height: inherit;
}
@media screen and (max-width: 1023px) {
  .c-header .nav01 {
    left: 0;
    position: fixed;
    top: 0px;
    transform: translateY(calc(-100% - 58px));
    transition: transform 0.88s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
    padding-top: 58px;
    z-index: -1;
    background: var(--beige_light);
    flex-wrap: wrap;
  }
}
.c-header .nav01 ul {
  display: flex;
  height: inherit;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1190px) {
  .c-header .nav01 ul {
    gap: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .c-header .nav01 ul {
    flex-wrap: wrap;
    gap: 0;
  }
}
@media screen and (max-width: 1023px) {
  .c-header .nav01 ul li {
    width: 100%;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.c-header .nav01 ul li a {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--beige_light);
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 1023px) {
  .c-header .nav01 ul li a {
    color: var(--black);
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-header .nav01 ul li a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  .c-header .nav01 ul li a:hover {
    opacity: 0.7;
  }
}
.c-header .nav01 ul li:last-child a {
  padding: 0px 40px;
  height: 72px;
  color: var(--beige_light) !important;
  background: var(--gold);
}
@media screen and (max-width: 1190px) {
  .c-header .nav01 ul li:last-child a {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 1023px) {
  .c-header .nav01 ul li:last-child a {
    height: 58px;
  }
}
.c-header.bgh .c-header--wrap {
  background: var(--beige_light);
}
.c-header.bgh .c-btnv .icon span {
  background-color: var(--green);
}
.c-header.bgh .logo .ver2 {
  opacity: 0;
}
.c-header.bgh .nav01 ul li a {
  color: var(--black);
}
.c-header .c-btnv {
  width: 56px;
  height: 56px;
  position: fixed;
  z-index: 9999;
  top: 0px;
  right: 0px;
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-header .c-btnv {
    display: block;
    padding: 15px;
  }
}
.c-header .c-btnv .icon {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
.c-header .c-btnv .icon span {
  width: 20px;
  height: 2px;
  margin: 2px 0;
  border-radius: 2px;
  display: block;
  background-color: var(--beige_light);
  transition: ease-in-out 0.3s;
}
.c-header .c-btnv .icon span:nth-of-type(2) {
  width: 16px;
}
.c-header .c-btnv .icon span:nth-of-type(3) {
  width: 10px;
}
.c-header.is-active .logo .ver2 {
  opacity: 0;
}
.c-header.is-active .c-btnv .icon span {
  background-color: var(--green);
}
.c-header.is-active .c-btnv .icon span:nth-of-type(1) {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
@media screen and (max-width: 1023px) {
  .c-header.is-active .c-btnv .icon span:nth-of-type(1) {
    transform: translate3d(0, 6px, 0) rotate(45deg);
  }
}
.c-header.is-active .c-btnv .icon span:nth-of-type(2) {
  transform: translate3d(7px, 0, 0);
  opacity: 0;
}
.c-header.is-active .c-btnv .icon span:nth-of-type(3) {
  width: 20px;
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}
@media screen and (max-width: 1023px) {
  .c-header.is-active .c-btnv .icon span:nth-of-type(3) {
    transform: translate3d(0, -6px, 0) rotate(-45deg);
  }
}
.c-header .bg1 {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  transition: opacity 0.64s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -2;
}
@media screen and (max-width: 1023px) {
  .c-header[aria-label=false] .nav01 {
    transform: translateY(0);
    transition-delay: 0ms;
  }
  .c-header[aria-label=false] .bg1 {
    opacity: 0.5;
    pointer-events: all;
  }
}

/*------------------------------------------------------------
    Footer
------------------------------------------------------------*/
.c-footer {
  background: linear-gradient(180deg, #04201A 0%, #07362C 100%);
  width: 100%;
  height: auto;
  padding: 160px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-footer {
    padding: 60px 0 0;
  }
}
.c-footer::before {
  content: "";
  background: url(../images/f-bg.webp) no-repeat bottom center;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-footer::before {
    background-size: auto 70%;
  }
}
.c-footer .l-content {
  position: relative;
  z-index: 2;
}
.c-footer .block {
  display: flex;
  flex-wrap: wrap;
}
.c-footer .block .txt1 {
  font-size: 1.6rem;
  line-height: 1.85;
  margin-top: 25px;
  color: var(--beige_light);
}
@media screen and (max-width: 768px) {
  .c-footer .block .txt1 {
    font-size: 1.4rem;
    margin-top: 5px;
  }
}
.c-footer .c-faq {
  width: calc(100% - 306px);
  height: auto;
  padding-left: 100px;
  color: var(--beige_light);
}
@media screen and (max-width: 1023px) {
  .c-footer .c-faq {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-footer .c-faq {
    margin-top: 30px;
  }
}
.c-footer .c-faq__item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(245, 243, 235, 0.3);
  padding: 18px 0;
}
@media screen and (max-width: 768px) {
  .c-footer .c-faq__item {
    padding: 12px 0;
  }
}
.c-footer .c-faq__item:last-child {
  border-bottom: 0px;
}
.c-footer .c-faq__q {
  font-size: 2rem;
  font-weight: 400;
  padding: 10px 50px;
  margin-bottom: 5px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-footer .c-faq__q {
    font-size: 1.6rem;
    padding-right: 30px;
    padding-left: 35px;
  }
}
@media screen and (min-width: 768px) {
  .c-footer .c-faq__q {
    transition: ease-in-out 0.3s;
  }
  .c-footer .c-faq__q:hover {
    opacity: 0.7;
  }
}
.c-footer .c-faq__q span {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-footer .c-faq__q span {
    left: 10px;
    font-size: 1.6rem;
  }
}
.c-footer .c-faq__q i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  position: absolute;
  right: 0px;
  top: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .c-footer .c-faq__q i {
    width: 24px;
    height: 24px;
    top: calc(50% - 12px);
  }
}
.c-footer .c-faq__q i::before, .c-footer .c-faq__q i::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 1px;
  background-color: var(--beige_light);
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-footer .c-faq__q i::before, .c-footer .c-faq__q i::after {
    right: 7px;
    width: 10px;
  }
}
.c-footer .c-faq__q i::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease;
}
.c-footer .c-faq__q.is-open i::after {
  transform: translateY(-50%) rotate(0deg);
}
.c-footer .c-faq__a {
  display: none;
}
.c-footer .c-faq__content {
  padding: 15px 50px 15px 50px;
  padding-top: 0;
  border-radius: 5px;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-footer .c-faq__content {
    font-size: 1.4rem;
    padding: 0px 30px 15px 35px;
  }
}
.c-footer .c-faq__content span {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  left: 20px;
  top: 4px;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .c-footer .c-faq__content span {
    font-size: 1.6rem;
    left: 10px;
  }
}
.c-footer .c-faq__content small {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-footer .c-faq__content small {
    font-size: 1rem;
  }
}
.c-footer .c-faq__content a {
  color: #3fa9f5;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-footer .c-faq__content a {
    font-size: 1.1rem;
  }
}
.c-footer .block3 {
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .c-footer .block3 {
    padding: 80px 0;
  }
}
.c-footer .block3 p {
  text-align: center;
  font-size: 3.2rem;
  color: var(--beige_light);
}
@media screen and (max-width: 768px) {
  .c-footer .block3 p {
    font-size: 1.8rem;
  }
}
.c-footer .ft {
  width: 100%;
  background: #04201A;
  position: relative;
  text-align: center;
  z-index: 9;
  padding: 40px 20px;
}
@media screen and (max-width: 768px) {
  .c-footer .ft {
    padding: 30px 20px;
  }
}
.c-footer .ft .copyright {
  padding-top: 30px;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--beige_light);
}
@media screen and (max-width: 768px) {
  .c-footer .ft .copyright {
    font-size: 1.1rem;
    padding-top: 10px;
  }
}
.c-footer .ft .copyright span {
  display: inline-flex;
  align-items: center;
  padding-right: 5px;
}
@media screen and (max-width: 768px) {
  .c-footer .ft .copyright span {
    padding-right: 2px;
  }
  .c-footer .ft .copyright span img {
    width: 8px;
    height: auto;
  }
}
.c-footer .icon-top {
  width: auto;
  display: inline-block;
  position: absolute;
  z-index: 9999;
  right: 40px;
  bottom: 120px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .c-footer .icon-top {
    right: 15px;
    bottom: 100px;
  }
}
.c-footer .icon-top.is-show {
  opacity: 1;
  pointer-events: visible;
}

/*------------------------------------------------------------
    btn
------------------------------------------------------------*/
.c-btn01 {
  padding: 0px 40px;
  height: 112px;
  color: var(--beige_light) !important;
  background: var(--gold);
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 1024px) {
  .c-btn01 {
    font-size: 1.8rem;
    height: 65px;
  }
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    height: 50px;
    font-size: 1.6rem;
    padding: 0px;
  }
}
@media screen and (min-width: 769px) {
  .c-btn01:hover {
    opacity: 0.7;
  }
}

/*------------------------------------------------------------
    SP追従CTA
------------------------------------------------------------*/
.c-cta-fixed {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-cta-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 20px;
    background: var(--gold);
    color: var(--beige_light) !important;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .c-cta-fixed.is-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .c-cta-fixed.is-hide {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
  }
}

@media screen and (max-width: 1023px) {
  body {
    padding-bottom: 60px;
    transition: padding-bottom 0.3s ease-in-out;
  }
  body.is-cta-hidden {
    padding-bottom: 0;
  }
}
/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title_sub {
  font-size: 30rem;
  font-weight: 400;
  font-family: var(--font01);
  color: rgba(245, 243, 235, 0.03);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-title_sub {
    font-size: 10rem;
    color: rgba(245, 243, 235, 0.03);
  }
}
.c-title01 {
  text-align: left;
  color: var(--beige_light);
}
.c-title01 span {
  font-size: 1.6rem;
  display: block;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .c-title01 span {
    font-size: 1.4rem;
  }
}
.c-title01 h2 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-title01 h2 {
    font-size: 3.2rem;
  }
}
.c-title02 {
  text-align: left;
  color: var(--beige_light);
}
.c-title02 span {
  width: 100%;
  height: auto;
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-title02 span {
    font-size: 1.3rem;
  }
}
.c-title02 span small {
  padding-left: 5px;
  display: inline-flex;
  align-items: center;
}
.c-title02 h3 {
  font-size: 3.2rem;
  font-weight: 700;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .c-title02 h3 {
    font-size: 2rem;
    padding-top: 5px;
  }
}
.c-title02 h3.designer {
  font-size: 2rem;
}

/*------------------------------------------------------------
   Table
------------------------------------------------------------*/
/*------------------------------------------------------------
   Select, input,...
------------------------------------------------------------*/
/*------------------------------------------------------------
   Breadcrumb
------------------------------------------------------------*/
/*------------------------------------------------------------
  Nav
------------------------------------------------------------*/
/*------------------------------------------------------------
  paginate
------------------------------------------------------------*/
/*------------------------------------------------------------
   Others
------------------------------------------------------------*/
.fadein {
  opacity: 0;
  transform: translate3d(0px, 30px, 0px) rotate(0.0001deg);
  transition: transform 0.72s ease-out, opacity 0.58s ease-out;
}
.fadein.inview {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
}
@media screen and (max-width: 768px) {
  .fadein {
    transition: transform 0.72s ease-out, opacity 0.58s ease-out;
  }
}

@media screen and (min-width: 769px) {
  .fade {
    opacity: 0;
    transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
    transition: opacity 1000ms ease, transform 1000ms ease;
  }
  .fade.inview {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
  }
}

@media screen and (min-width: 769px) {
  .fadeinleft {
    opacity: 0;
    transform: translate3d(-100px, 0px, 0px) rotate(0.0001deg);
    transition: opacity 1000ms ease, transform 1000ms ease;
  }
  .fadeinleft.inview {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
  }
}

@media screen and (min-width: 769px) {
  .fadeinright {
    opacity: 0;
    transform: translate3d(100px, 0px, 0px) rotate(0.0001deg);
    transition: opacity 1000ms ease, transform 1000ms ease;
  }
  .fadeinright.inview {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
  }
}

.fadein1 .e1, .fadein1 .e2, .fadein1 .e3, .fadein1 .e4, .fadein1 .e5, .fadein1 .e6, .fadein1 .e7, .fadein1 .e8, .fadein1 .e9, .fadein1 .e10 {
  opacity: 0;
  transform: translate3d(0px, 30px, 0px) rotate(0.0001deg);
  transition: opacity 1000ms ease, transform 1000ms ease;
}
.fadein1.inview .e1,
.fadein1.inview .e2,
.fadein1.inview .e3,
.fadein1.inview .e4,
.fadein1.inview .e5,
.fadein1.inview .e6,
.fadein1.inview .e7,
.fadein1.inview .e8,
.fadein1.inview .e9,
.fadein1.inview .e10 {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
}
.fadein1.inview .e1 {
  transition-delay: 200ms;
}
.fadein1.inview .e2 {
  transition-delay: 400ms;
}
.fadein1.inview .e3 {
  transition-delay: 600ms;
}
.fadein1.inview .e4 {
  transition-delay: 800ms;
}
.fadein1.inview .e5 {
  transition-delay: 1000ms;
}
.fadein1.inview .e6 {
  transition-delay: 1200ms;
}
.fadein1.inview .e7 {
  transition-delay: 1400ms;
}
.fadein1.inview .e8 {
  transition-delay: 1600ms;
}
.fadein1.inview .e9 {
  transition-delay: 1800ms;
}
.fadein1.inview .e10 {
  transition-delay: 2000ms;
}

.fadein2 {
  opacity: 0;
  transform: translate3d(0px, 30px, 0px) rotate(0.0001deg);
  transition: opacity 1000ms ease, transform 1000ms ease;
  transition-delay: 0.2s;
}
.fadein2 .e1,
.fadein2 .e2,
.fadein2 .e3,
.fadein2 .e4,
.fadein2 .e5 {
  opacity: 0;
  transform: translate3d(0px, 30px, 0px) rotate(0.0001deg);
  transition: opacity 1000ms ease, transform 1000ms ease;
}
.fadein2.inview {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
}
.fadein2.inview .c-line01 {
  transform: translate(0%, 0%);
}
.fadein2.inview .e1,
.fadein2.inview .e2,
.fadein2.inview .e3,
.fadein2.inview .e4,
.fadein2.inview .e5 {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
}
.fadein2.inview .e1 {
  transition-delay: 200ms;
}
.fadein2.inview .e2 {
  transition-delay: 400ms;
}
.fadein2.inview .e3 {
  transition-delay: 600ms;
}
.fadein2.inview .e4 {
  transition-delay: 800ms;
}
.fadein2.inview .e5 {
  transition-delay: 1000ms;
}

.js-start .e1,
.js-start .e2,
.js-start .e3,
.js-start .e4,
.js-start .e5 {
  opacity: 0;
  transform: translate3d(0px, 30px, 0px) rotate(0.0001deg);
  transition: opacity 1000ms ease, transform 1000ms ease;
}
.js-start.active .e1,
.js-start.active .e2,
.js-start.active .e3,
.js-start.active .e4,
.js-start.active .e5 {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) rotate(0.0001deg);
}
.js-start.active .e1 {
  transition-delay: 200ms;
}
.js-start.active .e2 {
  transition-delay: 400ms;
}
.js-start.active .e3 {
  transition-delay: 600ms;
}
.js-start.active .e4 {
  transition-delay: 800ms;
}
.js-start.active .e5 {
  transition-delay: 1000ms;
}

.c-mainvisual01 {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  position: relative;
}
.c-mainvisual01 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #04201A;
}
.c-mainvisual01 .bg .img1 {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.c-mainvisual01 .bg .mv-video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.c-mainvisual01 .bg .mv-filter {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.c-mainvisual01 .bg .mv-color-filter {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  background: #07362C;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.c-mainvisual01 .wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .c-mainvisual01 .wrap {
    height: 100svh;
  }
}
@media screen and (max-width: 767px) {
  .c-mainvisual01 .wrap {
    height: 100vh;
  }
}
.c-mainvisual01.is-content3-filter .mv-color-filter {
  opacity: 0.58;
}
@media screen and (max-width: 1023px) {
  .c-mainvisual01 .content {
    margin-top: -20vh;
  }
  .c-mainvisual01 .content .txt1 img {
    width: min(80%, 680px);
    height: auto;
  }
}
.c-mainvisual01 .txt1 .c-img1 {
  display: block;
}
.c-mainvisual01 .mv-campaign {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 16px;
  color: var(--beige_light);
  font-family: var(--font02);
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-shadow: 0px 2px 20px rgba(9, 49, 39, 0.6);
}
.c-mainvisual01 .mv-campaign::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 600px;
  max-width: calc(100vw - 40px);
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 243, 235, 0) 0%, rgba(245, 243, 235, 0.75) 50%, rgba(245, 243, 235, 0) 100%);
  box-shadow: 0px 0px 20px rgba(245, 243, 235, 0.4);
  transform: translateX(-50%);
}
.c-mainvisual01 .mv-lead {
  display: block;
  margin-top: 32px;
  color: var(--beige_light);
  font-family: var(--font02);
  font-size: 2.8rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-shadow: 0px 2px 20px rgba(9, 49, 39, 0.6);
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .mv-campaign {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 1.6rem;
  }
  .c-mainvisual01 .mv-lead {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}
.c-mainvisual01 .content2 {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  bottom: 40px;
  padding: 0px 30px;
}
@media screen and (max-width: 1023px) {
  .c-mainvisual01 .content2 {
    flex-wrap: wrap;
    justify-content: center;
    bottom: 4vh;
  }
  .c-mainvisual01 .content2 .btn {
    width: 100%;
    text-align: center;
    padding-bottom: 60px;
  }
  .c-mainvisual01 .content2 .btn a {
    height: 72px;
    max-width: 288px;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: 500;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .content2 .btn {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .c-mainvisual01 .content2 .location {
    text-align: center;
    width: 100%;
  }
}
.c-mainvisual01 .content2 .location span {
  color: var(--beige_light);
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .content2 .location span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-mainvisual01 .content2 .scroll {
    text-align: center;
    padding-top: 20px;
  }
  .c-mainvisual01 .content2 .scroll img {
    width: 43px;
    height: auto;
  }
}
.c-mainvisual01 .content3 {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  padding: 0px 20px;
}
@media screen and (max-width: 1024px) {
  .c-mainvisual01 .content3 {
    flex-wrap: wrap;
    max-width: 700px;
  }
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .content3 {
    flex-wrap: wrap;
  }
}
.c-mainvisual01 .content3 .img {
  width: 468px;
}
.c-mainvisual01 .content3 .txt {
  padding-left: 60px;
  width: calc(100% - 468px);
  text-align: left;
  font-size: 2rem;
  color: var(--beige_light);
  line-height: 1.85;
}
@media screen and (max-width: 1024px) {
  .c-mainvisual01 .content3 .txt {
    padding-left: 0;
    width: 100%;
    padding-top: 48px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .content3 .txt {
    padding-left: 0;
    width: 100%;
    padding-top: 48px;
    font-size: 1.6rem;
  }
}
.c-mainvisual01 .wrap-content3 {
  min-height: 100vh;
  align-items: flex-start;
  padding-top: 18vh;
}
@media screen and (max-width: 1024px) {
  .c-mainvisual01 .wrap-content3 {
    min-height: 80vh;
  }
}
.contact {
  margin-top: 120px;
  background: linear-gradient(90deg, #0C2D26 0%, #0C2D26 100%);
  box-shadow: 0px 8px 40px rgba(7, 54, 44, 0.2);
  padding: 40px;
  color: var(--beige_light);
  display: flex;
  gap: 0px;
}
@media screen and (max-width: 768px) {
  .contact {
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 50px;
  }
}
.contact .ttl {
  width: calc(100% - 456px);
  padding-right: 60px;
}
@media screen and (max-width: 1024px) {
  .contact .ttl {
    width: calc(100% - 300px);
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contact .ttl {
    width: 100%;
    padding-right: 0;
  }
}
.contact .ttl span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .contact .ttl span {
    font-size: 1.2rem;
  }
}
.contact .ttl h2 {
  padding-top: 15px;
  font-size: 2.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .contact .ttl h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .contact .ttl h2 {
    font-size: 1.6rem;
    padding-top: 5px;
  }
}
.contact .btn {
  width: 456px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact .btn {
    width: 100%;
    padding-top: 15px;
  }
}
.contact .btn p {
  font-size: 1.6rem;
  font-weight: 700;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .contact .btn p {
    font-size: 1.3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
  }
}
.contact .btn p a {
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  transition: ease-in-out 0.3s;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .contact .btn p a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .contact .btn p a {
    font-size: 1.3rem;
    margin-left: 15px;
  }
}
.contact .btn p a span {
  display: inline-block;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .contact .btn p a span {
    padding-top: 10px;
  }
  .contact .btn p a span img {
    width: 14px;
    height: auto;
  }
}
@media screen and (min-width: 769px) {
  .contact .btn p a:hover {
    opacity: 0.7;
  }
}

.index-sec1 {
  background: linear-gradient(180deg, #04201A 0%, #07362C 100%);
  width: 100%;
  height: auto;
  padding: 120px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .index-sec1 {
    padding: 80px 0;
  }
}
.index-sec1 .l-content {
  position: relative;
}
@media screen and (max-width: 768px) {
  .index-sec1 .l-content {
    width: 100%;
  }
}
.index-sec1 .c-title_sub {
  position: absolute;
  right: auto;
  left: 50%;
  top: -60px;
}
@media screen and (max-width: 768px) {
  .index-sec1 .c-title_sub {
    top: -55px;
    left: 40%;
    right: auto;
  }
}
.index-sec1 .block {
  width: 100%;
  height: auto;
  display: flex;
  gap: 240px;
  flex-wrap: wrap;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .index-sec1 .block {
    padding-top: 30px;
    gap: 60px;
  }
}
.index-sec1 .item1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .index-sec1 .item1 {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .index-sec1 .item1 {
    gap: 32px;
  }
  .index-sec1 .item1 .img {
    text-align: center;
  }
  .index-sec1 .item1 .img img {
    width: min(100%, 440px);
  }
}
.index-sec1 .item1 > * {
  width: calc(50% - 30px);
  height: auto;
}
@media screen and (max-width: 1023px) {
  .index-sec1 .item1 > * {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .index-sec1 .item1 > * {
    width: 100%;
  }
}
.index-sec1 .item1 .txt {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--beige_light);
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .index-sec1 .item1 .txt {
    font-size: 1.6rem;
    padding-top: 10px;
  }
}
.index-sec1 .item1 .txt span {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
}
.index-sec1 .item1 .txt2 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--beige_light);
  border: 1px solid var(--beige_light);
  display: inline-block;
  padding: 2px 10px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .index-sec1 .item1 .txt2 {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
.index-sec1 .item1:last-child .img {
  order: 2;
}
@media screen and (max-width: 768px) {
  .index-sec1 .item1:last-child .img {
    order: 1;
    margin-left: auto;
  }
}
.index-sec1 .item1:last-child .content {
  order: 1;
}
@media screen and (max-width: 768px) {
  .index-sec1 .item1:last-child .content {
    padding-left: 0px;
  }
}
.index-sec2 {
  background: var(--beige_light);
  padding: 120px 0px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .index-sec2 {
    padding: 80px 0;
  }
  .index-sec2 .img {
    width: 100%;
    text-align: center;
  }
}
.index-sec2 .l-content {
  position: relative;
}
.index-sec2 .c-title_sub {
  position: absolute;
  right: 0;
  top: -60px;
  left: 40%;
  color: rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .index-sec2 .c-title_sub {
    top: -55px;
  }
}
.index-sec2 .c-title01 {
  color: var(--black);
}
.index-sec2 .txt1 {
  font-size: 1.6rem;
  line-height: 1.85;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .txt1 {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.index-sec2 .block {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .block {
    margin-top: 30px;
    gap: 40px;
  }
}
.index-sec2 .item1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .item1 {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .index-sec2 .item1 .img {
    width: 100%;
    text-align: center;
  }
  .index-sec2 .item1 .img img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) and (max-width: 767px) {
  .index-sec2 .item1 .img img {
    width: 100%;
  }
}
.index-sec2 .item1 > * {
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .index-sec2 .item1 > * {
    width: 100%;
  }
}
.index-sec2 .item1 h3 {
  font-weight: 700;
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .index-sec2 .item1 h3 {
    font-size: 2rem;
  }
}
.index-sec2 .item1 h3 span {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .index-sec2 .item1 h3 span {
    font-size: 3.2rem;
  }
}
.index-sec2 .item1 .txt {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.85;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .item1 .txt {
    font-size: 1.6rem;
    padding-top: 10px;
  }
}
.index-sec2 .item2 {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}
.index-sec2 .item2 .content {
  width: calc(100% - 330px);
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .index-sec2 .item2 .content {
    width: 100%;
    padding-right: 0;
    padding-bottom: 15px;
  }
}
.index-sec2 .item2 .c-title02 {
  color: var(--black);
}
.index-sec2 .item2 .txt {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.85;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .item2 .txt {
    font-size: 1.2rem;
    padding-top: 0;
  }
}
.index-sec3 {
  background: var(--beige_light);
  padding: 120px 0px;
  overflow-x: hidden;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec3 {
    padding: 80px 0;
  }
}
.index-sec3.inview {
  background: var(--beige_dark);
}
.index-sec3 .l-content {
  position: relative;
}
.index-sec3 .c-title_sub {
  position: absolute;
  right: 0;
  top: -60px;
  left: 40%;
  color: rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .index-sec3 .c-title_sub {
    top: -55px;
  }
}
.index-sec3 .c-title01 {
  color: var(--black);
}
.index-sec3 .block {
  margin-top: 100px;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .index-sec3 .block {
    margin-top: 40px;
    gap: 40px;
  }
}
.index-sec3 .item1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
.index-sec3 .item1 .img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .index-sec3 .item1 .img {
    margin-bottom: 10px;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
  .index-sec3 .item1 .img img {
    width: 100%;
    height: auto;
  }
}
.index-sec3 .item1 h3 {
  width: 40%;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .index-sec3 .item1 h3 {
    width: 100%;
    font-size: 2.4rem;
  }
}
.index-sec3 .item1 p {
  padding-left: 40px;
  width: 60%;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4;
}
@media screen and (max-width: 1024px) {
  .index-sec3 .item1 p {
    width: 100%;
    padding-left: 0;
    font-size: 1.6rem;
    padding-top: 10px;
  }
}
.index-sec4 {
  background: linear-gradient(180deg, #04201A 0%, #07362C 100%);
  width: 100%;
  height: auto;
  padding: 160px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .index-sec4 {
    padding: 80px 0;
  }
}
.index-sec4 .l-content {
  position: relative;
}
.index-sec4 .c-title_sub {
  position: absolute;
  left: 0;
  bottom: -160px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index-sec4 .c-title_sub {
    bottom: -60px;
  }
}
.index-sec4 .txt {
  font-size: 1.6rem;
  line-height: 1.85;
  margin-top: 25px;
  color: var(--beige_light);
}
@media screen and (max-width: 768px) {
  .index-sec4 .txt {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.index-sec4 .block {
  display: flex;
  flex-wrap: wrap;
}
.index-sec4 .block .ttl {
  width: 405px;
  padding-right: 100px;
}
@media screen and (max-width: 1024px) {
  .index-sec4 .block .ttl {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .index-sec4 .block .ttl {
    width: 100%;
    padding-right: 0;
  }
}
.index-sec4 .block .slide {
  width: calc(100% - 405px);
  background: var(--beige_light);
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .index-sec4 .block .slide {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .index-sec4 .block .slide {
    width: 100%;
    margin-top: 30px;
    padding: 15px;
  }
}
.index-sec4 .block .slide .is-slide01 {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .index-sec4 .block .slide .is-slide01 {
    padding-top: 0px;
    padding-bottom: 32px;
  }
}
.index-sec4 .block .slide .swiper-button-prev,
.index-sec4 .block .slide .swiper-button-next {
  background: url(../images/arrow.webp) no-repeat;
  background-size: 43px;
  width: 43px;
  height: 43px;
  top: 22px;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec4 .block .slide .swiper-button-prev,
  .index-sec4 .block .slide .swiper-button-next {
    bottom: 0px;
    top: auto;
    background: url(../images/arrow.webp) no-repeat;
    background-size: 36px;
    width: 36px;
    height: 36px;
    right: 0;
  }
}
.index-sec4 .block .slide .swiper-button-prev::after,
.index-sec4 .block .slide .swiper-button-next::after {
  display: none;
}
.index-sec4 .block .slide .swiper-button-prev svg,
.index-sec4 .block .slide .swiper-button-next svg {
  display: none;
}
.index-sec4 .block .slide .swiper-button-prev {
  transform: rotate(180deg);
  left: auto;
  right: 60px;
}
@media screen and (max-width: 768px) {
  .index-sec4 .block .slide .swiper-button-prev {
    right: 44px;
  }
}
.index-sec4 .block .item1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .index-sec4 .block .item1 {
    justify-content: center;
  }
}
.index-sec4 .block .item1 .img {
  width: 280px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .index-sec4 .block .item1 .img {
    text-align: center;
    width: 100%;
  }
  .index-sec4 .block .item1 .img img {
    width: 100%;
    height: auto;
  }
}
.index-sec4 .block .item1 .content {
  width: calc(100% - 280px);
  padding-left: 40px;
}
@media screen and (max-width: 1024px) {
  .index-sec4 .block .item1 .content {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .index-sec4 .block .item1 .content {
    width: 100%;
    padding-left: 0;
    padding-top: 15px;
  }
}
.index-sec4 .block .item1 .content .ttl1 {
  position: relative;
}
.index-sec4 .block .item1 .content .ttl1 small {
  font-size: 6.4rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.04);
  position: absolute;
  right: 0;
  line-height: 1;
  top: 0;
}
@media screen and (max-width: 768px) {
  .index-sec4 .block .item1 .content .ttl1 small {
    font-size: 4rem;
  }
}
.index-sec4 .block .item1 .content span {
  font-size: 1.2rem;
  color: #888888;
  font-weight: 700;
}
.index-sec4 .block .item1 .content h3 {
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.6;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec4 .block .item1 .content h3 {
    font-size: 2rem;
    padding-bottom: 10px;
  }
}
.index-sec4 .block .item1 .content p {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec4 .block .item1 .content p {
    padding-top: 10px;
  }
}
.index-sec4 .block .item1 .content p b {
  font-size: inherit;
  font-weight: 700;
  color: var(--black);
  display: block;
  font-size: 1.6rem;
}
.index-sec4 .block .item1 .content p {
  font-size: 1.6rem;
  line-height: 2;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .index-sec4 .block .item1 .content p {
    font-size: 1.4rem;
  }
}
.index-sec5 {
  background: var(--beige_light);
  padding: 120px 0px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .index-sec5 {
    padding: 80px 0;
  }
}
.index-sec5 .l-content {
  position: relative;
}
.index-sec5 .c-title_sub {
  position: absolute;
  right: 0;
  top: -60px;
  left: 40%;
  color: rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .index-sec5 .c-title_sub {
    top: -55px;
  }
}
.index-sec5 .c-title01 {
  color: var(--black);
}
.index-sec5 .block {
  width: 100%;
  height: auto;
  padding-top: 100px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block {
    padding-top: 30px;
  }
}
.index-sec5 .block .item1 {
  width: calc(50% - 10px);
  background: #EBE7DA;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block .item1 {
    width: 100%;
  }
}
.index-sec5 .block .item1 .ttl {
  background: linear-gradient(90deg, #065C54 0%, #04201A 100%);
  padding: 10px 32px 8px;
  color: var(--beige_light);
}
@media screen and (max-width: 768px) {
  .index-sec5 .block .item1 .ttl {
    padding: 10px 20px;
  }
}
.index-sec5 .block .item1 .ttl h3 {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block .item1 .ttl h3 {
    font-size: 2.4rem;
    line-height: 1;
  }
}
.index-sec5 .block .item1 .ttl h3 span {
  font-size: 6rem;
  line-height: 0.8;
  font-weight: 400;
  font-family: var(--font02);
  padding-right: 5px;
}
@media screen and (max-width: 1024px) {
  .index-sec5 .block .item1 .ttl h3 span {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .index-sec5 .block .item1 .ttl h3 span {
    font-size: 4.8rem;
  }
}
.index-sec5 .block .item1 .ttl h3 span sup {
  font-weight: 400;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block .item1 .ttl h3 span sup {
    font-size: 2.8rem;
  }
}
.index-sec5 .block .item1 .txt {
  padding: 28px;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block .item1 .txt {
    padding: 15px;
  }
}
.index-sec5 .block .item1 .txt p b {
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block .item1 .txt p b {
    font-size: 2rem;
  }
}
.index-sec5 .block .item1 .txt p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block .item1 .txt p {
    font-size: 1.4rem;
  }
}
.index-sec5 .block2 {
  padding-top: 85px;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block2 {
    padding-top: 30px;
  }
}
.index-sec5 .block2 .ttl1 {
  position: relative;
  width: 100%;
  height: auto;
}
.index-sec5 .block2 .ttl1::before {
  width: 100%;
  height: 1px;
  background: var(--black);
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.index-sec5 .block2 .ttl1 h3 {
  font-size: 2.4rem;
  background: var(--beige_light);
  padding-left: 20px;
  padding-right: 10px;
  position: relative;
  width: auto;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block2 .ttl1 h3 {
    font-size: 1.6rem;
  }
}
.index-sec5 .block2 .ttl1 h3::before {
  width: 8px;
  height: 8px;
  background: var(--black);
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .index-sec5 .block2 .ttl1 h3::before {
    width: 6px;
    height: 6px;
  }
}
.index-sec5 .block2 .box {
  width: 100%;
  height: auto;
  padding-top: 20px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block2 .box {
    justify-content: space-between;
    gap: 8px;
  }
}
.index-sec5 .block2 .box .card1 {
  width: calc(25% - 15px);
  background: #EBE7DA;
}
@media screen and (max-width: 767px) {
  .index-sec5 .block2 .box .card1 {
    width: calc(50% - 6px);
  }
  .index-sec5 .block2 .box .card1 img {
    width: 100%;
    height: auto;
  }
}
.index-sec5 .block2 .box .card1 .text {
  padding: 16px;
  padding-top: 0;
  margin-top: -65px;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block2 .box .card1 .text {
    padding: 12px;
  }
}
.index-sec5 .block2 .box .card1 h4 {
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  min-height: 74px;
}
@media screen and (max-width: 1024px) {
  .index-sec5 .block2 .box .card1 h4 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .index-sec5 .block2 .box .card1 h4 {
    font-size: 1.8rem;
  }
}
.index-sec5 .block2 .box .card1 .txt1 {
  padding-top: 10px;
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.8;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .index-sec5 .block2 .box .card1 .txt1 {
    font-size: 1.3rem;
  }
}
.index-sec5 .block2 .box .card1 span {
  padding-top: 10px;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.85;
}
.index-sec6 {
  background: linear-gradient(180deg, #04201A 0%, #07362C 100%);
  width: 100%;
  height: auto;
  padding: 160px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .index-sec6 {
    padding: 80px 0;
  }
}
.index-sec6 .l-content {
  position: relative;
  max-width: calc(50% + 600px);
  margin: 0;
  left: calc(50% - 600px);
  padding: 0;
}
@media screen and (max-width: 1240px) {
  .index-sec6 .l-content {
    max-width: calc(100% - 20PX);
    left: 20px;
  }
}
.index-sec6 .c-title_sub {
  position: absolute;
  right: 0;
  top: -60px;
  left: 40%;
}
@media screen and (max-width: 768px) {
  .index-sec6 .c-title_sub {
    top: -55px;
  }
}
.index-sec6 .txt {
  font-size: 1.6rem;
  line-height: 1.85;
  margin-top: 25px;
  color: var(--beige_light);
}
@media screen and (max-width: 768px) {
  .index-sec6 .txt {
    place-items: 10px;
    font-size: 1.4rem;
  }
}
.index-sec6 .ttl {
  color: var(--beige_light);
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .index-sec6 .ttl {
    padding-top: 50px;
  }
}
.index-sec6 .ttl h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .index-sec6 .ttl h3 {
    font-size: 2.4rem;
    line-height: 1;
  }
}
.index-sec6 .ttl h3 span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .index-sec6 .ttl h3 span {
    font-size: 1.4rem;
  }
}
.index-sec6 .ttl p {
  font-size: 2rem;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec6 .ttl p {
    font-size: 1.6rem;
    padding-top: 10px;
    padding-right: 20px;
  }
}
.index-sec6 .ttl a {
  display: inline-block;
  padding-top: 15px;
  font-size: 2rem;
  text-decoration: underline;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec6 .ttl a {
    font-size: 1.4rem;
    padding-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .index-sec6 .ttl a:hover {
    opacity: 0.7;
  }
}
.index-sec6 .slide {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .index-sec6 .slide {
    padding-top: 30px;
  }
}
.index-sec6 .slide .is-slide02 {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .index-sec6 .slide .is-slide02 {
    padding-top: 0;
    padding-bottom: 50px;
  }
}
.index-sec6 .slide .swiper-button-prev,
.index-sec6 .slide .swiper-button-next {
  background: url(../images/arrow2.webp) no-repeat;
  background-size: 43px;
  width: 43px;
  height: 43px;
  top: 22px;
  right: 20px;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec6 .slide .swiper-button-prev,
  .index-sec6 .slide .swiper-button-next {
    background: url(../images/arrow2.webp) no-repeat;
    background-size: 32px;
    width: 32px;
    height: 32px;
    top: auto;
    bottom: 0;
    right: 20px;
  }
}
.index-sec6 .slide .swiper-button-prev::after,
.index-sec6 .slide .swiper-button-next::after {
  display: none;
}
.index-sec6 .slide .swiper-button-prev svg,
.index-sec6 .slide .swiper-button-next svg {
  display: none;
}
.index-sec6 .slide .swiper-button-prev {
  transform: rotate(180deg);
  left: auto;
  right: 80px;
}
@media screen and (max-width: 768px) {
  .index-sec6 .slide .swiper-button-prev {
    right: 62px;
  }
}
@media screen and (max-width: 1024px) {
  .index-sec6 .slide.kokunai .item1 .content .ttl1 h4 {
    font-size: 2.4rem;
  }
}
.index-sec6 .item1 {
  position: relative;
}
.index-sec6 .item1 .content {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--beige_light);
  padding: 20px;
}
.index-sec6 .item1 .content .ttl1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--beige_light);
  padding-bottom: 10px;
}
.index-sec6 .item1 .content .ttl1 h4 {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .index-sec6 .item1 .content .ttl1 h4 {
    font-size: 1.8rem;
  }
}
.index-sec6 .item1 .content .ttl1 h4 span {
  font-size: 1.8rem;
  font-weight: inherit;
}
@media screen and (max-width: 1024px) {
  .index-sec6 .item1 .content .ttl1 h4 span {
    font-size: 1.8rem;
    padding-left: 4px;
  }
}
.index-sec6 .item1 .content .ttl1 small {
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .index-sec6 .item1 .content .ttl1 small {
    font-size: 1.4rem;
  }
}
.index-sec6 .item1 .content p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec6 .item1 .content p {
    font-size: 1.3rem;
    padding-top: 10px;
  }
}
.index-sec6 .item1 .content .cat {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.index-sec6 .item1 .content .cat span {
  font-size: 1.3rem;
  font-weight: 400;
  border: 1px solid var(--beige_light);
  padding: 3px 10px;
}
@media screen and (max-width: 768px) {
  .index-sec6 .item1 .content .cat span {
    font-size: 1.1rem;
  }
}
.index-sec6 .item1 .content .note {
  font-size: 1.1rem;
}
.index-sec6 .item1 .link {
  width: 100%;
  height: auto;
  position: absolute;
  color: var(--beige_light);
  text-align: center;
}
.index-sec6 .item1 .link p {
  width: 100%;
  font-size: 4rem;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .index-sec6 .item1 .link p {
    font-size: 2.8rem;
  }
}
.index-sec6 .item1 .link a {
  font-size: 2rem;
  text-decoration: underline;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec6 .item1 .link a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  .index-sec6 .item1 .link a:hover {
    opacity: 0.7;
  }
}
.index-sec6 .item1.link1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-sec6 .item1.link1 .img {
  opacity: 0;
}
.index-sec6 .js-tabs {
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .index-sec6 .js-tabs {
    padding: 0px 0px 20px;
  }
}
.index-sec6 .js-tabs .js-tab-nav {
  width: 100%;
  height: 43px;
  max-width: 468px;
  background: var(--beige_light);
  padding: 4px;
  position: relative;
  display: flex;
  z-index: 99;
  margin-bottom: -43px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .index-sec6 .js-tabs .js-tab-nav {
    width: calc(100% - 20px);
    margin-right: 20px;
    max-width: 446px;
    padding: 4px;
    height: 56px;
    margin-bottom: 15px;
  }
}
.index-sec6 .js-tabs .js-tab-nav button {
  width: 50%;
  height: 100%;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  font-family: var(--font01);
  border: 0px solid black;
  color: rgba(6, 9, 19, 0.3);
  background: transparent;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec6 .js-tabs .js-tab-nav button {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 769px) {
  .index-sec6 .js-tabs .js-tab-nav button:hover {
    opacity: 0.7;
  }
}
.index-sec6 .js-tabs .js-tab-nav button.is-active {
  color: var(--white);
  background: var(--green);
  opacity: 1 !important;
  cursor: unset;
}
.index-sec6 .js-tabs .js-tab-panel {
  display: none;
}
@media screen and (max-width: 768px) {
  .index-sec6 .js-tabs .js-tab-panel {
    padding: 0px;
  }
}
.index-sec6 .js-tabs .js-tab-panel.is-active {
  display: block;
}
.index-sec6 .txt2 {
  text-align: right;
  font-size: 1.6rem;
  color: var(--beige_light);
  padding-top: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .index-sec6 .txt2 {
    font-size: 1.6rem;
    padding-top: 0px;
    padding-right: 20px;
    text-align: left;
    pointer-events: none;
    margin-top: -28px;
  }
}
.index-sec6 .txt3 {
  text-align: left;
  font-size: 1.4rem;
  color: var(--beige_light);
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .index-sec6 .txt3 {
    font-size: 1.1rem;
    padding-top: 0px;
  }
}
.index-sec7 {
  background: var(--beige_light);
  padding: 120px 0px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .index-sec7 {
    padding: 80px 0;
  }
}
.index-sec7 .l-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.index-sec7 .c-title01 {
  color: var(--black);
}
.index-sec7 .block {
  width: calc(100% - 377px);
  padding-left: 100px;
}
@media screen and (max-width: 1023px) {
  .index-sec7 .block {
    padding-left: 0;
    margin-top: 30px;
    width: 100%;
  }
}
.index-sec7 .table {
  width: 100%;
  border-collapse: collapse;
}
.index-sec7 .table td {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 2.4rem;
  padding: 20px 5px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .index-sec7 .table td {
    font-size: 1.6rem;
  }
}
.index-sec7 .table td span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .index-sec7 .table td span {
    font-size: 1.3rem;
  }
}
.index-sec7 .table td p {
  font-size: 1.6rem;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .index-sec7 .table td p {
    font-size: 1.1rem;
  }
}
.index-sec7 .table tr:first-child td {
  border-top: none;
}
.index-sec7 .table tr td:first-child {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .index-sec7 .table tr td:first-child {
    width: 110px;
  }
}
.index-sec7 .table tr:nth-child(2) td {
  background: linear-gradient(94.67deg, #856910 0%, #BD930D 51.44%, #856910 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .index-sec7 .table tr:nth-child(2) td {
    font-size: 2rem;
  }
}
.index-sec8 {
  background: var(--beige_light);
  padding: 120px 0px;
  overflow-x: hidden;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec8 {
    padding: 80px 0;
  }
}
.index-sec8.inview {
  background: var(--beige_dark);
}
.index-sec8 .l-content {
  position: relative;
}
.index-sec8 .c-title01 {
  color: var(--black);
  padding-bottom: 30px;
}
.index-sec8 .block {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0px 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec8 .block {
    padding: 0px 20px;
    padding-right: 0;
  }
}
.index-sec8 .block::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 1px;
  height: calc(100% - 75px);
  position: absolute;
  left: 64px;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .index-sec8 .block::before {
    left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .index-sec8 .block::before {
    left: 0px;
    height: 100%;
  }
}
.index-sec8 .block .item {
  width: calc(100% - 64px);
  margin-left: 64px;
  background: url(../images/sec8-bg1.webp) no-repeat;
  background-size: cover;
  display: flex;
  height: auto;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .index-sec8 .block .item {
    width: calc(100% - 24px);
    margin-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .index-sec8 .block .item {
    width: calc(100% - 0px);
    margin-left: 0px;
    flex-wrap: wrap;
  }
}
.index-sec8 .block .item::before {
  content: "";
  background: url(../images/sec8-ic1.webp) no-repeat;
  background-size: 100% auto;
  width: 17px;
  height: 17px;
  position: absolute;
  left: -72px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .index-sec8 .block .item::before {
    left: -28px;
  }
}
.index-sec8 .block .item .number {
  font-size: 4rem;
  font-family: var(--font02);
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .index-sec8 .block .item .number {
    font-size: 2.8rem;
    padding: 14px;
    width: 100%;
    line-height: 1;
  }
}
.index-sec8 .block .item .txt {
  position: relative;
  padding: 15px;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .index-sec8 .block .item .txt {
    width: 100%;
    padding: 14px;
  }
}
.index-sec8 .block .item .txt::before {
  width: 1px;
  height: 84px;
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .index-sec8 .block .item .txt::before {
    width: 40px;
    height: 1px;
    top: 0;
    left: 14px;
  }
}
.index-sec8 .block .item .txt h3 {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .index-sec8 .block .item .txt h3 {
    font-size: 1.8rem;
  }
}
.index-sec8 .block .item .txt p {
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .index-sec8 .block .item .txt p {
    font-size: 1.4rem;
  }
}
.index-sec8 .block .item .txt span {
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .index-sec8 .block .item .txt span {
    font-size: 1.2rem;
  }
}
.index-sec8 .block .item:last-child {
  background: url(../images/sec8-bg2.webp) no-repeat;
  background-size: cover;
  color: var(--beige_light);
}
@media screen and (max-width: 768px) {
  .index-sec8 .block .item:last-child {
    background: url(../images/sec8-bg2.webp) no-repeat center;
    background-size: cover;
  }
}
.index-sec8 .block .item:last-child::before {
  background: url(../images/sec8-ic2.webp) no-repeat;
  background-size: 100% auto;
}
.index-sec8 .block .item:last-child p, .index-sec8 .block .item:last-child span {
  color: var(--beige_light);
}
.index-sec8 .block .item:last-child .txt::before {
  background: var(--beige_light);
}

.ef1 {
  opacity: 0;
  margin-top: -100px;
  transition: margin-top 0.88s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.96s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
  transition-delay: 750ms;
}

.completed .ef1 {
  opacity: 1;
  margin-top: 0;
}
.completed .c-mainvisual01 {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.completed .bg {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.p-header__cta .p-cta-btn .c-cta-btn a {
  height: auto;
  padding-block: 21.93px;
}

@media screen and (max-width: 767px) {
  .p-header__cta .p-cta-btn .c-cta-btn.--contact a {
    padding-block: 10px;
  }
}
.p-header__cta .p-cta-btn .c-cta-btn.--tel .c-cta-btn__head {
  font-size: 1rem;
}

.p-header__cta .p-cta-btn .c-cta-btn.--tel img {
  height: auto;
  width: 30px;
}

.p-header__cta .p-cta-btn .c-cta-btn.--tel .c-cta-btn__foot {
  font-size: 0.6rem;
}

.p-header__cta .p-cta-btn .c-cta-btn.--tel a {
  padding-block: 8px;
}

.p-header__cta .p-cta-btn .c-cta-btn.--tel a .c-cta-btn__tel {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */
