@charset "utf-8";
/*
header
*/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 1920px;
	z-index: 100;
	transition: all 0.3s ease-out;
}
.header_contents {
	height: 50px;
	background: #fff;
}
.logo {
	padding: 12px 0 0 18px;
}
.logo img {
	width: 64px;
	vertical-align: middle;
}
.gnav_wrap {
	display: flex;
	gap: 0 71px;
}
.gnav_list li a {
	color: #6A6C72;
}
.gnav_sns_list {
	position: fixed;
	top: 15px;
	right: 66px;
	display: flex;
	gap: 0 10px;
}
.gnav_sns_list img {
	vertical-align: top;
}
.icon_instagram {
	width: 20px;
}
.icon_x {
	width: 20px;
}
.header_logo_language_wrap {
	display: flex;
	gap: 0 20px;
}
.language_switct_btn {
	display: flex;
	align-items: center;
	gap: 0 5px;
	padding: 10px 0 0;
}
.language_txt {
	font-size: 16px;
	color: #6A6C72;
}
.language_txt_off {
	opacity: .6;
}
.language_line {
	color: #6A6C72;
	opacity: .6;
}
@media only screen and (min-width:768px) {
	.language_txt {
		font-size: 20px;
	}
}
@media only screen and (min-width:1024px) {
	header {
		position: fixed;
	}
	.header_scroll  {
		transform: translateY(-30px);
	}
	.header_contents {
		display: flex;
		justify-content: space-between;
		height: auto;
		padding: 0 0 20px;
	}
	.logo {
    padding: 50px 0 0 40px;
  }
  .logo img {
    width: 100px;
  }
	.gnav_list {
		display: flex;
		gap: 0 45px;
		padding: 60px 0 0;
	}
	.gnav_sns_list {
		position: unset;
		gap: 0 15px;
		padding: 60px 50px 0 0;
	}
	.icon_instagram {
		width: 30px;
		transition: all 0.5s ease-out;
	}
	.icon_x {
		width: 31px;
		transition: all 0.5s ease-out;
	}
	.gnav_sns_list a:hover img {
		transform: scale(1.05);
	}
	.header_logo_language_wrap {
		gap: 0 50px;
	}
	.language_switct_btn {
		padding: 50px 0 0;
	}
}
@media only screen and (min-width:1680px) {
	.header_scroll  {
		transform: translateY(-65px);
	}
	.logo {
    padding: 86px 0 0 75px;
  }
  .logo img {
    width: 127px;
  }
	.gnav_list {
		gap: 0 72px;
		padding: 98px 0 0;
	}
	.gnav_sns_list {
		gap: 0 19px;
		padding: 100px 78px 0 0;
	}
	.language_switct_btn {
		padding: 90px 0 0;
	}
}
/*
展開メニュー
*/
.flyout_gnav_wrap {
  width: 100%;
  overflow-x: hidden;
}
.flyout_gnav {
  position: fixed;
  top: 0;
  z-index: 103;
  display: none;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  overflow-x: hidden;
  overflow-y: scroll;
}
.flyout_gnav_inner {
	display: flex;
	flex-direction: column;
  width: 315px;
	margin: auto;
  padding: 50px 0;
}
.flyout_gnav_list li + li {
	margin: 10px 0 0;
}
.flyout_gnav_list a {
	font-size: 18px;
	color: #6A6C72;
}
.flyout_sns_list {
	display: flex;
	align-items: center;
	gap: 0 20px;
	margin: 40px 0 0;
}
.flyout_sns_list a {
	display: flex;
}
.flyout_sns_list .icon_instagram,
.flyout_sns_list .icon_x {
	width: 25px;
}
@media only screen and (min-width: 1024px) {
  .flyout_sns_list {
    display: none;
  }
}
/*
ハンバーガーボタン
*/
.hamburger {
  position: fixed;
	right: 15px;
	top: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
	width: 20px;
	height: 12px;
  z-index: 104;
	font-weight: bold;
  cursor: pointer;
	transition: all .3s ease;
}
.hamburger_bar {
  position: absolute;
  top: 6px;
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #3A3A3A;
	border-radius: 10px;
}
.hamburger_bar:after,
.hamburger_bar:before {
  position: absolute;
  display: inline-block;
  content: " ";
  width: 100%;
  height: 2px;
  background: #3A3A3A;
	border-radius: 10px;
}
.hamburger_bar:after {
  top: -6px;
  transition: top 300ms 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms cubic-bezier(.23, 1, .32, 1)
}
.hamburger_bar:before {
  bottom: -6px;
  transition: bottom 300ms 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms cubic-bezier(.23, 1, .32, 1)
}
.hamburger_bar.animate {
	width: 21px;
  background: rgba(0, 0, 0, 0)
}
.hamburger_bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
  background: #3A3A3A
}
.hamburger_bar.animate:before {
	width: 100%;
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
  background: #3A3A3A
}
.hamburger_txt {
	margin: 26px 0 0;
	color: #3A3A3A;
	font-size: 12px;
	font-weight: normal;
}
@media only screen and (min-width: 1024px) {
	.hamburger {
		display: none;
		right: 30px;
		top: 10px;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		border: solid #fff 2px;
	}
	.hamburger_bar {
		top: 19px;
	}
	.hamburger_txt {
		margin: 22px 0 0;
	}
}
@media only screen and (min-width: 1280px) {
	.hamburger_bar {
		top: 21px;
	}
	.hamburger_bar.animate {
		width: 21px;
	}
	.hamburger_bar:after {
		top: -7px;
	}
	.hamburger_bar:before {
		bottom: -7px;
	}
	.hamburger_txt {
		margin: 30px 0 0;
		font-size: 13px;
	}
}
@media only screen and (min-width: 1680px) {
	.hamburger_bar {
		top: 28px;
		font-size: 14px;
	}
	.hamburger_txt {
		margin: 24px 0 0;
	}
}
/* main */
.main {
	padding: 50px 0 0;
}
@media only screen and (min-width: 1024px) {
	.main {
		padding: 96px 0 0;
	}
}
@media only screen and (min-width: 1680px) {
	.main {
		padding: 144px 0 0;
	}
}
/*
フッター
*/
.footer_wrap {
	padding: 47px 0 50px;
	background: #F8F8F8;
}
.footer_body {
	width: 100%;
	padding: 0 33px;
}
.footer_contents {
	display: flex;
	flex-direction: column;
	gap: 36px 0;
}
.footer_txt_01 {
	color: #000;
	font-size: 10px;
	font-weight: 400;
	margin: 39px 0 0;
}
.footer_txt_02 {
	font-size: 10px;
	font-weight: 400;
	margin: 12px 0 0;
}
.footer_logo_area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 20px;
}
.footer_img_01 {
	width: 72px;
}
.footer_img_02 {
	width: 90px;
}
.footer_img_03 {
	width: 75px;
}
.footer_copy {
	padding: 90px 0 24px;
	font-size: 10px;
	font-weight: 400;
	text-align: center;
}
@media only screen and (min-width: 576px) {
	.footer_txt_01 {
		font-size: 16px;
	}
	.footer_txt_02 {
		font-size: 16px;
	}
	.footer_copy {
		font-size: 14px;
	}
}
@media only screen and (min-width: 768px) {
	.footer_wrap {
		padding: 47px 0 100px;
	}
	.footer_txt_wrap {
		width: 580px;
		margin: auto;
	}
	.footer_contents {
		gap: 50px 0;
	}
	.footer_txt_01 {
		font-size: 16px;
	}
	.footer_txt_02 {
		font-size: 16px;
	}
	.footer_logo_area {
		gap: 0 80px;
	}
	.footer_img_01 {
		width: 138px;
	}
	.footer_img_02 {
		width: 180px;
	}
	.footer_img_03 {
		width: 144px;
	}
}
@media only screen and (min-width: 1280px) {
	.footer_wrap {
		padding: 35px 0 79px;
	}
	.footer_body {
		padding: 0 60px;
	}
	.footer_contents {
		flex-direction: row;
		gap: 0;
		justify-content: space-between;
	}
	.footer_txt_wrap {
		width: unset;
		margin: 0;
	}
	.footer_txt_01 {
		font-size: 20px;
		margin: 79px 0 0;
	}
	.footer_txt_02 {
		font-size: 20px;
		margin: 238px 0 0;
	}
	.footer_logo_area {
		flex-direction: column;
		justify-content: flex-start;
		gap: 50px 0;
		margin: 27px 0 0;
	}
	.footer_img_02 {
		width: 140px;
	}
	.footer_copy {
		display: block;
		padding: 88px 0 30px;
		font-size: 20px;
		font-weight: 400;
	}
}
@media only screen and (min-width: 1400px) {
	.footer_body {
		width: 1307px;
		padding: 0;
		margin: auto;
	}
}
/*
共通
*/
.sec_ttl_wrap {
	padding: 0 33px;
}
/* 英字タイトル */
.sec_ttl_en {
	color: #555555;
	font-size: 38px;
	line-height: 1;
}
@media screen and (min-width: 768px) {
	.sec_ttl_en {
		font-size: 48px;
	}
}
@media screen and (min-width: 1280px) {
	.sec_ttl_wrap {
		padding: 0 60px;
	}
	.sec_ttl_en {
	font-size: 40px;
	}
}
/* ボタン */
.btn_01 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background: #F58158;
	color: #fff;
	font-weight: 500;
	font-size: 17px;
	padding: 10px 20px;
	box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.25);
}
@media screen and (min-width: 768px) {
	.btn_01 {
		font-size: 24px;
		padding: 11px 39px;
		transition: all 0.3s ease-out;
	}
}
@media screen and (min-width: 1024px) {
	.btn_01:hover {
		transform: scale(0.95);
	}
}
@media screen and (min-width: 1280px) {
	.btn_01 {
		font-size: 20px;
	}
}
/*
ローディング
*/
#loading_wrap {
	width: 100%;
	height: 100vh;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 9999;
}
#loading_wrap.loaded {
  display: none;
}
.loading-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  height: 100px;
}
.loading-dots span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
}