@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* ------------------------------
	カラー
------------------------------ */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

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

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, form {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure,
form, input, textarea, select, button, div {
  font-style: normal;
  font-weight: normal;
  font-family: "Zen Maru Gothic", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  text-align: left;
  word-break: break-word;
  line-break: strict;
  line-height: 1;
  color: #451401;
  font-weight: bold;
  font-size: 1.8rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  body, h1, h2, h3, h4, h5, h6, p, address,
  ul, ol, li, dl, dt, dd,
  table, th, td, img, figure,
  form, input, textarea, select, button, div {
    font-size: 1.4rem;
  }
}

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

table {
  border-spacing: 0;
}

input:not([type=file]), textarea, select, button {
  vertical-align: middle;
  background-color: #fff;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

input:not([type=file]), select, button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

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

textarea {
  resize: none;
}

button, input[type=submit], input[type=button], select, label {
  cursor: pointer;
}

input[type=radio]:checked {
  appearance: none;
}

blockquote {
  margin: 0;
  padding: 0;
}

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

a,
button,
input[type=submit],
input[type=button] {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

@media screen and (min-width: 769px) {
  a:hover,
  button:hover,
  input[type=submit]:hover,
  input[type=button]:hover {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
.wrap {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap {
    width: calc(100% - 5rem);
    max-width: initial;
  }
}

.content {
  overflow: hidden;
  background: #f7f7f7;
}

.space {
  letter-spacing: -0.3em;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
.header_wrap {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 10rem;
  padding: 0 4rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header_wrap {
    height: 7rem;
    padding: 0 2rem;
  }
}
.header_wrap a {
  pointer-events: auto;
}
.header_wrap .logo img {
  width: 16rem;
}
@media screen and (max-width: 768px) {
  .header_wrap .logo img {
    width: 13rem;
  }
}

.menu_btn {
  position: fixed;
  z-index: 10001;
  top: 2.5rem;
  right: 1.5%;
  display: block;
  width: 5rem;
  height: 5rem;
  background: url(../img/common/ico_menu02.svg) no-repeat center center;
  background-size: 4.7rem;
  cursor: pointer;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    top: 1.75rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-size: 3.3rem;
  }
}
@media screen and (min-width: 769px) {
  .menu_btn:hover {
    opacity: 0.7;
  }
}
.menu_btn.active {
  background: url(../img/common/ico_close01.svg) no-repeat center center;
  background-size: 3.7rem;
}
@media screen and (max-width: 768px) {
  .menu_btn.active {
    background-size: 3.3rem;
  }
}

.gnav {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100vh;
  background: #f7f7f7;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.gnav.active {
  opacity: 1;
  visibility: visible;
}
.gnav .gnav_wrap {
  display: none;
  width: 100%;
  padding: 6rem 4%;
  height: 100vh;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap {
    padding: 9rem 0 12rem;
  }
}
.gnav .gnav_wrap .gnav_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}
.gnav .gnav_wrap .gnav_bg.bg01 {
  background: url(../img/common/gnav_bg01.svg) no-repeat center top;
  background-size: 100%;
  transform-origin: center top;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap .gnav_bg.bg01 {
    background: url(../img/common/gnav_bg01_sp.svg) no-repeat center top;
    background-size: 100%;
    transform-origin: center top;
  }
}
.gnav .gnav_wrap .gnav_bg.bg02 {
  background: url(../img/common/gnav_bg02.svg) no-repeat center bottom;
  background-size: 100%;
  transform-origin: center bottom;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap .gnav_bg.bg02 {
    background: url(../img/common/gnav_bg02_sp.svg) no-repeat center bottom;
    background-size: 100%;
    transform-origin: center bottom;
  }
}
.gnav .gnav_wrap .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9.5rem;
  min-height: 100%;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap .wrap {
    flex-direction: column;
    gap: 4.5rem;
  }
}
.gnav .gnav_wrap .logo {
  opacity: 0;
}
.gnav .gnav_wrap .logo img {
  width: 35rem;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap .logo img {
    width: 17.5rem;
  }
}
.gnav .gnav_wrap .gnav_box {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap .gnav_list .gnav_item {
    text-align: center;
  }
}
.gnav .gnav_wrap .gnav_list .gnav_item + .gnav_item {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap .gnav_list .gnav_item + .gnav_item {
    margin-top: 2rem;
  }
}
.gnav .gnav_wrap .gnav_list .gnav_item a {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap .gnav_list .gnav_item a {
    text-align: center;
    font-size: 1.5rem;
  }
}
.gnav .gnav_wrap .gnav_list .gnav_item a[target=_blank] {
  padding-right: 2rem;
  background: url(../img/common/ico_arw01.svg) no-repeat right 60%;
  background-size: 1.2rem;
}
.gnav .gnav_wrap .sns_list {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap .sns_list {
    gap: 1.8rem;
    margin-top: 4rem;
  }
}
.gnav .gnav_wrap .sns_list .sns_btn {
  position: relative;
  width: 4.2rem;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap .sns_list .sns_btn {
    width: 4.4rem;
  }
}
.gnav .gnav_wrap .sns_list .sns_btn img {
  width: 100%;
}
.gnav .gnav_wrap .sns_list .sns_btn .hov {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 769px) {
  .gnav .gnav_wrap .sns_list .sns_btn a:hover {
    opacity: 1;
  }
  .gnav .gnav_wrap .sns_list .sns_btn a:hover .hov {
    opacity: 1;
  }
}
@keyframes gnav_bg {
  from {
    opacity: 0;
    transform: scale(1.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes gnav_logo {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes gnav_box {
  from {
    opacity: 0;
    transform: translateX(3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.gnav.active .gnav_bg {
  animation: gnav_bg 0.8s ease forwards;
}
.gnav.active .logo {
  animation: gnav_logo 0.5s ease forwards;
  animation-delay: 0.6s;
}
.gnav.active .gnav_box {
  animation: gnav_box 0.5s ease forwards;
  animation-delay: 1s;
}

/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
.footer_wrap {
  position: relative;
  z-index: 10;
  padding: 14.5rem 0 3rem;
  background: #f7f7f7 url(../img/common/footer_bg01.svg) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .footer_wrap {
    padding: 7rem 0 1.5rem;
    background: #f7f7f7 url(../img/common/footer_bg01_sp.svg) no-repeat center top;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .footer_wrap .wrap {
    width: calc(100% - 3rem);
  }
}
.footer_wrap .logo {
  text-align: center;
}
.footer_wrap .logo img {
  width: 23.8rem;
}
@media screen and (max-width: 768px) {
  .footer_wrap .logo img {
    width: 13.3rem;
  }
}
.footer_wrap .footer_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.5rem;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_box {
    flex-direction: column;
    margin: 0 auto;
    width: calc(100% - 2rem);
    gap: 3.5rem;
  }
}
.footer_wrap .footer_box .logo {
  flex-shrink: 0;
}
.footer_wrap .footer_box .txt_box {
  width: 62.5rem;
  padding: 2.5rem 3rem;
  background: rgba(247, 247, 247, 0.9);
  border-radius: 1.8rem;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_box .txt_box {
    width: 100%;
    padding: 2rem 2.5rem;
    border-radius: 0.9rem;
  }
}
.footer_wrap .footer_box .txt_box .txt {
  font-size: 1.3rem;
  color: #e50012;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_box .txt_box .txt {
    font-size: 1.1rem;
  }
}
.footer_wrap .copy {
  margin-top: 8.5rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer_wrap .copy {
    margin-top: 8rem;
    text-align: left;
    font-size: 1.1rem;
  }
}
.footer_wrap .pagetop_btn {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
}
@media screen and (max-width: 768px) {
  .footer_wrap .pagetop_btn {
    bottom: 1.3rem;
    right: 1.5rem;
  }
}
.footer_wrap .pagetop_btn a {
  display: block;
  padding-right: 2.5rem;
  background: url(../img/common/ico_pagetop01.svg) no-repeat right center;
  background-size: 1.7rem;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer_wrap .pagetop_btn a {
    padding-right: 2rem;
    background-position: right calc(100% - 0.1rem);
    background-size: 1.3rem;
    font-size: 1.4rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  共通
* --------------------------------------------------------------------------------------------------*/
.txt {
  line-height: 1.8;
}

.bold {
  font-weight: bold;
}

.txt_up {
  text-transform: uppercase;
}

.txt_noup {
  text-transform: none;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

.ib {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .pc_ib {
    display: inline-block;
  }
  .pc_tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
  }
}
.tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .img img {
    width: 100%;
  }
  .sp_ib {
    display: inline-block;
  }
}
/* ------------------------------
	.box
------------------------------ */
.flex {
  display: flex;
  justify-content: space-between;
}

.link {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .link:hover {
    text-decoration: none;
  }
}

/* ------------------------------
	.effect
------------------------------ */
.page_effect {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  animation: effect-fade 1s ease forwards;
  animation-delay: 1s;
}
@keyframes effect-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page_effect .effect {
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .page_effect .effect {
    width: 8%;
  }
}
.page_effect .effect.left {
  left: 0;
}
.page_effect .effect.right {
  right: 0;
}
.page_effect .effect .fall {
  position: absolute;
  top: 0;
  pointer-events: none;
  will-change: transform;
  animation: fall linear infinite;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .page_effect .effect .fall {
    max-width: 1.5rem;
  }
}
.page_effect .effect .fall-wrap {
  animation: sway 4s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes fall {
  0% {
    transform: translateY(var(--startY)) rotate(var(--rotate));
  }
  100% {
    transform: translateY(100vh) rotate(var(--rotate));
  }
}
@keyframes sway {
  0% {
    transform: translateX(calc(var(--drift) * -1));
  }
  50% {
    transform: translateX(var(--drift));
  }
  100% {
    transform: translateX(calc(var(--drift) * -1));
  }
}

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

/* ------------------------------
	.fade
------------------------------ */
.fade .fade-in, .fade.fade-in {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade.fade-on .fade-in, .fade.fade-on.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fade .fade-img .img, .fade.fade-img .img {
  position: relative;
}
.fade .fade-img .img::before, .fade.fade-img .img::before {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #f7f7f7;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.fade.fade-on .fade-img .img::before, .fade.fade-on.fade-img .img::before {
  opacity: 0;
}

.scroll_hide {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.scroll_hide.hide {
  opacity: 0;
  visibility: hidden;
}

/* ------------------------------
	.btmlink
------------------------------ */
.btmlink {
  padding-top: 15rem;
}
@media screen and (max-width: 768px) {
  .btmlink {
    padding-top: 10rem;
  }
}
.btmlink .wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .btmlink .wrap {
    max-width: 112rem;
  }
}
@media screen and (max-width: 768px) {
  .btmlink .wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 2.2rem;
  }
}
.btmlink .btmlink_btn {
  flex-shrink: 0;
}
.btmlink .btmlink_btn a {
  position: relative;
  display: block;
  width: 32.7rem;
  height: 29rem;
  padding-top: 4rem;
  background: url(../img/common/btmlink_bg01.svg) no-repeat center center;
  background-size: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btmlink .btmlink_btn a {
    width: 15rem;
    height: 13.4rem;
    padding-top: 2rem;
  }
}
.btmlink .btmlink_btn a::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
  margin: auto;
  content: "";
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  background: url(../img/common/ico_arw02.svg) no-repeat center center;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .btmlink .btmlink_btn a::before {
    bottom: 1.4rem;
    width: 1.8rem;
    height: 1.8rem;
  }
}
.btmlink .btmlink_btn .btmlink_num {
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .btmlink .btmlink_btn .btmlink_num {
    margin-bottom: 1.2rem;
  }
}
.btmlink .btmlink_btn .btmlink_num img {
  width: 5.9rem;
}
@media screen and (max-width: 768px) {
  .btmlink .btmlink_btn .btmlink_num img {
    width: 2.7rem;
  }
}
.btmlink .btmlink_btn .btmlink_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  gap: 0.5rem;
  text-align: center;
  font-weight: 900;
  font-size: 3rem;
  color: #e50012;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .btmlink .btmlink_btn .btmlink_ttl {
    min-height: 3.5rem;
    font-size: 1.4rem;
  }
}
.btmlink .btmlink_btn.link01 .btmlink_ttl img {
  width: 26.2rem;
}
@media screen and (max-width: 768px) {
  .btmlink .btmlink_btn.link01 .btmlink_ttl img {
    width: 12.5rem;
  }
}
.btmlink .btmlink_btn.link03 .btmlink_ttl img {
  width: 15.8rem;
}
@media screen and (max-width: 768px) {
  .btmlink .btmlink_btn.link03 .btmlink_ttl img {
    width: 10rem;
  }
}
.btmlink .btmlink_btn.link04 a::before {
  transform: rotate(-45deg);
}
.btmlink .btmlink_btn.link04 .btmlink_ttl img {
  width: 5rem;
}
@media screen and (max-width: 768px) {
  .btmlink .btmlink_btn.link04 .btmlink_ttl img {
    width: 2.3rem;
  }
}
.btmlink .pageback_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .btmlink .pageback_btn {
    margin-top: 7rem;
  }
}
.btmlink .pageback_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 900;
  font-size: 2.4rem;
  color: #e50012;
}
@media screen and (max-width: 768px) {
  .btmlink .pageback_btn a {
    gap: 0.8rem;
    font-size: 1.5rem;
  }
}
.btmlink .pageback_btn a::before {
  content: "";
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  background: url(../img/common/ico_arw02.svg) no-repeat center center;
  background-size: 100%;
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .btmlink .pageback_btn a::before {
    width: 2rem;
    height: 2rem;
  }
}