@charset "UTF-8";

/* ==========================================================================================
#  Header
========================================================================================== */

/* .l-header
--------------------------------------------- */
.l-header {
	background: rgba(255, 255, 255, 0.9);
	position: fixed;
	top: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
	width: 100%;
	z-index: 1000;
}
.l-header.open {
	border-bottom: none;
	height: 80px;
}

@media screen and (min-width: 1200px) {
  .l-header {
    height: 160px;
  }
  main {
    margin-top: 160px;
  }
  #top .l-header {
    height: 120px;
  }
  #top main {
    margin-top: 160px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1199.98px) {
  .l-header {
    height: 13.333vw;
  }
  .l-header + main {
    margin-top: 13.333vw;
  }
  #top .l-header {
    height: 10vw;
  }
  #top .l-header + main {
    margin-top: 13.333vw;
  }
}
@media screen and (max-width: 599.98px) {
  .l-header {
    height: 23.125vw;
  }
  .l-header + main {
    margin-top: 24vw;
  }
}

/* .l-header__inner
--------------------------------------------- */
.l-header__inner {
	display: flex;
  align-items: center;
	height: 100%;
	justify-content: space-between;
	left: 50%;
	max-width: 1480px;
	position: relative;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: cubic-bezier(1, 0, 0, 1);
	transition: cubic-bezier(1, 0, 0, 1);
	z-index: 11;
}
.l-header.fixed .l-header__inner{
	top: 0!important;
}
.l-header.open .l-header__inner {
	pointer-events: none;
}



@media screen and (min-width: 1200px) {
  #top .l-header__inner {
    top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199.98px) {
  #top .l-header__inner {
    top: 1.667vw;
  }
}
@media screen and (min-width: 600px) and (max-width: 767.98px) {
  #top .l-header__inner {
    top: 0.8vw;
  }
}
@media screen and (min-width: 600px) {
  .l-header__inner {
    width: calc(100% - 6vw);
  }
}
@media screen and (max-width: 599.98px) {
  .l-header__inner {
    width: calc(100% - 9vw);
  }
}

/* ==========================================================================================
#  Header - Logo
========================================================================================== */
.l-header__logo {
  height: auto;
  position: relative;
	z-index: 10;
  margin-bottom: 0;
  transition: all;
}
.l-header__logo a {
  display: block;
}
@media screen and (min-width: 1200px) {
  .l-header__logo {
    width: 320px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1199.98px) {
  .l-header__logo {
    width: 26.667vw;
  }
}
@media screen and (max-width: 599.98px) {
  .l-header__logo {
    width: 51.75vw;
  }
}

.open .l-header__logo {
	z-index: 0;
}
.open .l-header__logo a img {
	opacity: 0;
}
.l-header.open .l-header__inner .l-header__logo {
	opacity: 0;
}
.l-header.open .l-header__inner .l-header__logo a {
	pointer-events: none;
}

/* ==========================================================================================
#  Hamburger menu
========================================================================================== */
.c-nav__btn {
	cursor: pointer;
	outline: 0;
	z-index: 100;
}
.c-nav__btn div {
	outline: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-nav__btn div span {
	background: #1e1e1e;
	display: block;
	left: 0;
	-webkit-transition: all 0.25s;
	transition: all 0.25s;
	width: 100%;
}

/* Open */
.l-header.open .c-nav__btn div {
	display: block;
  position: relative;
}
.l-header.open .c-nav__btn div span {
  position: absolute;
  top: 50%;
  left: 50%;
}
.l-header.open .c-nav__btn div span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header.open .c-nav__btn div span:nth-of-type(2) {
	opacity: 0;
}
.l-header.open .c-nav__btn div span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header.open .c-nav__btn {
  position: relative;
	z-index: 100;
  pointer-events: auto;
}
@media screen and (min-width: 1000px) {
  .c-nav__btn div {
    height: 32px;
    width: 32px;
  }
  .c-nav__btn div span {
    height: 4px;
  }
}
@media screen and (min-width: 600px) and (max-width: 999.98px) {
  .c-nav__btn div {
    height: 3.2vw;
    width: 3.2vw;
  }
  .c-nav__btn div span {
    height: 0.4vw;
  }
  .open .c-nav__btn div {
    height: 36px;
    width: 36px;
  }
  .open .c-nav__btn div span {
    height: 4px;
  }
}
@media screen and (max-width: 599.98px) {
  .c-nav__btn div {
    height: 6.4vw;
    width: 6.4vw;
  }
  .c-nav__btn div span {
    height: 0.8vw;
  }
  .open .c-nav__btn div {
    height: 8.5vw;
    width: 8.5vw;
    top: -1.25vw;
  }
}


/* ==========================================================================================
#  Navigation - Default
========================================================================================== */
.c-nav__header__main {
	display: none;
}
.l-header.open .l-header__inner .c-nav__header__main {
	opacity: 0;
}
.l-header.open .l-header__inner .c-nav__header__main a {
	pointer-events: none;
}

@media screen and (min-width: 1200px) {
	.c-nav__header__main {
		display: flex;
		justify-content: space-between;
    /* column-gap: 35px; */
    column-gap: 31px;; /* 修正 */
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1000px) {
  .c-nav__header__wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 67px;
  }
  .c-nav__header__main li {
		letter-spacing: 0.075em;
	}
	.c-nav__header__main li a {
		line-height: 1;
		padding-bottom: 1em;
		padding-top: 1em;
		text-align: center;
		-webkit-transition: display 1s linear;
		transition: display 1s linear;
		font-weight: bold;
	}
	.c-nav__header__main li a:hover {
		opacity: 0.7;
	}
}
@media screen and (min-width: 1000px) and (min-width: 1600px) {
  .c-nav__header__main li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}



/* ==========================================================================================
# Navigation - Open
========================================================================================== */

/* ------------------------------
	Navigation - Open - Wrap
------------------------------ */
.c-nav__global__wrap {
	-webkit-overflow-scrolling: touch;
	display: block;
	height: 0;
	left: 0;
	opacity: 0;
	overflow-y: hidden;
	position: fixed;
	scrollbar-face-color: #999;
	scrollbar-track-color: #999;
	top: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
	width: 100vw;
	z-index: 0;
}
.open .c-nav__global__wrap {
	background: #fff;
	height: 100vh;
	opacity: 1;
	overflow-y: scroll;
	visibility: visible;
	z-index: 10;
}

/* ------------------------------
	Navigation - Open - Main
------------------------------ */
.c-nav__global li {
	list-style: none;
	margin-bottom: 1em;
	width: auto;
}
.c-nav__global li a {
	color: #1e1e1e;
	display: block;
	line-height: 1.5;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
  font-weight: bold;
}
.c-nav__global li a span:nth-of-type(1) {
  font-size: 18px;
	font-weight: 600;
  margin-bottom: 0.2em;
  display: inline-block;
}
.c-nav__global li a span:nth-of-type(2) {
  font-size: 14px;
	letter-spacing: 0.1em;
  font-weight: 400;
}
.c-nav__global li a span:nth-of-type(2)::before {
	content: "\A";
	white-space: pre;
}

@media screen and (min-width: 600px) {
  .c-nav__global {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
    padding-top: 197px;
    column-gap: 1em;
    max-width: 955px;
    width: calc(100% - 6vw);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 767.98px) {
  .c-nav__global {
    column-gap: 2em;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599.98px) {
  .c-nav__global {
    text-align: center;
    padding-top: 20.5vw;
  }
  .c-nav__global li a span:nth-of-type(1) {
    font-size: 4.05vw;
    margin-bottom: 0.1em;
  }
  .c-nav__global li a span:nth-of-type(2) {
    font-size: 3.15vw;
  }
  .c-nav__global li {
    margin-bottom: 0;
  }
  .c-nav__global li + li{
    margin-top: 11.25vw;
  }
  .open .c-nav__global__wrap {
    height: 100vh; /* 古いOS向けフォールバック */
    height: 100dvh; /* iOS15.4、Android最新版以降 */
  }
}


/* ------------------------------
	Navigation - Open - 2段目
------------------------------ */
.c-nav__global__subnav__wrap {
	display: flex;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 52px;
  align-items: center;
  max-width: 955px;
  width: calc(100% - 6vw);
  margin-left: auto;
  margin-right: auto;
}
.c-nav__global__subnav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  margin-bottom: 0;
  column-gap: 2em;
}
.c-nav__global__subnav a {
	color: #1e1e1e;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

/* SNS */
.l-header__sns{
  display: flex;
  align-items: center;
  margin-top: 4px;
}
.l-header__sns__title{
  font-size: 12px;
  letter-spacing: 0.08em;
}
.l-header__sns__item{
  margin-left: 20px;
  width: 22px;
}


@media screen and (max-width: 599.98px) {
  .c-nav__global__subnav__wrap {
    flex-direction: column-reverse;
    row-gap: 15.5vw;
    padding-top: 17.5vw;
    padding-bottom: 15vw;
  }
  .c-nav__global__subnav {
    column-gap: 2.5em;
    justify-content: space-between;
    margin: auto;
  }
  .c-nav__global__subnav a {
    font-size: 3.5vw;
  }
  /* .c-nav__global__subnav__wrap .copyright {
    font-size: 3vw;
    margin-top: 2.25vw;
  } */
  .l-header__sns{
    margin-top: 1vw;
  }
  .l-header__sns__title{
    font-size: 3vw;
  }
  .l-header__sns__item{
    margin-left: 5vw;
    width: 5.5vw;
  }
}


/* ------------------------------
	Navigation - Open - 3段目
------------------------------ */
.c-nav__global__link1__wrap__bg {
  padding-top: 55px;
  padding-bottom: 67px;
}

.c-nav__global__link1__wrap {
  max-width: 955px;
  width: calc(100% - 6vw);
  margin-left: auto;
  margin-right: auto;
}

.c-nav__global__link1 {
	display: flex;
  justify-content: space-between;
  column-gap: 2em;
}

.c-nav__global__link1 li {
	position: relative;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.c-nav__global__link1 li a {
	color: #1e1e1e;
	font-size: 14px;
}

.c-nav__global__link1 li a::after {
	-o-background-size: contain;
	-webkit-background-size: contain;
	background-image: url(/assets/common/images/icon-link-blank.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	margin-left: 1em;
	width: 1.04em;
  height: 1.04em;
}

.c-nav__global__link1__title{
  font-size: 16px;
  margin-bottom: 18px;
}

@media screen and (min-width: 600px) and (max-width: 999.98px) {
  .c-nav__global__link1 {
    flex-wrap: wrap;
  }
  .c-nav__global__link1::after{
    content:"";
    display: block;
    width: calc(100% / 3);
  }
}
@media screen and (max-width: 599.98px) {
  .c-nav__global__link1__wrap {
    text-align: center;
  }
  .c-nav__global__link1 {
    flex-direction: column;
    row-gap: 4.5vw;
  }
  .c-nav__global__link1__wrap__bg {
    padding-top: 15.25vw;
    padding-bottom: 19vw;
  }
  .c-nav__global__link1__title {
    font-size: 4vw;
    margin-bottom: 7vw;
  }
  .c-nav__global__link1 li a {
    font-size: 3.5vw;
  }
}


/* ------------------------------
	Navigation - Open - ロゴ
------------------------------ */
.c-nav__global__logo__wrap {
  padding-top: 90px;
  padding-bottom: 110px;
}
.c-nav__global__logo {
  margin-left: auto;
  margin-right: auto;
  max-width: 380px;
  width: 50%;
}
.c-nav__global__logo a{
  display: block;
}
@media screen and (max-width: 599.98px) {
  .c-nav__global__logo__wrap {
    display: none;
  }
}



/* ==========================================================================================
#  Button - Contact
========================================================================================== */

/* Default */
.c-nav__header__main__contact{
  /* margin-left: 4px; */
  margin-left: 7px; /* 修正 */
  padding-left: 50px;
  padding-right: 22px;
  background-image: url(/assets/common/images/icon-mail.svg);
  background-repeat: no-repeat;
  background-position: 18px 50%;
  background-size: 20.41px 18.53px;
	transition: 0.4s opacity;
}

/* Open */
.open .c-nav__global__subnav__contact {
  padding-left: 27px;
  padding-right: 101px;
  padding-top: 4px;
  padding-bottom: 5px;
  background-image: url(/assets/common/images/icon-mail.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 27px) 50%;
  background-size: 20.41px 18.53px;
  min-width: 240px;
  font-size: 16px;
  transition: 0.4s opacity;
  text-decoration: none;
}
@media screen and (max-width: 599.98px) {
  .open .c-nav__global__subnav__contact {
    padding-left: 6.75vw;
    padding-right: 25.25vw;
    padding-top: 1vw;
    padding-bottom: 1.25vw;
    background-position: calc(100% - 6.75vw) 50%;
    background-size: 5.103vw 4.633vw;
    min-width: 60vw;
    font-size: 4vw;
  }
}



