@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v6.6.0/css/all.css);

:root{
	--main-color: #DDF1F2;
	--main-color02: #AFDADD;
	--accent-color: #DB6504;
	--orange-color: #FF9406;
	--base-color:#fff;
	--base-beige: #F9F7E4;
	--base-baige-light:#F9F7E4;
	--accent-beige-light:#F9F0AF;
	--base-beige-light-clear:#eae9e187;
	--black:#202020;
	--color00: #F1F095;
	--color01: #f2979e;
	--color02: #EDA99A;
	--color03: #F9D09B;
	--color04: #E3C7DF;
	--color05: #8dbcdb;
	--color06: #99CE9D;
	--light-gray-color:#F3EFF2;
	--dark-main-color: #233A52;
	--dark-board-color:#464f4a;
	--dark-gray-color:#63626a;
	--text-white-color:#fff;
	--text-bright-color: #FDE7C9;
	--text-dark-color:#351414;
	--text-red-color:#bf4f26;
	--passion-color:#dcf005;
	--clear-color:#ffffff00;
	--max-large-width:1560px;
	--max-width: 1200px;
	--large-width: 1024px;
	--middle-width: 600px;
	--small-width: 350px;

	--header-h: 0px;/* ヘッダーの高さをjsで取って変数に格納するので、その初期値を借入 //enomoto */
	--footer-h: 0px;

	--vh: 1vh;

	--font-main: "Zen Kaku Gothic New", sans-serif;
	--font-sub: 'Kiwi Maru', serif;
	--font-title: "Zen Kaku Gothic Antique", sans-serif;
	--font-en: "Playwrite DE Grund", cursive;
	--font-en: "Playwrite US Modern", cursive;
	--font-en-cursive: "Lavishly Yours", cursive;
	--font-num: "Bubbler One", sans-serif;
	--font-awesome: "Font Awesome 7 Free";

	--fontsize-headingL: 3rem;
	--fontsize-headingM: 2rem;
	--fontsize-headingMS: 1.8rem;

	--fontsize-headingSM: 1.5rem;
	--fontsize-headingS: 1.2rem;

	--fontsize-textL: 1.15rem;
	--fontsize-text: 1.1rem;
}


/*========= base ===============*/
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-x: hidden;
	scroll-padding-top: 150px;
}
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}
html.menu-open {
	overflow: hidden;
}
body{
	position: relative;
	/* overflow: hidden; */
	margin: 0;
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 500;
	z-index: 0;
	background-color: #eae9e1;
}
body.home {
	overflow: clip;
}
.phone{
	display: none;
}
/* 背景用のレイヤー */
#bgImage {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	/* 背景として使うので手前に来ないように */
	background-image: none;
	background-size: cover;
	background-position: center;
	transition: opacity 1s ease,
		background-color 1s ease 2s;
	/* 背景画像がフェードインするエフェクト */
}
.uk-text-bold {
	font-weight: 500;
	font-family: 'ShipporiGothic';
}
/* body::before {
	content: "";
	width: 100vw;
	height: 100vh;
	background-image:url(../images/webp/background_cover.webp);
	position: fixed;
	top: 0;
	left: 0;
	mix-blend-mode: multiply;
	background-repeat: repeat;
	z-index: 9999;
	opacity: .5;
	pointer-events: none;
}
html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}
*/
/* 擬似要素を安全に full-screen にする */
/* body::before {
	content: "";
	position: fixed;
	inset: 0;
	height: calc(var(--vh) * 100);
	width: 100%;
	background-image: url(../images/webp/background_cover.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	mix-blend-mode: multiply;
	z-index: 9999;
	opacity: .5;
	pointer-events: none;
	will-change: transform;
	contain: paint;
} */
p {
	font-weight: 500;
	font-size: 1.1rem;
}
h1,h2,h3,h4,h5{
	font-weight: 500;
}
img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.hentry {
	border: none;
}
.entry-footer {
	display: none;
}
main {
	display: block;
	z-index: 2;
	margin: 0 auto;
	position: relative;
	width: 100vw;
	/*min-height: 100vh;*/
	/*background-color: var(--base-baige-light);*/
}
aside#sub {
	display: block;
	z-index: 1;
	width: calc((100vw - 768px) / 2);
	position: relative;
}
aside#sub:last-child {
	z-index: 3;
}
::-webkit-scrollbar {
  width: 6px;
  background: var(--light-gray-color);
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
	width: 6px;
	background-color: var(--orange-color);
}
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
li{
	list-style: none;
}
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  color: var(--black);
  border-radius: 0.5rem;
}
.text-circle {
	display: inline-block;
	background: #ec4646;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	color: #fff;
	font-size: 52px;
	text-align: center;
	line-height: 80px;
	box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
}
table th,
table td {
	border-bottom: none;
	display: block;
	width: 100%;
}
.t-white{
	color: #FFF;
	color: var(--text-white-color);
	overflow: hidden;
}
.t-dark{
	color: #351414;
	color: var(--text-dark-color);
}
.t-main{
	color: var(--main-color);
}
.t-accent {
	color: var(--accent-color);
	/* border-bottom: 2px solid var(--accent-color); */
}
.text-stroke{
	-webkit-text-stroke: 0.5px;
}
.text-left{
	text-align: left!important;
}
.t-backwhite{
	background-color: #ffffffb8;
  border-radius: 5rem;
	padding: .2rem 2rem;
}
/*========= parts ===============*/
.none {
	opacity: 0;
}
.br {
	display: contents;
}
.inline-block {
	display: inline-block;
}
.important {
	z-index: 99;
}
.main-container{
	position: relative;
	z-index: 1;
}
/*.entry-content {
  background-color: var(--base-baige-light);
	color: var(--dark-main-color);
}*/
#primary {
	display: flex;
	align-items: stretch;
	z-index: 3;
	position: relative;
}
.block {
	display: block;
}
.flex{
	display: flex;
}
.photo {
	position: relative;
	flex: 1;
	height: 160px;
}
p.date {
  font-size: .8rem;
}
p.posttitle {
  font-weight: 500;
  -webkit-text-stroke: 0.5px;
}
.bc {
	border: 2px solid var(--accent-color);
	text-align: left;
	display: flex;
	align-items: center;
	padding: 30px 80px;
	justify-content: center;
	margin: auto;
}
.glass {
	background: rgb(255 255 255 / 8%);
	border-radius: 20px;
	-webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(1px);
	border: 1px solid rgba(255, 255, 255, 0.25);
}
.button_1 {
	height: 50px;
	width: fit-content;
	position: relative;
	background-color: transparent;
	cursor: pointer;
	border: 2px solid #252525;
	overflow: hidden;
	border-radius: 30px;
	line-height: 40px;
	color: #333;
	transition: all 0.3s ease-in-out;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.type1::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.3s ease-in-out;
	background-color: #fff;
	border-radius: 30px;
	visibility: hidden;
	height: 10px;
	width: 10px;
	z-index: -2;
}
.button_1:hover {
	box-shadow: 1px 1px 100px #fff;
	color: #252525;
	border-color: transparent;
}
.button_1:hover.type1::after,.type1:hover::after {
	visibility: visible;
	transform: scale(100) translateX(2px);
}

.btn-icon {
	font-family: "Font Awesome 5 Free";
	font-size: 1.25rem;
	padding-left: .5em;
	z-index: 1;
}
.button-flame .main-container {
	justify-content: center;
	align-items: center;
}

.subheading-1 {
	display: flex;
	align-items: center;
	padding: .5em .7em;
}
.subheading-1::before {
	display: inline-block;
	width: 5px;
	height: 1.5em;
	margin-right: .5em;
	background-color: var(--accent-color);
	content: '';
}
.heading-1 {
	font-family: var(--font-title);
	color: var(--base-color);
	-webkit-text-stroke: 1px var(--blue-gray-color);
	text-shadow: 3px 3px var(--text-dark-color);
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.5;
	display: inline-block;
	text-align: center;
	padding: 1em .7em;
	border: 2px solid var(--text-dark-color);
	border-radius: 1rem;
	box-shadow: 5px 5px var(--text-dark-color);
	background-color: var(--orange-color);
}
.heading-2 {
	font-family: var(--font-title);
	letter-spacing: 0.1em;
	line-height: 1.4;
	display: inline-block;
	margin: auto;
	padding: 1em .7em;
	border: 2px solid var(--accent-color);
	border-radius: 1rem;
	box-shadow: 5px 5px var(--accent-color);
	text-align: left;
	font-size: var(--fontsize-headingS);
}
.heading-3 {
	padding: 0 .4em .2em;
	border-bottom: 4px dashed var(--accent-color);
	width: fit-content;
}
.heading-3 h2{
	background-color: var(--base-baige-light);
}
.title_2 b {
	font-weight: 500;
	background: linear-gradient(transparent 60%, #ffff66 60%);
}
.table1 {
	/*font-family: 'Noto Serif JP', serif;*/
	font-size: 0.9rem;
	margin: auto;
	border: none;
}
.table1 tr {
	display: flex;
}
.table1 th,
.table1 td {
	padding: 30px 5px;
	font-weight: normal;
	text-align: left;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #646566;
}
.table1 td span {
	font-size: 90%;
}
.table1 th {
	width: 200px;
	border: none;
	border-color: white;
}

/*========= .accordion ===============*/
.accordion-1 {
	position: relative;
	width: 80%;
	margin: auto;
	margin-bottom: 10px;
	border-radius: 5px;
	box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
	background-color: #fff;
}
details.accordion-1::details-content {
	transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
	height: 0;
	opacity: 0;
	overflow: clip;
	border-radius: 5px;
	box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
	background-color: #fff;
}

/* --------アコーディオンの中身のスタイル（開いている時）-------- */
details.accordion-1[open]::details-content {
	opacity: 1;
}
/* アコーディオンが開いた時のスタイル */
.accordion-1 summary {
	display: grid;
	grid-template-columns: auto 1fr auto 24px;
	gap: 15px;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	font-weight: 500;
	color: #333333;
	cursor: pointer;
}
.accordion-1 summary>* {
	margin: 0;
	line-height: 1;
}
.accordion-1.QandA summary {
	grid-template-columns: 24px .3fr 1fr auto 24px;
}
.accordion-1 summary::-webkit-details-marker {
	display: none;
}
.accordion-1.QandA summary::before {
	content: 'Q';
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 30%;
	background-color: var(--accent-beige-light);
}
.accordion-1 summary::before {
	position: absolute;
	content: "";
	background-color: var(--clear-color);
	width: 95%;
	height: 2px;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	transition: background-color .5s;
}
.accordion-1[open] summary::before {
	background-color: #d0d0d0;
}
.accordion-1 summary::after {
	margin-left: 25px;
	transition: transform .3s;
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--text-dark-color);
	border-right: 2px solid var(--text-dark-color);
	transform: rotate(135deg) translateY(5px);
	transform-origin: center;
}
.accordion-1[open] summary::after {
	transform: rotate(315deg);
}
@supports (interpolate-size: allow-keywords) {
	:root {
		interpolate-size: allow-keywords;
		/* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
	}
	details[open]::details-content {
		height: auto;
	}
}
@supports not (interpolate-size: allow-keywords) {
	details[open]::details-content {
    	height: max-content;
		min-height: 150px;
		overflow-y: scroll;
		/* 溢れる場合はスクロール可能にする */
	}
}
/* --------アコーディオンの中身のスタイル-------- */
.accordion-1 .content {
	box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
	background-color: #fff;
	padding: 1em 2em;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.accordion-1.QandA .content>*:first-child:before {
	content: 'A';
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 30%;
	background-color: var(--accent-color);
	color: var(--base-color);
}
.accordion-1 p {
	color: #333333;
}
.accordion-1 .cat {
	font-weight: 500;
	position: relative;
	background-color: var(--wp--preset--color--luminous-vivid-amber);
	border-radius: 86% 92% 100% 100% / 73% 64% 100% 86%;
	padding: 9px 8px 10px;
	/* color: var(--base-color); */
	letter-spacing: -0.03em;
	font-size: .85rem;
}
.accordion-1 .cat.news {
	background-color: var(--passion-color);
}
.accordion-1 .cat.diary {
	background-color: #efe223;
}
.accordion-1:nth-of-type(even) .cat {
	border-radius: 76% 61% 92% 51% / 57% 80% 72% 91%;
}

.accordion-1 .flex>* {
	flex: 1 1 auto;
	padding: 0 5px;
}
.accordion-1 .flex>img {
	width: 50%;
	flex-shrink: 0;
}
/*========= /accordionここまで ===============*/
/*========= breadcrumbs ===============*/
.breadcrumbs {
	display: flex;
	align-items: center;
  gap: 10px;
	font-size: var(--fontsize-text);
}
.breadcrumbs .arrow {
	position: relative;
	display: inline-block;
	width: 11.8px;
	height: 19.6px;
}
.breadcrumbs .arrow::before,
.breadcrumbs .arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
	width: 15px;
	height: 4px;
	border-radius: 9999px;
	background-color: #000000;
	transform-origin: calc(100% - 2px) 50%;
}
.breadcrumbs .arrow::before {
	transform: rotate(45deg);
}
.breadcrumbs .arrow::after {
	transform: rotate(-45deg);
}
/*========= /breadcrumbsここまで ===============*/
div.main-container {
	z-index: 2;
}
*:has(>.border_img) {
	position: relative;
}
.border_img {
	position: absolute;
	inset-inline: calc(50% - 50vw);
	top: calc(100% - 10px);
	z-index: 1;
	display: flex;
	align-items: flex-start;
	width: 100vw;
	overflow: clip;
	aspect-ratio: 1920 / 24;
}
.border_img img{
	width: 100%;
	height: auto;
	padding: 0!important;
}
.move_img{
	width: 300px;
	z-index: 3;
}
.move_img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*========= headerのCSS ===============*/
header {
  position: relative;
	position: fixed;
  z-index: 99;
  background: var(--base-color);
  width: 100%;
	top: 0;
	left: 0;
	padding: 0 10px;
	display: flex;
	justify-content: space-around;

	transition: transform .18s ease-out;
	transform: translateY(0);
	will-change: transform;
}
header.hide {
	transform: translateY(-100%);
}

header:after {
	content: "";
	position: absolute;
	z-index: -1;
	background: url(../images/PartsSet/separation/header-bottom.svg) repeat-x 0% 100%;
	width: 100%;
	height: 100px;
	top: 50%;
	top: 0%;
}

#header.HeightMin{
	position: fixed;
	display: flex;
  z-index: 999;
  height: 70px;
  animation: DownAnime 0.5s forwards;
  justify-content: space-around;
	top: 0;
}

.header-wrapper {
	display: flex;
  align-items: center;
	transition: opacity 0.6s;
	justify-content: space-around;
  gap: 10px;
	z-index: 1;
}
.nav-wrapper{
	backdrop-filter: blur(5px);
}
header #top {
	display: flex;
  align-items: center;
	gap: 10px;
}
/* ---headA ヘッダータイトルとロゴ--- */
.headA{
  display: flex;
  justify-content: space-around;
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
	width: fit-content;
	color: var(--dark-main-color);
}
.headA #logo-img {
	margin: 0;
}
.headA .text {
	margin-left: 10px;
	text-shadow: 0 0 5px var(--base-color), 0 0 15px var(--base-color);
  /*水平の距離0px 垂直の距離0px 影の大きさ15px 影の色#fff*/
}
#logo-img {
	margin: 0 10px;
}

.headA a.custom-logo-link {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin: 0;
	aspect-ratio: 1/1;
}
.headA .custom-logo-link img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.headA h2 {
	font-size: var(--fontsize-headingS);
	font-family: 'Pomeranian-Regular';
	font-weight: 100;

}

/* ---.headD--- */
.headD {
	color: var(--dark-main-color);
	display: flex;
}
.headD .text p {
	margin: 10px;
}
.headD a{
	color: var(--base-color);
}
/* ---ドロップダウン--- */
/*==ナビゲーション全体の設定*/
.headB{
	color:#fff;
	color: var(--base-color);
  background-color: var(--clear-color);
	transition: overflow 3s;
	position: relative;
}
.headB.hide{
	overflow: hidden;
}
.headB.flex{
  display: flex;
  justify-content: center;
  align-items: center;
}
.headB nav{
	color:#fff;
	color: var(--text-dark-color);
	text-align: center;
	font-size: 1rem;
}
/*ナビゲーションを横並びに*/
.headB ul{
	position: relative;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: flex-end;
  align-content: center;
  justify-content: center;
	/*transition: 1s;*/
	gap: 2vw;
  }
.headB ul::-webkit-scrollbar{
	display: none;
}
/*ナビゲーションのリンク設定*/
.headB ul li{
	position: relative;
}
.headB ul li a{
  /*矢印の基点にするためrelativeを指定*/
  position: relative;
  text-align: center;
  display: block;
  width: fit-content;
	/* min-width: 150px; */
	height: 100%;
  text-decoration: none;
  color: #fff;
  color: var(--text-dark-color);
	padding: 15px 0px;
  transition: all .3s;
  margin: auto;
  font-size: 1rem;
	font-weight: 600;
	font-family: 'Pomeranian-Regular';
	font-family: 'Shirokuma';
	font-family: 'ShipporiGothic';
	background: url(../images/PartsSet/item/波線.svg) repeat-x;
	background-size: 0 15px;
	background-position: bottom center;
	/* margin-bottom: 5px; */
	line-height: 0.7;
}
.headB ul li a:hover ,.headB ul li a.current{
	background-size: 330px 15px;
}

.headB li.menu-item-has-children>a{
	padding-left: 15px;
  margin-left: 15px;
}
.headB ul li li a{
	padding:10px;
}
.headB .sub-menu{
	position: absolute;
  left:0;
  top:100%;
  width:100%;
  visibility:visible;
  opacity:1;
  display: none;
  /*transition:.3s;*/
}
.headB li a span {
	white-space: nowrap;
}
.headB li.menu-item-has-children a span{
	position: relative;
}
.headB li.menu-item-has-children>a>span::before{
	content:'';
	position: absolute;
	left:-25px;
	top: 50%;
	width:10px;
	height:10px;
	border-top: 2px solid var(--text-dark-color);
	border-right:2px solid var(--text-dark-color);
	transform: rotate(135deg) translateY(5px);
	transition: .3s;
	transform-origin: center;
}
.headB li.menu-item-has-children.active>a>span{
	color: var(--orange-color);
}
.headB li.menu-item-has-children.active>a>span::before{
	transform: rotate(-45deg);
	border-color: var(--orange-color);
}
.headB ul li a:hover span ,.headB ul li a.current span{
	color: var(--orange-color);
}
.headB ul li a:hover span::before,.headB ul li a.current span::before {
	scale: 1;
	border-color: var(--orange-color);
	color: var(--orange-color);
}
.headB .sub-menu li{
	width:100%;
	text-align: left;
}
.headB.hide ul{
	transform:translateY(-100%);
	opacity: 0;
	transition: .3s;
}



/* ---ハンバーガーメニュー--- */
.fas.fa-bars{
	font-size: 2em;
}
.headC {
	opacity: 0;
	display: none;
}
/* <reset-style>  */
button {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font-family: inherit;
}
  /* ================= */
  /* <style for bg> */
.background {
  border-radius: 8px;
  background: var(--accent-color);
  mix-blend-mode: luminosity;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(15px);
	width: 55px;
	height: 55px;
	padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
	/* position: fixed;
  top: 0;
  right: 0;*/
  margin: 0px;
	z-index: 998;
}
/* <style for menu__icon> */
.menu-toggle {
	width: 90%;
	height: 90%;
	padding: 0px;
	position: relative;
	cursor: pointer;
}
.menu-toggle span {
	position: absolute;
	left: 0;
	height: 4px;
	border-radius: 4px;

	display: block;
	width: 100%;
	background-color: var(--base-color);
	transition: background-color .5s;
}
.menu-toggle,
.menu-toggle span {
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
.menu-toggle span:nth-child(1) {
	top: 0;
}
.menu-toggle span:nth-child(2) {
	top: 45%;
}
.menu-toggle span:nth-child(3) {
	bottom: 0;
}
/*activeクラスが付与されると線が回転して→になる*/
.headC.active span:nth-of-type(1),
.headC.active span:nth-of-type(3) {
	width: 50%;
}
.headC.active span:nth-of-type(1) {
	-webkit-transform: translate(100%, 180%) rotate(45deg);
	transform: translate(100%, 180%) rotate(45deg);
}
.headC.active span:nth-of-type(3) {
	-webkit-transform: translate(100%, -175%) rotate(-45deg);
	transform: translate(100%, -175%) rotate(-45deg);
}

/*  --------------------------- */
.nav span {
	padding-left: 10px;
}
.nav li {
  /*線の基点とするためrelativeを指定*/
	position: relative;
}
.nav li::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}
/*現在地とhoverの設定*/
.nav li.current::after,
.nav li:hover::after {
  transform: scale(1, 1);/*X方向にスケール拡大*/
}

/*========= mainimages ===============*/
.mainimages{
  position: relative;
  width: 100%;
	background-color: var(--main-color);
}
.img-box .slick-slider,.img-box .slick-list,.img-box .slick-track,.img-box .slick-slide{
	height: 100%;
}
.mainimages .wrapper{
	position: relative;
	width: 100%;
	height: 100dvh;
	margin: 0px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.mainimages .wrapper.heightmax {
	height: 100dvh;
}
.mainimages .container-text {
	position: absolute;
	grid-row: 1 / 6;
	grid-column: 1 / -1;
	width: 100%;
	color: var(--dark-main-color);

	margin-top: 35px;
	margin-left: 15px;
	z-index: 2;
}
.mainimages .text {
	font-family: 'Pomeranian-Regular';
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
.mainimages .text h1{
	font-size: 5vw;
	position: relative;
	z-index: 1;
	-webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	text-orientation: upright;
	line-height: 1;
	color: var(--orange-color);
	font-weight: 100;
}
.mainimages .text h2 {
  font-size: 4vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
	letter-spacing: .1em;
  margin: 0;
	gap: 2vw;
}
.mainimages .textbox {
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	color: var(--dark-main-color);
}
.mainimages .textbox h3{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-size: var(--fontsize-headingM);
	font-size: var(--fontsize-headingMS);
	margin-left: 5vw;
	margin-top: 20px;
	background-color: #ffffffad;
	border-radius: 30px;
	padding: 10px;
}

.mainimages .wrapper-blur {
	content: '';
	/* backdrop-filter: blur(12px); */
	position: absolute;
	width: 100%;
	height: 100svh;
	opacity: 0;
	z-index: 1;
}

#top-background{
	background-size: cover;
  background-position: center;
}
.images{
	position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 0 0 auto;
  z-index: 0;
  grid-row: 1 / 4;
  grid-column: 1 / -1;
}
.images::before {
  content: "";
	z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.images.all {
	grid-row: 1 / -1;
	grid-column: 1 / -1;
}
.images2 {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.images img,.images2 img{
	width: 100%;
  height: 100%;
	object-fit: contain;
	object-position: bottom;
}
.images2 img {
	width: 80%;
}
.images2 picture {
	display: flex;
  justify-content: center;
  align-items: flex-end;
	width: 100%;
	height: 100%;
}
.img-box{
  position: relative;
  margin: 0;
  z-index: 0;
	grid-row: 4/-1;
  grid-column: 1 / -1;
	background-color: var(--main-color02);

	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.img-box::before {
	content: "";
	width: 60vw;
	height: 33vh;
	background-image: url(../images/PartsSet/backgroundParts01.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom right;
	position: absolute;
	bottom: calc(100% - 3px);
	right: 0;
	z-index: 0;
}
.anim_text {
position: absolute;
	z-index: 2;
	grid-row: -1;
	width: 100vw;
	height: 65vh;
	background-image: url(../images/PartsSet/anime-text.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top right;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.cover::before {
  content: "";
  right: 0;
  top: 0;
	width: 100%;
  height: 100%;
	/*background: #ffffff8c;*/
	z-index: 3;
}
.wrapper-cover{
  position: absolute;
  left: 0;
  top: 0;
	width: calc((100vw - 768px) / 2);
  height: 100dvh;
	background: var(--base-baige-light);
  opacity: 0.5;
	z-index: 3;
}
.anim_img{
	position: absolute;
  right: 0;
  bottom: 50%;
	width: calc((100vw - 768px) / 4);
	z-index: 3;
}
.u--straight {
  animation: gostraight 12s linear infinite;
}
@keyframes gostraight {
  0% {
    transform: translate(500px, 500px);
  }
  100% {
		transform: translate(-800px, -550px);
  }
}

.leaf-fall {
	position: absolute;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}
.leaf1 {
	right: 50%;
	top: -20%;
	animation: fall 10s linear infinite;
}
.leaf2 {
	left: 10%;
	top: -20%;
	animation: fall 15s linear infinite;
	animation-delay: 4s;
}

.cloud {
	position: absolute;
	width: calc((100vw - 768px) / 5);
	z-index: 0;
}
.cloud img{
	animation: wobbling 2.2s ease-in-out infinite alternate;
}
.cloud.one img, .cloud.three img{
	animation-delay: -0.5s;
}
.cloud.two img, .cloud.four img{
	animation-delay: -1s;
}
.cloud.one {
	top: 10%;
	right: 0;
	transform: rotateY(180deg);
}
.cloud.two {
	top: 60%;
	right: 0;
	transform: rotateX(180deg) rotateY(180deg);
	width: calc((100vw - 768px) / 6);
}
.cloud.three {
	top: 60%;
	left: -5%;
	transform: rotateX(180deg) rotateY(180deg);
}
.cloud.four {
	top: 35%;
	left: 25%;
	transform: rotateX(180deg);
	width: calc((100vw - 768px) / 6);
}
.cloud.five {
	top: 15%;
	left: 15%;
	transform: rotateY(180deg);
	width: calc((100vw - 768px) / 6);
}
.cloud.six {
	top: 15%;
	left: 50%;
}
/* ---comingsoon--- */
.mainimages.comingsoon {
	width: 100vw;
	height: 100vh;
	position: relative;
	background-image: url(../images/comingsoon/comingsoon_box.svg);
	background-color: var(--main-color);
	background-repeat: no-repeat;
	background-size: 100%;
}
.mainimages.comingsoon #logo-img img {
	width: 100%;
	height: auto;
}
.mainimages.comingsoon .text {
	grid-row: 3 / 6;
	grid-column: 2 / 6;
	flex-direction: column;
	margin: 0;
	background-color: transparent;
}
.mainimages.comingsoon h3.sitesubtitle {
	position: relative;
	font-size: var(--fontsize-headingL);
	font-family: 'ShipporiGothic';
  font-weight: 800;
	background-image: url(../images/comingsoon/飛行機雲-ミニ.svg);
	background-repeat: no-repeat;
	background-position: bottom;
}
.mainimages .sitetitle {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
}
.mainimages.comingsoon .text h1 {
	font-size: 5vw;
	-webkit-writing-mode: lr;
	-ms-writing-mode: lr;
	writing-mode: lr;
	line-height: 1;
	color: var(--orange-color);
	font-weight: 100;
	white-space: nowrap;
	background-image: url(../images/comingsoon/飛行機雲.svg);
	background-repeat: no-repeat;
	background-position: bottom;
}
.mainimages.comingsoon .sitetitle::after {
	position: absolute;
	content: url(../images/comingsoon/飛行機雲-しっぽ.svg);
	width: 200px;
  height: auto;
	bottom: 0;
	left: calc(100% + 10px);
}

.mainimages.comingsoon .text::after {
	content: none;
}
.mainimages.comingsoon .img-box::before,
.mainimages.comingsoon .cover::before {
	content: none;
}
.mainimages.comingsoon .wrapper {
	height: 100%;
}
.mainimages.comingsoon #top-background {
	z-index: -1;
}

.mainimages.comingsoon .wrapper {
height: 100vh;
margin-top: 0;
}
footer.comingsoon {
	position: fixed;
	display: block;
	background-image: none;
	margin-top: 0px;
	bottom: 0;
	width: 100%;
	background-color: var(--main-color02);
}
@media (min-width:640px) and (max-width:1199px) and (orientation: portrait)/*(タブレット)*/{
	header.comingsoon {
    background-color: var(--base-color)!important;
  }
	header.comingsoon:after {
    width: 1000%;
    height: 100%;
    top: 35%;
	}
	.mainimages.comingsoon{
		background-image: url(../images/comingsoon/comingsoon_box-phone.svg);
		background-color: var(--main-color);
	}
	.mainimages.comingsoon #logo-img {
    width: 50%;
  }
	.mainimages.comingsoon h3.sitesubtitle {
    font-size: var(--fontsize-headingM);
	}
	.mainimages.comingsoon .text h1 {
    font-size: 10vw;
    white-space: wrap;
		text-align: center;
	}
	.mainimages.comingsoon .sitetitle::after {
    width: 80px;
	}
}
@media (max-width:639px)/*(スマホ)*/{
	header.comingsoon {
    background-color: var(--base-color)!important;
  }
	header.comingsoon:after {
    width: 1000%;
    height: 100%;
    top: 35%;
	}
	.mainimages.comingsoon{
		background-image: url(../images/comingsoon/comingsoon_box-phone.svg);
		background-color: var(--main-color);
	}
	.mainimages.comingsoon #logo-img {
    width: 50%;
  }
	.mainimages.comingsoon h3.sitesubtitle {
    font-size: var(--fontsize-headingM);
	}
	.mainimages.comingsoon .text h1 {
    font-size: 10vw;
    white-space: wrap;
		text-align: center;
	}
	.mainimages.comingsoon .sitetitle::after {
    width: 80px;
	}
}

/*========= pages ==========*/
.mainimages.small-mainimages .wrapper {
	height: 30dvh;
	display: flex;
	padding-top: 60px;
	align-items: center;
	overflow: clip;
}
.small-mainimages .images {
	z-index: 2;
}
.small-mainimages .images2 {
	width: 100vw;
	right: -20%;
	top: -20%;
	position: absolute;
	z-index: 0;
}

.mainimages.small-mainimages .wrapper.heightmax {
	height: 30dvh;
}

@media (max-width: 639px) {
	.small-mainimages .images2 {
		width: 200vw;
		left: 35%;
		right: auto;
		top: auto;
		bottom: -20%;
		height: 100%;
		background-color: transparent;
	}
	.small-mainimages .wrapper::before {
		content: "";
		display: block;
		position: absolute;
		z-index: 1;
		width: 100%;
		height: 200px;
		mix-blend-mode: soft-light;
		background-image: linear-gradient(145deg, transparent 30%, #dcf2ffa3 55%);
	}
		.small-mainimages .cloud.one, .small-mainimages .cloud.two, .small-mainimages .cloud.three {
    z-index: 5;
  }
}

#post-237 {
	padding-bottom: 400px;
	background-color: aliceblue;
}
.password_form_container {
	max-width: 768px;
	margin: auto;
}
form.post-password-form {
	display: flex;
	gap: 25px;
	justify-content: center;
}
.password_description {
	position: relative;
	width: 100%;
	display: block;
	background: var(--accent-color);
	padding: 15px 12px;
	color: #fff;
	font-size: 20px;
	margin: 15px auto 25px;
}
.password_description:after {
	content: "";
	background-image: url(../../assets/images/PartsSet/logo_silhouette.svg);
	mix-blend-mode: soft-light;
	background-size: 100px 100px;
	background-repeat: no-repeat;
	background-position: 50% -16px;
	opacity: 0.7;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: 0;
}
.post-password-form .input {
	position: relative;
	max-width: 765px;
	width: 90%;
}
.post-password-form input[type=password] {
	display: block;
	border: 1px solid #5e5e5e;
	padding: 10px 5px 10px 40px;
	border-radius: 8px;
	transition: 0.2s ease-out;
	color: #5e5e5e;
	background-color: #ffffff;

	width: 100%;
}

.post-password-form span {
	position: absolute;
	display: block;
	color: #EDEDED;
	left: 10px;
	top: 8px;
	font-size: 20px;
}

.post-password-form input[type=password]:focus {
	padding: 10px 5px 10px 10px;
	border-color: var(--accent-color);
}

.post-password-form button[type=submit] {
	width: 45px;
	height: 45px;
	aspect-ratio: 1;
	display: flex;
	/* margin: 0 auto -15px auto; */
	background: #fff;
	border-radius: 100%;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0px 0px 0px 7px #fff;
	transition: 0.2s ease-out;
	align-items: center;
	justify-content: center;
}
.post-password-form button[type=submit]:hover,
.post-password-form button[type=submit]:focus {
	background: var(--accent-color);
	color: #fff;
	outline: 0;
}
/*========= /pages ==========*/

/* ---top btn pagetop--- */
.pagetop {
	cursor: pointer;
	position: fixed;
	z-index: 98;
	right: 30px;
	bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 150px;
	font-size: var(--fontsize-headingM);
	/* border-radius: 50%; */
	transition: .3s;
	color: var(--accent-beige-light);
	/* background: var(--base-beige);
	background: var(--orange-color); */
	/*   デフォルトは非表示*/
	display: none;
	/* background-image: url(../images/parts/paintparts1-1.svg); */
}
.pagetop:hover {
	/* box-shadow: 0 0 10px var(--orange-color); */
	transform: rotate(15deg);
}
.pagetop:hover span {
	transform: rotate(-15deg);
}

/*========= toppage content ===============*/
.main-content {
	position: relative;
}
section {
	position: relative;
}

/*========= section1 ネットワーク紹介===============*/
#section1{
	padding: 0px 0 100px;
	background-color: var(--main-color02);
}

#section1 .map {
	position: relative;
}
#section1 .map::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: auto;
	margin: 20px;
	pointer-events: none;
	z-index: 9;
}
/*カーソルエフェクトをマップ上で入れる*/
#section1 .mapSlide {
	width: 100%;
	padding: 30px 0px;
}
#section1 svg {
  width: 45vw;
}
#section1 .slideWindow {
	width: 30vw;
	position: relative;
}
#section1 .card {
	position: sticky;
	top: 60px;
	overflow: visible;
	width: 100%;
	height: auto;

	transition: opacity .6s ease;
	opacity: 1;
}
.content {
	width: 100%;
	height: fit-content;
	transform-style: preserve-3d;
	transition: transform 300ms;
	/* box-shadow: 0px 0px 10px 1px #000000ee; */
	/* border-radius: 30px; */
}
.frontcontent,
.backcontent {
	background: white;
	border-radius: 30px;
	box-shadow: 15px 15px 30px #85a4a9c9, -15px -15px 30px #d2fbffcc;

	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: 30px;
	overflow: hidden;
}
.backcontent {
	background: var(--accent-beige-light);
	position: absolute;
	width: 100%;
	height: 100%;
	justify-content: center;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.CardTitle {
	display: inline-block;
		position: relative;
		transform: rotate(-5deg);
		padding: 3%;
		text-align: center;
		border-left: 2px dotted rgba(0, 0, 0, .1);
		border-right: 2px dotted rgba(0, 0, 0, .1);
		box-shadow: 0 0 5px rgba(0, 0, 0, .2);
		background-color: rgba(255, 255, 255, 0.9);
		font-size: var(--fontsize-headingM);
		font-family: var(--font-en);
		color: var(--accent-color);
		width: fit-content;
}
.CardTitle::before {
	content: "\f060";
	display: inline-block;
	position: relative;
	font-weight: 900;
	padding-right: 5px;
	/*文字との隙間*/
	font-size: var(--fontsize-headingM);
	font-family: "Font Awesome 5 Free";
	color: var(--passion-color);
}


.card.is-changing .content {
	transform: rotateY(180deg);
}

.frontcontent {
	transform: rotateY(180deg);
	color: white;
}

.frontcontent .front-content {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#section1 .img {
	position: relative;
	width: 100%;
	height: 50%;
	min-height: 200px;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	/* background: linear-gradient(#e66465, #9198e5); */
	display: flex;
	align-items: top;
	justify-content: right;
	overflow: hidden;
}
#section1 .img img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#section1 .img .tags{
	position: absolute;
	left: 15px;
	top: 15px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: flex-start;
}
#section1 .img .tag1,#section1 .img .tag2 {
	padding: 5px 15px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#section1 .img .tag1{
	background-color: var(--color01);
	border-bottom-left-radius: 0;
}
#section1 .img .tag2 {
	background-color: var(--base-beige);
	border-radius: 0 0 10px 10px;
}
#section1 .img .tag1 p {
	margin: 0;
	font-size: var(--fontsize-headingSM);
}
#section1 .img .tag2 p {
	margin: 0;
	color: #63626a;
	font-size: var(--fontsize-headingS);
}


#section1 .text {
	position: relative;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: space-around;
	color: var(--black);
}
#section1 .tag3 {
	display: none;
	position: absolute;
	left: 0px;
	top: -50%;
	z-index: 5;
	border-radius: 0 15px 15px 0px;
	background-image: repeating-linear-gradient(145deg, #ded138, #ded138 16px, #000000 16px, #000000 26px);
}
#section1 .tag3.comingsoon {
	display: block;
}
#section1 .tag3 p {
  margin: 0;
  color: var(--dark-gray-color);
  background-color: #fff;
  margin: 5px;
  margin-left: -5px;
  padding: 0 5px;
  padding-left: 25px;
  border-radius: 0 10px 10px 0px;
  font-size: .85rem;
}

#section1 #WindowTitle span{
	display: inline-block;
}
#section1 .text h3 {
	color: black;
	margin: 0;
}

#section1 .text .textWrapper {
	color: #999999;
	position: relative;
	padding: 0 0 1rem 0;
	line-height: 1.85;
	font-size: 1rem;
	margin: 0;
}
.waveLine {
	background-image: url(../images/PartsSet/item/波線.svg);
	background-size: 330px 1rem;
	background-repeat: repeat-x;
	background-position: bottom;
	padding-bottom: calc(1rem / 2);
}

#section1 .buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#section1 .icon-box {
	margin-top: 15px;
	width: fit-content;
	padding: 10px;
	background-color: var(--base-beige);
	border: 2px dashed var(--orange-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: left;
}
#section1 .icon-box:nth-of-type(2){
	border: 2px dashed var(--color05);
	background-color: #f0fbf7;
	display: none;
}
#section1 .icon-box .span::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0ac";
	font-weight: 900;
	font-size: 135%;
	padding: 0 5px;
	vertical-align: middle;
}
#section1 .icon-box:nth-of-type(2) .span::before {
	content: "\f279";
}
#section1 .icon-box .span {
	padding-right: 5px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--accent-color);
}
#section1 .icon-box:nth-of-type(2) .span {
	color: var(--color05);
	padding-right: 0;
}
#section1 .icon-box:has(.comingsoon) {
	background-color: #fdfdfd;
	border: 2px dashed #bdbdbd;;
}
#section1 .icon-box .span.comingsoon {
	color: #bdbdbd;
	pointer-events: none;
}

.caption-box {
	position: relative;
	max-width: 50vw;
	margin: 0 auto;
	padding: 1em 1.5em;
	background-color: var(--main-color);
	color: #333;
}
.caption-box p{
	margin: 0;
}
.caption-box::after {
	position: absolute;
	top: 0;
	right: 0;
	border-width: 0 20px 20px 0;
	border-style: solid;
	border-color: var(--base-color) var(--main-color02);
	box-shadow: -1px 1px 1px rgb(0 0 0 / 5%);
	content: '';
}
#section1 .move_img {
	width: 150px;
	position: absolute;
	right: calc(100% + 15px);
}
#section1 .move_img img {
	transform: rotateZ(3deg);
}
#section1 .move_img.tanba {
	right: 30px;
	top: 30%;
}
/*========= section2 con1 introduction 取り組み紹介 ===============*/
#section2 {
	min-height: 50vh;
	padding: 100px 0 100px;
	background-color: var(--main-color);
}

#section2 .main-title_1 h2::before {
	content: url(../images/PartsSet/item/dot2.svg);

}


#section2 .manga {
	width: 55%;
}
.block.sec1 {
	padding-bottom: 50px;
}
.block.sec1:last-of-type {
	padding-bottom: 0px;
}
.introduction .block h3 span{
	color: var(--accent-color);
	margin-right:20px;
	font-weight: 500;
}

#section2 .grid {
	display: grid;
	grid-template-columns: 20% 80%;
	grid-template-rows: 30% 70%;
	align-items: center;
	margin: 0;
  padding: 0;
	padding-top: 15px;
	padding-right: 20px;
  list-style: none;
}
#section2 .introduction .point {
	grid-column: 1;
	grid-row: 1;
	width:70%;
	margin: 0;
	margin-left: auto;
}
#section2 .introduction .midasi {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	font-size: var(--fontsize-headingMS);
	color: var(--accent-color);
}
#section2 .introduction .iconimg {
	position: relative;
	grid-column: 1;
	grid-row: 2;
}
#section2 .introduction img {
	padding: 10px 20px;
	position: relative;
	z-index: 1;
}
#section2 .introduction .iconimg::after {
	content: url(../images/PartsSet/item/pop.svg);;
	transform-origin: center;
	transform: translate(-50%, -50%) scale(0);
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	position:absolute;
	transition: transform .5s ease;
	z-index: -1;
}
#section2 .introduction .iconimg.is-inview::after{
	transform: translate(-50%, -50%) scale(1);
}
#section2 .introduction .sentence {
	grid-column: 2;
	grid-row: 2;
	font-size: var(--fontsize-textL);
}
#section2 .manga img {
  padding: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#section2 h3 {
	font-size: var(--fontsize-headingM);
}

/* ---confirst section3 地域のHUTA活動情報--- */
#section3 {
	min-height: 50vh;
	padding: 100px 0 100px;
	background-color: var(--base-beige);
}
#section3 .main-title_1 h2::before {
	content: url(../images/PartsSet/item/dot2.svg);
}
.containerbox {
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-around;
	padding-top: 50px;
}
.containerbox .box {
	position: relative;
	aspect-ratio: 3 / 2;
	width: calc(50% - 30px);
	display: grid;
	grid-template-columns: 50% 50%;
	grid-template-rows: 50% 50%;
	background-color: var(--main-color);
	align-items: start;

	/* background-image: url(../images/Photo/トピックス画像参考-エリア抜き.png); */
}
.containerbox .box .news-title{
	display: none;
	font-size: var(--fontsize-headingS);
	position: absolute;
	transform: translate(0%,-50%);
	top: 50%;
	right: 0;
	width: 50%;
	text-align: right;
	margin: 0;
	padding: 20px 10px;
	/* background-color: var(--base-color); */
	background-image: linear-gradient(transparent, #ffffff 10% 90%, transparent);
}
.containerbox .box .news-content {
	grid-column: 1;
	grid-row: 1;
	padding: 10px;
  margin: 0;
	font-size: var(--fontsize-text);
}
.containerbox .box .news-content .border-bottom {
	border-bottom: 1px dashed #757575;
}
.containerbox .box img {
	margin: 0;
	padding: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.containerbox .box .news-img {
	grid-column: 2;
	grid-row: 1;
	height: 100%;
  width: 100%;
}
.containerbox .box .news-img2 {
	grid-column: 2;
	grid-row: 2;
	height: 100%;
	width: 100%;
}
.containerbox .area {
	height: 85%;
	height: 70%;
	grid-column: 1;
	grid-row: 2;
	aspect-ratio: 1 / 1;

	background-image: url(../images/PartsSet/item/ふわ枠-02.svg);
	background-position: bottom left;
	background-repeat: no-repeat;

	margin-top: auto;
	padding-top: 15%;
	padding-right: 5%;
	line-height: 1;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	filter: drop-shadow(3px 0px 0px var(--black));

	font-family: 'Shirokuma';
	transform-origin: bottom left;
	transition: scale .5s;
	scale: 1;
}
.containerbox .area .areaplace,.containerbox .area:after {
	width: 100%;
	/* white-space: wrap; */
	white-space: normal;
	font-family: 'Shirokuma';
	font-size: 1.8rem;
	max-width: 8rem;
	font-weight: 400;
	text-align: center;
}
.containerbox .area .areaplace {
	font-size: 2.5rem;
	letter-spacing: -0.4rem;
	max-width: 9rem;
}
.containerbox .area .namiline {
  --height: 5px;
  width: 70%;
  height: var(--height);
  background-image: url(../images/PartsSet/item/波線2.svg);
  background-size: 60px var(--height);
  background-repeat: repeat-x;
  /* background-position: bottom; */
}
.containerbox .area .areaname{
	letter-spacing: -3px;
	line-height: .9;
	font-family: 'Shirokuma';
	/* transform: rotate(-10deg); */
	display: inline-block;
}
.containerbox .area:after {
	color: #000;
	content: attr(data-areachild);
}
.containerbox .box.comingsoon {
	background-color: #aabebf;
}
.containerbox .box.comingsoon > div {
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	justify-content: center;
  align-items: center;
}
.containerbox .box.comingsoon .news-not {
	font-size: var(--fontsize-headingL);
	font-family: 'Pomeranian-Regular';
}

#section3::before{
	background-position: bottom 50% left -40%;
	background-image: url(../images/PartsSet/mapimg/kobe_1.svg);
	bottom: -30%;
	left: 0;
}
/* ---con2 section4 サービス料金--- */

#section4 .main-title_1 h2::before {
	content: url(../images/PartsSet/item/dot2.svg);
}
.con2 {
	min-height: 50vh;
	padding: 180px 0 100px;
	background-color: var(--accent-beige-light);
}

.con2 .title_2 {
	border: 3px solid var(--accent-color);
	border-radius: 10px;
	margin: auto;
	margin-bottom: 0;
}

.con2 .title_2 h3{
	margin: 0;
}
.con2 .title_2 h3:before {
	color: var(--accent-color);
	content: "＊";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: 0;
	line-height: 1.6;
	position: absolute;
}
.con2 .title_2 h3 {
	margin-top: auto;
	position: relative;
	padding: .5em 0 .5em 1em;
	font-size: 1rem;
	line-height: 1.6;
}

.border-bottom{
	border-bottom: 2px dashed #757575;
}

.headingbox {
	padding: .5em 0 .5em 1em;
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.headingbox p {
	line-height: 2;
	margin: 0;
}

.list1 {
	margin-top: 0;
	border: 3px solid var(--accent-color);
	border-radius: 10px;
	list-style: none;
	padding: 0 .8em .5em;
	position: relative;
	display: flex;
	gap: 30px;
	justify-content: space-around;
}
.list1 li {
	border-bottom: 2px dashed #757575;
	margin-top: 10px;
	padding: .5em 0 .5em 1em;
	font-size: 1rem;
	position: relative;
	display: flex;
}
.list1 li:before {
	color: var(--accent-color);
	content: "＊";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: 0;
	line-height: 1;
	position: absolute;
}
.list1 li p {
	line-height: 1;
	margin: 0;
}
.list1 li p:first-child:after {
	content: "……";
	margin: 0 20px;
}
/* .list1 li:last-of-type {
	border-bottom: none;
} */

.serviceprice {
	width: 90%;
	margin: auto;
	position: relative;
	display: flex;
	gap: 45px;
	flex-direction: column;
}
.serviceprice .block {
	display: flex;
}
.serviceprice .sec1 {
	padding: 50px 0 0;
}
.serviceprice .sec2 {
	flex-direction: row-reverse;
}
.serviceimg {
	width: 15%;
	margin-top: -5%;
}
.serviceimg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.servicetext .midasi {
	display: flex;
	align-items: center;
	margin: 15px;
	border-radius: 75px;
	padding: 25px 10px;
	background-color: var(--base-beige);
}

.servicetext .midasi h3 {
	padding-left: 20%;
	font-size: var(--fontsize-headingM);
	margin: 0;
	z-index: 2;
}
.servicetext .midasi img {
  position: absolute;
  margin: -2%;
  width: 13%;
	opacity: 0;
	scale: 2;
	height: auto;
  aspect-ratio: 1 / 1;
}

.servicetext .sentence {
	font-size: var(--fontsize-headingS);
	padding: 30px 30px;
	border-radius: 60px;
	background-color: #f9f7e4cf;
	margin: 30px 15px;
}

#section4 .move_img {
 	opacity: 0;
	z-index: -1;
}
.entrance-trigger2{
	z-index: -1;
	bottom: -25%;
	right: -3%;
	width: 35%;
	opacity: 0;
}
/* ---section6 con4 contact-area お問い合わせ --- */
.con4 {
	min-height: 50vh;
	position: relative;
	padding-top: 80px;
	background-image: linear-gradient(0deg, #e98f00, #f1cfa2 70%, #f1cfa2);
	padding-bottom: 300px;
}
.contact-area .main-title_1 h2::before {
	content: url(../images/PartsSet/item/dot2.svg);
}
/* ---/section6--- */

/* ---section5 con3 member-area 会員募集--- */
.con3 {
	min-height: 50vh;
	padding: 0px 0 150px;
	background-image: linear-gradient(0deg, #f1cfa2, #f9f0af);

}

.member-join{
	display: flex;
	flex-wrap: wrap;
	gap: 80px 50px;
}
.member-join .block.half {
	width: calc(50% - 25px);
}
.member-join .block.full {
	width: 100%;
}
.member-join .midasi {
	background-color: var(--base-color);
	border-radius: 50px;
	width: fit-content;
	padding: 15px 30px;
	margin: 20px 30px;
}
.member-join .sentence {
	border: #fff 5px solid;
	border-radius: 50px;
	padding: 15px 30px;
	/* height: calc(100% - 110px); */
	overflow: hidden;
	opacity: 0;
}
.member-join .block.full .sentence {
	width: 50%;
}
.member-join .block.full .flex {
	gap: 50px;
	align-items: flex-start;
}
.member-join h4:not(.ribbon) {
	font-size: var(--fontsize-headingSM);
	margin: 40px 0;
}
.member-join h5 {
	font-size: var(--fontsize-headingS);
	margin: 5px 0;
}
/* .list-number h5 span {
	margin-left: var(--fontsize-text);
} */

.list-number {
	counter-reset: number;
	/*数字をリセット*/
	list-style-type: none !important;
	/*数字を一旦消す*/
	padding: 0.5em;
	border: dashed 5px var(--accent-color);
	position: relative;
	border-radius: 33px;
	margin-top: calc(1rem + 40px);
}

.list-number.one {
	counter-reset: number 1;
}
.list-number.two {
	counter-reset: number 2;
}

.list-number li {
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 42px;
	border-bottom: dashed 3px var(--accent-color);
	list-style-type: none;
}
.list-number li:last-of-type {
	border-bottom: none;
}
.list-number li:before {
	/* 以下数字をつける */
	position: absolute;
	counter-increment: number;
	content: counter(number);
	/*以下数字のデザイン変える*/
	display: inline-block;
	background: var(--accent-color);
	color: white;
	font-weight: 500;
	font-size: 0.9rem;
	border-radius: 50%;
	left: 12px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	/*以下 上下中央寄せのため*/
	top: calc(1.1rem + 5px);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);


  display: block;
  box-sizing: border-box;
  margin-inline: auto;
  border-radius: 50% 50% 0 50%;
}

.list-number:after {
	/*タイトルタブ*/
	font-size: 1rem;
	background: var(--accent-color);
	color: #fff;
	font-weight: 500;
	position: absolute;
	left: -4px;
	bottom: calc(100% - 15px);
	padding: 1px 7px;
	content: "年会費に含まれる事業";
	/*タブの文字*/
	letter-spacing: 0.05em;
	/*字間*/
	border-radius: 5px;
}

.ribbon {
	font-weight: bold;
	color: #fff;
	--r: .8em;
	padding-right: calc(var(--r) + 3.25em);
	line-height: 1.8;
	clip-path: polygon(-100vw 0, calc(100% - var(--r)) 0, 100% 50%, calc(100% - var(--r)) 100%, -100vw 100%);
	width: fit-content;
	margin-left: -30px;
	padding-left: 30px;
}
.ribbon.gold {
	background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}
.ribbon.silver {
	background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
}
.glass {
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* スクロールダウンの位置 */
.scroll {
	position: relative;
	padding-top: 15px;
}
/* 線のアニメーション部分 */
.scroll::before {
	animation: scroll 2s infinite;
	background-color: #000;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	margin: auto;
	margin-left: 0;
	position: absolute;
	right: 0;
	width: 100px;
	z-index: 2;
}
/* 線の背景色 */
.scroll::after {
	background-color: #ccc;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	margin: auto;
	margin-left: 0;
	position: absolute;
	right: 0;
	width: 100px;
}
.scroll svg {
	animation: scroll-ICON 2s infinite;
	margin: auto;
	margin-left: 0;
	position: absolute;
	left: 0;
	bottom: -10px;
	z-index: 3;
}
/* 線のアニメーション */
@keyframes scroll {
	0% {
		transform: scale(0, 1);
		transform-origin: 100% 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 100% 0;
	}
	51% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	100% {
		transform: scale(0, 0);
		transform-origin: 0 0;
	}
}
@keyframes scroll-ICON {
	0% {
		transform: translateX(100px);
		opacity: 0;
	}
	50% {
		transform: translateX(0px);
		opacity: .8;
	}
	51% {
		transform: translateX(0px);
		opacity: .8;
	}
	100% {
		transform: translateX(-50px);
		opacity: 0;
	}
}

.member-area .move_img {
	right: 20%;
}
.main-title_1 h2 .small {
	font-size: 50%;
	letter-spacing: 0px;
}
/* ---/con3--- */


/* ---box-2--- */
.box-2 {
	position: relative;
	padding: 100px 0;
	color: var(--base-color);
	background-color: transparent;
}
.box-2::before {
	content: "";
	background-color: var(--accent-color);
	color: var(--base-color);
	border-radius: 0 100px;
	display: block;
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.box-2 .main-container {
	position: relative;
	z-index: 1;
}
.box-2:last-child::before {
	border-radius: 0 100px 0 0%;
}
.box-2:first-child::before {
	border-radius: 0 0 0 100px;
}
/* ---main-title---- */
.main-title_1 {
	position: relative;
}
.main-title_1 h2 {
	padding: 60px 50px 20px;
	position: relative;

	font-family: var(--font-en);
	display: inline-block;
	margin-left: -30px;
	margin-bottom: 10px;
	text-align-last: right;
  font-weight: 400;
  font-style: normal;
  font-size: var(--fontsize-headingL);
  color: var(--accent-color);
  letter-spacing: 5px;
}
.main-title_1 h2 span.letters {
  display: inline-block;
  background-image: url(../images/PartsSet/item/波線.svg);
  background-repeat: repeat-x;
  background-size: 330px 2rem;
  padding-bottom: 20px;
  background-position: bottom;
  position: relative;
  width: fit-content;
  height: auto;
}
.main-title_1 h2::before {
	content: url(../images/PartsSet/item/dot.svg);
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
  z-index: -1;
}
/* ---title_1--- */
.title_1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 20px 0;
}
.title_1 h2 {
	font-family: var(--font-title);
	font-weight: 400;
	width: fit-content;
	letter-spacing: 0.1em;
	line-height: 1;
	display: inline-block;
	font-size: 2.2rem;
	text-align: left;
	z-index: 0;
}
.title_1::after,.title_1::before {
	content: "";
	display: inline-block;
	background-repeat: no-repeat;
	width: 150px;
	height: 50px;
	background-size: 100%;
	background-position: center;
}
.title_1::after {
	transform: scale(-1, 1);
}
/* ---title_2--- */
.title_2{
	display: flex;
	align-items: center;
  justify-content: flex-start;
	flex-direction: column;
	padding: 20px;
}
.title_2 h2 {
  font-family: var(--font-title);
  font-weight: 400;
  width: 100%;
  letter-spacing: 0.15em;
	line-height: 1.5;
	display: inline-block;
	font-size: 2.2rem;
	text-align: center;
  z-index: 0;
}
/* .title_2::before {
	content: attr(data-tip);
	display: inline-block;
	border-bottom: 1px solid;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-weight: 500;
} */



/*========= footerのCSS ===============*/
footer{
	display: block;
	/*background: linear-gradient(to top, #fffccc, 80%,#007bbd00);*/
  color: #eee;
  background-image: linear-gradient(0deg, #233a52, #233a52 35%, transparent 80%),
										url(../images/PartsSet/街02.webp);
  z-index: 3;
  position: relative;
  margin-top: -300px;
  background-repeat: no-repeat;
  background-size: 100%;
}
footer p{
	margin-bottom: 0;
}
footer .main-container{
	padding-top: 50px;
	padding: 40px 20px;
}
/* ---iconmenu--- */
.iconmenu .menu-image-title-after.menu-image-title {
  display: none;
}
.iconmenu #nav{
	display: flex;
	padding: 0;
}
.iconmenu .dashicons, .dashicons-before:before {
	width: var(--fontsize-headingM);
  height: var(--fontsize-headingM);
  font-size: var(--fontsize-headingM);
}
/* ---.footA--- */
.footA{
	display: block;
	/*border-left: solid 8px;
	padding-left: 15px;*/
}
.footA img{
	width: 20em;
	margin-top: 10px;
	margin-bottom: 10px;
	}
.footA p{
	margin-top: 0;
	margin-bottom: 0;
}
.footA a{
	color: inherit;
	text-decoration: none;
	width: fit-content;
}
.footA h2{
  font-size: var(--fontsize-headingMS);
}
.footA .uk-text-bold {
	font-family: var(--font-en);
	font-weight: 300;
}
.footA-2 {
	margin-top: 0;
}
.footA-2 .widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 600;
	text-align: right;
	font-family: 'Pomeranian-Regular';
	font-family: 'Shirokuma';
	font-family: 'ShipporiGothic';
}
.footA-2 .widget ul li {
	position: relative;
}
.footA-2 .widget li a {
	font-size: var(--fontsize-text);
	white-space: nowrap;
}
.footA-2 .widget ul li::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 100%;
	right: -5px;
	top: 0;
	background-color: var(--base-color);
}
/* ---.footB--- */
.footB{
	display: flex;
	width: 100%;
	margin-bottom: 20px;
	justify-content: center;
}
.footB ul {
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	justify-content: flex-start;
}
.footB ul.sub-menu {
	flex-flow: column;
}
.footB ul li a,.footB .nav li p {
	text-align: left;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 2.8;
	text-decoration: none;
	font-weight: 500;
	box-sizing: border-box;
	border-bottom: solid 1px currentColor;/*solid=実線 currentColor=文字と同じ色*/
	width: calc(60vw/5);
}
.footB ul li ul li a {/*layer-2▷*/
	border-bottom: none;
	font-weight: lighter;
	font-weight: 200;
}
.footB ul li a:hover {
	opacity: 0.7;
}
/* ---.footC--- */
.footC {
	margin-bottom: 20px;
	text-align: center;
}
.footC a{
	padding: 10px;
	color: #fff;
	color: var(--base-color);
	font-size: 1rem;
	text-decoration: none;
}
.footC p{
	margin: 5px 10px;
}
.footC button{
  vertical-align: middle;
  color: inherit;
	color: var(--black);
	border: none;
  padding: 0;
  margin: 50px;
  border-radius: 0;
  text-align: center;
}
.copywright{
	font-size: .7rem;
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
	margin-bottom: 0;
}
/*========= page ===============*/
div.main-container.block {
	display: block;
	position: relative;
}


/*========= 404 ===============*/
.small-mainimages .title h2 span.error {
	font-family: var(--font-main);
	font-size: var(--fontsize-headingS);
}
.text#planetext.error {
	padding: 50px 20px;
	min-height: 410px;
}


/*============= form ============*/
select,
textarea {
	-webkit-appearance: none;
	appearance: none;
	border: solid 1px var(--dark-gray-color);
	border-radius: 5px;
}
.orange {
	color: var(--accent-color);
}
.form {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.form-left,
.form-right {
	width: 50%;
}
.form-container {
	margin: 30px;
	background-color: var(--base-beige);
	padding: 30px;
	border-left: 5px solid var(--accent-color);
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.heading {
	display: block;
	color: var(--accent-color);
	font-size: var(--fontsize-headingSM);
	font-weight: 500;
	margin-bottom: 0px;
}

.form-container .form .input {
	width: 100%;
	background-color: var(--base-color);
	border: none;
	outline: none;
	font-size: var(--fontsize-text);
	padding: 10px;
	margin-bottom: 0px;
	font-weight: 500;
	transition: all 0.2s ease-in-out;
	border-left: 0px solid var(--accent-color);
}

.form-container .form .input:focus {
	border-left: 5px solid var(--accent-color);
}

.form-container .form .textarea {
	width: 100%;
	padding: 10px;
	border: none;
	outline: none;
	font-size: var(--fontsize-text);
	background-color: var(--base-color);
	font-weight: 500;
	resize: none;
	max-height: 150px;
	margin-bottom: 20px;
	border-left: 1px solid transparent;
	transition: all 0.2s ease-in-out;
}

.form-container .form .textarea:focus {
	border-left: 5px solid var(--accent-color);
}

.form-container .form .button-container,.form-container .form .reset-button-container {
	display: flex;
	gap: 10px;
	filter: drop-shadow(1px 1px 0pxvar(--accent-color));
}

.form-container .form .button-container .send-button {
	flex-basis: 70%;
	background: var(--accent-color);
	padding: 10px;
	color: var(--base-color);
	text-align: center;
	border: 1px solid transparent;
	transition: all 0.2s ease-in-out;
	border-radius: 5px;
	margin: 20px auto 10px;
}

.form-container .form .button-container .send-button:hover {
	background: transparent;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
}
.form-container .form .reset-button-container.spsize .reset-button {
	display: none;
}
.form-container .form .reset-button-container .reset-button {
	flex-basis: 70%;
	position: relative;
	text-align: center;
	background: var(--dark-main-color);
	padding: 10px;
	color: var(--base-color);
	text-align: center;
	border: 1px solid transparent;
	transition: all 0.2s ease-in-out;
	border-radius: 5px;
	margin: 20px auto 10px;
}

.form-container .form .reset-button-container .reset-button:hover {
	background: transparent;
	border: 1px solid var(--dark-main-color);
	color: var(--dark-main-color);
}

.mw_wp_form .error {
	position: absolute;
	top:calc(100% + 3px);
	color: #B70000;
	/* background-color: var(--base-beige); */
	width: fit-content;
	border-radius: 5px;
	padding: 0px 10px;
}

.form .selectbox-1:has(.error){
	margin-bottom: 50px;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea ,select{
  padding: 5px 10px;
  border: none;
	border-bottom: solid 1px var(--dark-gray-color);
	border-radius: 5px;
	font-weight: 400;
}
.form .selectbox-1 {
	position: relative;
}
.form .selectbox-1 .selectbox-arrow,
.form .selectbox-1 .selectbox-arrow::after {
	position: absolute;
	content: '';
	pointer-events: none;
}
.form .selectbox-1 .selectbox-arrow {
	display: inline-block;
	right: 0;
	width: auto;
	height: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 0 3px 3px 0;
	background-color: var(--accent-color);
}
.form .selectbox-1 .selectbox-arrow::after {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%) rotate(45deg);
	width: 13px;
	height: 13px;
	border-bottom: 4px solid #fff;
	border-right: 4px solid #fff;
}
.form .selectbox-1 select.input {
	border: none;
	margin-bottom: 0;
	cursor: pointer;
	/* outline: 0px solid var(--accent-color); */
	transition: all 0.2s ease-in-out;
}

/* .form .selectbox-1 select:focus {
	outline: 2px solid var(--accent-color);
}*/
label {
	margin-bottom: 20px;
	font-size: 1rem;
}
label[for]{
	cursor:auto;
}
#autozip {
	display: none!important;
}

input::placeholder {
	color: #a8a8a8;
	font-weight: 400;
}
input:focus::placeholder {
	color: transparent;
}
.required {
  color: var(--text-red-color);
  width: fit-content;
  white-space: nowrap;
  background: var(--base-color);
	border-radius: 1rem;
	padding: 1px 10px 5px;
	padding: 1px 4px 2px;
	padding: 0px 3px 1px;
}
.mw_wp_form_complete .thank-you {
	/*background-color: var(--base-baige-light);*/
	padding: 10px;
	border-radius: 5px;
}
.card {
  width: 100%;
	padding: 40px 0;
}
.inputBox {
  display: flex;
  flex-direction: column-reverse;
	align-items: left;
	justify-content: flex-start;
	margin-bottom: 35px;
}
.inputBox:last-of-type{
  margin: 0;
}
.inputBox div {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
span.mwform-zip-field {
	width: 100%;
	display: flex;
	align-items: center;
	font-size: var(--fontsize-text);
	gap: 10px;
}
.mwform-zip-field input[type="text"]{
	width: auto!important;
	margin-bottom: 0px !important;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
  border-color: var(--orange-color);
}
:focus-visible {
  outline: var(--orange-color) auto 1px;
}
.confirmbox{
	width: fit-content;
	gap: 50px;
	flex-direction: row-reverse;
}

.button-borders {
	position: relative;
	width: fit-content;
	height: fit-content;
}
.button-borders:before {
	content: "";
	position: absolute;
	width: calc(100% + 0.5em);
	height: 50%;
	left: -0.25em;
	top: -0.25em;
	border: 1px solid var(--dark-main-color);
	border-bottom: 0px;
}
.button-borders:after {
	content: "";
	position: absolute;
	width: calc(100% + 0.5em);
	height: 50%;
	left: -0.25em;
	bottom: -0.25em;
	border: 1px solid var(--dark-main-color);
	border-top: 0px;
	z-index: 0;
}
.shape {
	fill: var(--dark-main-color);
}

.dialog-mwform_select{
	background-color: #fff;
}
.imgattached {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	position: relative;
}
.imgattached:first-of-type {
	padding-top: 30px;
}
.imgattached:last-of-type {
	padding-bottom: 30px;
}
.imgattached input[type=file] {
	display: none !important;
}
.imgattached label {
	border: 1px solid #999999;
	box-shadow: 4px 4px 0px #cccccc;
	border-radius: 8px;
	padding: 8px 66px;
	cursor: pointer;
	text-align: center;
	background-image: url(../images/contact/photo-film-solid-full.svg), url(../images/contact/plus-solid-full.svg);
	background-repeat: no-repeat;
	background-position: left 20px center, right 20px center;
	background-size: 29px auto, 12px auto;
	transition: .2s;
}
.imgattached label:has(.input:focus,.input:active) {
	border: 1px solid #bfa096;
	box-shadow: 2px 2px 0px #bfa096;
	transform: translate(2px, 2px);
}
.imgattached label .mwform-file-delete {
	display: none;
}
.imgattached__status {
	color: #999999;
}
.imgattached__delete {
	background: url(../images/contact/btn-delete.svg) no-repeat center/cover;
	position: absolute;
	right: 0;
	display: block;
	width: 74px;
	height: 42px;
	display: none;
	cursor: pointer;
}

/*========= page-blog ===============*/

.no-post {
	padding-top: 30px;
}

/* 初期状態は透明にする */
.js-anim {
	opacity: 0;
	transition: opacity 0.3s ease;
}
/* 無限ループ（チャタリング）防止のためのスタイル */
.js-anim {
	display: block;
	/* 確実にブロック要素にして高さをコントロールする */
	width: 100%;

	/* スマホ時のアスペクト比（幅560 : 高さ140） */
	aspect-ratio: 560 / 140;
}
/* 画面内に入り、読み込み＆アクティブ化したら表示 */
.js-anim.is-active {
	opacity: 1;
}
/* PC時のアスペクト比（幅1285 : 高さ195） */
@media (min-width: 768px) {
	.js-anim {
		aspect-ratio: 1285 / 195;
	}
}