@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
/* CSS Document */

.u-line::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background-color: #A2A2A2;
}
.u-line2::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width:100%;
	height: 1px;
	background-color: #A2A2A2;
}
/* TOPとの共通部分 */
.color-b {
  color: #222222;
}
.default_txt3 {
  font-size: clamp(12px, 1.5vw, 14px);
}
/*
.box_wrap {
  border-bottom: 1px solid #A2A2A2;
}
*/
.icon-before3::before {
  content: "◆";
  display: inline-block;
  color: #0074A2;
  font-size: 16px;
  margin-right: 2px;
  margin-left: -16px;
}
.icon-before4::before {
  content: "●";
  display: inline-block;
  color: #0074A2;
  font-size: 12px;
  margin-right: 2px;
  margin-left: -16px;
}
.icon-before5::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-image: url("https://pirkaponpe.com/system_panel/uploads/images/check.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 3px;
  vertical-align: middle;
}
html{
}
body{
	font-family: "Zen Old Mincho","Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	background-color: #F1F1F1;
	color: #707070;
    letter-spacing: 0.1em;
}
#chatbot-btn{
	bottom: -30px!important;
}

body .bg_img_wrap {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img{
	display: none;
}
body .bg_img_wrap2 {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img{
	display: none;
}

a{
	display: inline-block;
	transition: ease 0.3s;
}
a:hover{
	opacity: 0.5;
}
a p,a,a i{
	color: #000000;
}
.font-medium{font-weight: 500;}
.font-semibold{font-weight: 600;}
.font-black{font-weight: 900;}

.pd_wrap{
	padding: 100px 80px 0;
}
.pd_wrap_all{
	padding: 100px 80px 100px;
}
.pd_wrap_side{
	padding-left: 60px;
	padding-right: 60px;
}

.cate_wrap > .cate{
	padding-top: 100px;
}

/* ---------- common ---------- */

/* ---------- header ---------- */
.header{
}

/* ---------- footer ---------- */

/* ANIME */
.sc-anime.topin.on{
	opacity:0;
	transform: translateY(-50px);
}
.sc-anime.topin.on.active{
	animation-name: topin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.bottomin.on{
	opacity:0;
	transform: translateY(50px);
}
.sc-anime.bottomin.on.active{
	animation-name: bottomin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.leftin.on{
	opacity:0;
	transform: translateX(-50px);
}
.sc-anime.leftin.on.active{
	animation-name: leftin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.rightin.on{
	opacity:0;
	transform: translateX(50px);
}
.sc-anime.rightin.on.active{
	animation-name: rightin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.fadein.on{
	opacity:0;
}
.sc-anime.fadein.on.active{
	animation-name: fadein;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin.on{
	opacity:0;
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin.on.active{
	animation-name: blurin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin2.on{
	opacity:0;
	transform: translateY(50px);
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin2.on.active{
	animation-name: blurin2;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

@keyframes topin {
	0% {
		opacity:0;
		transform: translateY(-50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes bottomin {
	0% {
		opacity:0;
		transform: translateY(50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes leftin {
	0% {
		opacity:0;
		transform: translateX(-50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes rightin {
	0% {
		opacity:0;
		transform: translateX(50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes upin {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes fadein {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}
@keyframes fadeout {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes blurin {
	0% {
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}
@keyframes blurin2 {
	0% {
		opacity: 0;
		transform: translateY(50px);
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}

/* color */
.txt-color-normal{color: #222222;}
.txt-white{color: #ffffff;}
.txt-red{color: red;}
.txt-color1{color: #FFE93C}
.txt-color2{color: #F1F1E9}
.txt-color3{color: #021745}
.txt-color4{color: #EBF5E5}
.bg-white{background-color: #ffffff;}
.bg-black{background-color: black}
.bg-color1{background-color: #FFE93C}
.bg-color2{background-color: #F1F1E9}
.bg-color3{background-color: #021745}
.bg-color4{background-color: #EBF5E5}
.border-color1{border-color: #FFE93C}
.border-color2{border-color: #F1F1E9}
.border-color3{border-color: #021745}
.border-color4{border-color: #EBF5E5}

.hvr-txt-color-normal:hover{color: #222222;}
.hvr-txt-white:hover{color: #ffffff;}
.hvr-txt-red:hover{color: red;}
.hvr-txt-color1:hover{color: #FFE93C}
.hvr-txt-color2:hover{color: #F1F1E9}
.hvr-txt-color3:hover{color: #021745}
.hvr-txt-color4:hover{color: #EBF5E5} 
.hvr-bg-white:hover{background-color: #ffffff;}
.hvr-bg-black:hover{background-color: black}
.hvr-bg-color1:hover{background-color: #FFE93C}
.hvr-bg-color2:hover{background-color: #F1F1E9}
.hvr-bg-color3:hover{background-color: #021745}
.hvr-bg-color4:hover{background-color: #EBF5E5}
.hvr-border-color1:hover{border-color: #FFE93C}
.hvr-border-color2:hover{border-color: #F1F1E9}
.hvr-border-color3:hover{border-color: #021745}
.hvr-border-color4:hover{border-color: #EBF5E5}



/* ---------- font-size ---------- */
.en_title{
	font-family: "EB Garamond",  sans-serif;
	font-size: 40px;
	letter-spacing: 0.15em;
	font-weight: 400;
	line-height: normal;
}
.en_title2{
	font-family: "EB Garamond",  sans-serif;
	font-size: 50px;
	font-weight: 900;
}
.default_title{ 
	font-size: 30px;
}
.default_title2{
	font-size: 22px;
    line-height: 2;
}
.default_title3{
	font-size: 20px;
}

.default_txt{
	font-size: 16px;
	line-height: 2.5;
	font-weight: 400;
}
.default_txt2{
	font-size: 14px;
	line-height: 2;
}
.en_txt{
    font-family: "EB Garamond", serif;
    position: relative;
    text-align: center;
    font-size: 30px;
    color: #aaa;
    letter-spacing: 0.2em;
    padding: 0 50px;
    display: inline-block;
	line-height: normal;
}
.en_txt2{
    font-family: "EB Garamond", serif;
    font-size: 22px;
	letter-spacing: -0.2px;
	color: #818181;
}
.en_txt3{
    font-family: "EB Garamond", serif;
    font-size: 20px;
	letter-spacing: -0.3px;
	color: #818181;
}

/* 左の線 */
.en_txt::before,
.en_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: #ccc;
}

/* before = 左側の線 */
.en_txt::before {
  left: 0;
  transform: translateY(-50%);
}

/* after = 右側の線 */
.en_txt::after {
  right: 0;
  transform: translateY(-50%);
}

.txt-color1{color: #ADAAAA}
.txt-color2{color: #707070}
.txt-color3{color: #222222}

.font-EB{
	font-family: "EB Garamond",  sans-serif;
}
.font-zen{
  font-family: "Zen Old Mincho", serif;
}
.font-josefin{
	font-family: "Josefin Sans",  sans-serif;
}
.font-noto{
	 font-family: "Noto Sans JP",  sans-serif;
    color: #707070;
}

/* ---------- side bg ---------- */
body.on .bg-left,body.on .bg-right {
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc(50% - 300px);
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-left {
    left: 0;
}
.bg-right {
    right: 0;
}
body:not(.on) .bg-left,body:not(.on) .bg-right{
      position: static;
	display: inline-block;
    width: 40%;
  height: 500px;
}
body:not(.on) .bg-left img,body:not(.on) .bg-right img{
  width:100%;
  height: auto;
}
/* ---------- pagetitle ---------- */

.pagetitle{
    max-width: 600px;
	align-items: center;
	justify-content: space-between;
    margin: 0 auto;
	padding-top: 10px;
	padding-right: 40px;
	padding-left: 40px;
    z-index: 1;
	gap: 20px;
}
.pagetitle .titlebox {
	width: calc(50% - 20px);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.pagetitle .imgbox{
	width: calc(50% - 20px);
	aspect-ratio: 1 / 1;
}
.pagetitle .imgbox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 50%;
}
.pagetitle2 .title_wrap{
	justify-content: flex-start;
}
/* ---------- main ---------- */
.main-wrap{
    max-width: 600px;
	margin: 0 auto;
}
.txtbg-red{
	padding: 30px 20px;
	background-color: #A00912;
	border-radius: 10px;
}
.title-style1{
	flex-direction: column;
}
.title-line{
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 40px;
}
.title-line::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	height: 10px;
	background-image: radial-gradient(#fff 20%, transparent 21%);
	background-size: 8px 8px;
	background-repeat: repeat-x;
}
/* ---------- more ---------- */
.header{
	position: fixed;
	top: 0;
	left: 0;
	justify-content: space-between;
	box-sizing: border-box;
	z-index: 9999;
}
.header .logo{
width: clamp(100px, 50vw, 300px);
	margin: 0 auto;
}

.mainmenu_box{
	position: fixed;
	top: 0;
	right: 0;
	width: calc(50% - 300px);
	height: 100%;
	padding: 5% 20px;
	overflow: auto;
}
.mainmenu_box .mene_box{
	max-width: 280px;
	margin: 0 auto;
}
.mainmenu_box .mene_box .titlebox{
	gap: 10px;
	margin-bottom: 20px;
}
.mainmenu_box .mene_box .titlebox img{
	width: 20px;
}
.mainmenu_box .mene_box .nav_box{
	border-radius: 8px;
	background-color: #fff;
	padding: 30px;
}
.mainmenu_box .mene_box .nav_box .ul{
	margin-bottom: 20px;
    padding-left:20px;
}
.mainmenu_box .mene_box .nav_box .ul .li{
	padding: 15px 0;
}
.mainmenu_box .mene_box .nav_box .ul .li a{
	justify-content: flex-start;
	gap: 15px;
}
 a .icon{
	width: 21px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border: 1px solid #d9d9d9;
}
a .icon img{
	width: 16px;
	transition: ease 0.3s;
margin-left: -18px;
}
a:hover .icon img{
  transform: translateX(5px);
}
.mainmenu_box .mene_box .nav_box .ul .li p{
	font-size: 18px;
  font-family: "EB Garamond", serif;
    	color: #222222;
}

.menu-bt{display: none;}
.sns-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.sns-icons a img {
  width: 24px;
  height: 24px;
}

.lang-buttons {
  display: none;
}

.lang-btn {
  padding: 6px 20px;
  border-radius: 20px;
  border: none;
  background-color: #f1f1f1;
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

.lang-btn.active {
  background-color: #bfa256;
  color: white;
}
.lang-buttons {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 10px;
}
.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 60px;
    border: 1px solid #A2A2A2;
    border-radius: 9999px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-detail:hover {
  background-color: #A2A2A2;
}
.btn-detail:hover p {
  color: #fff;
}
.footer {
  max-width: 600px;
  margin: 0 auto;
  background-color: #F1F1F1;
  padding-top: 100px;
}
.footer .leftbox {
  width: 55%;
  height: 100%;
}
.footer .rightbox {
  width: 45%;
  margin-top: 100px;
  margin-bottom: auto;
}
.footer .shop-button {
  position: relative;
  bottom: 0px;
  right: 0px;
  z-index: 10;
}
.footer .shop-button .circle-button {
    width: clamp(140px, 20vw, 210px);
    height: clamp(140px, 20vw, 210px);
    background-color: #217C9F;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    gap: 18px;
}
.footer .shop-button .circle-button p {
    color: #FFF;
    font-size: clamp(16px, 2vw, 20px);
}

.footer .mainmenu_box {
  display: block;
  position: relative;
  width: 100%;
  overflow: auto;
  padding: 0;
}
.footer .mainmenu_box .mene_box .nav_box {
  background-color: #F1F1F1;
  padding: 0;
}
.footer .logo {
  font-family: "Aoboshi One", serif;
  color: #217C9F;
}
.footer .footer_menu {
  align-items: flex-start;
  gap: 50px;
  padding: 50px 30px;
  margin: 50px 0 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.footer .footer_menu .ul {
  width: calc(100% / 2 - 50px / 2);
}
.footer .footer_menu .ul .li:not(:last-of-type) {
  margin-bottom: 40px;
}
.footer .footer_menu .ul .li a > .flex {
  gap: 10px;
}
.footer .footer_menu .ul .li .circle {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 20px;
  height: 20px;
}
.footer .footer_menu .ul .li .circle img {
  width: 50%;
  transition: ease 0.3s;
}
.footer .footer_menu .ul .li a:hover .circle img {
  transform: translateX(1px);
}
.footer .shop-button .circle-button {
    width: 210px;
    height: 210px;
}
.footer p {
    color: #707070;
}
/* 追加 */
.color-b {
  color: #222222;
}

.default_txt3 {
  font-size: clamp(12px, 1.5vw, 14px);
}

.icon-before::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-image: url("https://pirkaponpe.com/system_panel/uploads/images/icon-pin.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 3px;
  vertical-align: middle;
}
.icon-before2::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-image: url("https://pirkaponpe.com/system_panel/uploads/images/icon-tag.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 3px;
  vertical-align: middle;
}
.icon-before3::before {
  content: "◆";
  display: inline-block;
  color: #0074A2;
  font-size: 16px;
  margin-right: 2px;
  margin-left: -16px;
}
.icon-before4::before {
  content: "●";
  display: inline-block;
  color: #0074A2;
  font-size: 12px;
  margin-right: 2px;
  margin-left: -16px;
}
/* 追加 */
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
@media screen and (min-width: 1281px){
	.menu-wrap{display: none!important;}
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.pd_wrap{
		padding: 100px 60px 0;
	}
	.pd_wrap_all{
		padding: 100px 60px 100px;
	}
	.pd_wrap_side{
		padding-left: 40px;
		padding-right: 40px;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
	.mainmenu_box{
		display: none;
	}
	.menu-bt{
		display: block;
		position: fixed;
		z-index: 9999;
		top: 20px;
		right: 20px;
		width: 70px;
		aspect-ratio: 1 / 1;
		border: 3px solid #fff;
		border-radius: 50%;
		background-color: #217C9F;
		cursor: pointer;
	}
	.menu-bt .line{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 30px;
		height: 20px;
	}
	.menu-bt .line > div{
		content: "";
		position: absolute;
		width: 100%;
		height: 3px;
		border-radius: 6px;
		background-color: #fff;
		left: 0;
		transition: ease 0.3s;
	}
	.menu-bt .line > div:nth-of-type(1){
		top: 0;
	}
	.menu-bt .line > div:nth-of-type(2){
		top: 50%;
		transform: translateY(-50%);
	}
	.menu-bt .line > div:nth-of-type(3){
		bottom: 0;
	}
	.menu-bt.active .line > div:nth-of-type(1){
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
	.menu-bt.active .line > div:nth-of-type(2){
		top: 50%;
		transform: translateY(-50%) translateX(50%);
		opacity: 0;
	}
	.menu-bt.active .line > div:nth-of-type(3){
		bottom: 50%;
		transform: translateY(50%) rotate(-45deg);
	}
	.menu-wrap{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(241,241,241,0.90);
		z-index: 998;
	}
	.menu-wrap > div{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.menu-wrap .menu-wrap-box{
		overflow: auto;
	}
	.menu-wrap > div .ul{
		display:-webkit-box;
		display:-moz-box;
		display:-ms-box;
		display:-webkit-flexbox;
		display:-moz-flexbox;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:-ms-flex;
		display:flex;
		-webkit-box-lines:multiple;
		-moz-box-lines:multiple;
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
		justify-content: center;
		align-items: center;
		flex-direction: row;
		gap: 40px;
		padding: 50px;
	}
	.menu-wrap > div .ul .li{
		min-width: calc(100% / 4 - 120px / 4);
		text-align: center;
	}
	.menu-wrap > div .ul .li a{
		margin: 0 auto;
	}
	.menu-wrap > div .ul .li a:hover{
		transform: translateY(-3px);
	}
	.menu-wrap > div .ul .li a p{
		display:-webkit-box;
		display:-moz-box;
		display:-ms-box;
		display:-webkit-flexbox;
		display:-moz-flexbox;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:-ms-flex;
		display:flex;
		-webkit-box-lines:multiple;
		-moz-box-lines:multiple;
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
		justify-content: center;
		align-items: center;
		flex-direction: row;
		color: #222222;
		font-size: 16px;
		font-weight: 900;
	}
	.menu-wrap > div .ul .li a p.en{
		font-size: 30px;
		color: #217C9F;
		font-family: "EB Garamond", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	}
/* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
/* ---------- common ---------- */
/* ---------- header ---------- */
	.header .logo{
		padding: 0px;
	}
/* ---------- footer ---------- */
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.pd_wrap{
		padding: 100px 50px 0;
	}
	.pd_wrap_all{
		padding: 100px 50px 100px;
	}
	.pd_wrap_side{
		padding-left: 30px;
		padding-right: 30px;
	}
	.cate_wrap > .cate{
		padding-top: 100px;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
	.header{
		top: 0;
		width: 250px;
	}
/* ---------- footer ---------- */
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.pd_wrap{
		padding: 80px 20px 0;
	}
	.pd_wrap_all{
		padding: 80px 20px 80px;
	}
	.pd_wrap_side{
		padding-left: 10px;
		padding-right: 10px;
	}
	.cate_wrap > .cate{
		padding-top: 50px;
	}
/* ---------- pagetitle ---------- */
.pagetitle{
	gap: 10px;
}
.pagetitle .titlebox {
	width: calc(65% - 5px);
}
.pagetitle .imgbox{
	width: calc(35% - 5px);
}
/* ---------- font-size ---------- */
	.en_title{
		font-size: 30px;
	}
	.en_title2{
		font-size: 40px;
	}
	.default_title{ 
		font-size: 22px;
	}
	.default_title2{
		font-size: 20px;
	}
	.default_title3{
		font-size: 16px;
	}

	.default_txt{
		font-size: 14px;
		line-height: 2;
		letter-spacing: 0.03em;
	}
	.default_txt2{
		font-size: 13px;
	}

	.en_txt{
		font-size: 25px;
	}
	.font-EB{
		font-family: "EB Garamond",  sans-serif;
	}
/* ---------- main ---------- */

/* ---------- header ---------- */
	.header{
		top: 0px;
		width: 200px;
	}
	.menu-bt{
		width: 50px;
		top: 10px;
		right: 10px;
	}
	.menu-bt .line{
		width: 20px;
		height: 16px;
	}
	
	.menu-wrap > div .ul{
		gap: 20px 0;
		padding: 80px 20px;
	}
	.menu-wrap > div .ul .li{
		width: 50%;
	}
	.menu-wrap > div .ul .li a p.en{
		font-size: 14px;
	}
	.menu-wrap > div .ul .li a p.jp{
		font-size: 11px;
	}
/* ---------- footer ---------- */
	.footer{
		padding: 50px 20px 0;
	}
	.footer .logo{
		width: 100%;
		margin-bottom: 30px;
	}
    .footer .logo img{
        max-width: 250px;
	}
    
.footer .leftbox, .footer .rightbox{
    width: 100%;
}
    .footer .rightbox{
    margin-top: 0px;
}

	.footer .tellink img{
		width: 28px;
	}
	.footer .tellink p{
		font-size: 26px;
	}
	.footer .footer_menu{
		padding: 30px 10px;
		margin-top: 30px;
		gap: 20px;
	}
	.footer .footer_menu .ul{
		width: calc(100% / 2 - 20px / 2);
	}
	.footer .footer_menu .ul .li .circle{
		width: 16px;
		height: 16px;
	}
	.footer .footer_menu .ul .li a > .flex{
		gap: 5px;
	}
	.footer .footer_menu .ul .li a p{
		font-size: 16px;
	}

}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}
