@charset "UTF-8";
/*
Theme Name: MY THEME 
Author: Aini-ku
Description: Aini-kuオリジナルテーマ
Version: 1.10(2023.2 最新版)
*/


/* ===========================================
 メモ（memo）
 * ======================================== */
/*background-image: url("images/arrow_icon.png");*/

/* ===========================================
 共通（common）
 * ======================================== */
body{
	margin:0;
	font-family: "Notoserif", serif;
	font-weight:500;
	line-height:2.3em;
}
img {
    max-width: 100%;
    height: auto;
}

@font-face {
	font-family: "Notoserif";
	src: url("fonts/NotoSerifJP-Medium.woff") format("woff"),
		url("fonts/NotoSerifJP-Medium.ttf") format("truetype");
}

/* 枠組み（container）
------------------------------------------ */
.wrapper{
	width:100%;
	max-width:100vw;
	overflow:hidden;
	background:#171717;
	color:#fff;
}
.container{
	width:70%;
	margin:auto;
	padding:30px 10px;
}

/*タブレット横向き以下*/
@media screen and (max-width: 1199px) {
	.container{
		width:80%;
		margin:auto;
	}
}
/*タブレット縦向き以下*/
@media screen and (max-width:991px){
	.container{
		width:95%;
		margin:auto;
	}

}
/* レスポンシブ（responsive）
------------------------------------------ */
.pc{
	display:block !important;
}
.sp{
	display:none !important;
}

.tb_yoko{
	display:none !important;
}

/*タブレット横向き以下*/
@media screen and (max-width: 1199px) {
	.tb_yoko{
		display:block !important;
	}
}
@media screen and (max-width:767px){
	.sp{
		display:block !important;
	}
	.pc{
		display:none !important;
	}
}


/* FLEX（flex）
------------------------------------------ */
.flex{
	display:flex;
	align-items:center;
	flex-wrap: wrap;
}
.flex-between{
	justify-content:space-between;
}
.flex-center{
	justify-content:center;
}
.flex-start{
	justify-content:start;
}
.flex-end{
	justify-content:end;
}
.flex-align-start{
	align-items: start;
}
.flex-item10{
	width:10%;
}
.flex-item15{
	width:15%;
}
.flex-item20{
	width:20%;
}
.flex-item25{
	width:25%;
}
.flex-item30{
	width:33%;
}
.flex-item40{
	width:40%;
}
.flex-item45{
	width:45%;
}
.flex-item60{
	width:60%;
}
.flex-item70{
	width:70%;
}

@media screen and (max-width:767px){
	.flex {
		flex-direction: column;        
		align-items: center;            
		justify-content: center;      
	}
	.flex-item10,.flex-item15,.flex-item20,.flex-item25,.flex-item30,.flex-item40,.flex-item45,.flex-item60,.flex-item70{
		width: 100%;
	}
	.reverse{
		flex-direction: column-reverse;
	}
}

/* POSITION（position）
------------------------------------------ */
.center{
	text-align: center;
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}

/* WIDTH（width）
------------------------------------------ */
.w-80{
	width: 80%;
}
.w-90{
	width: 90%;
}

/* ===========================================
 アニメーション（anime）
 * ======================================== */
.fade {
  opacity: 0;
}
.fadeAnime {
  animation-name: fadeAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 1;
}
@keyframes fadeAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeDown{
	opacity:0;
}
.fadeDownAnime{
	animation-name:fadeDownAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.fadeUp{
	opacity:0;
}
.fadeUpAnime{
	animation-name:fadeUPAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeUPAnime{
  from {
	  opacity: 0;
	  transform: translateY(20px);
  }

  to {
	  opacity: 1;
	  transform: translateY(0);
  }
}

/*左から右にフェードイン*/
.fadeIn{
	animation-name:fadeInAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime {
  0% {
     opacity: 0;
     transform: translateX(-20px);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
}

/*右から左にフェードイン*/
.fadeIn2{
	animation-name:fadeInAnime2;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime2 {
  0% {
     opacity: 0;
     transform: translateX(20px);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
}

/*拡大フェードイン*/
.fadeScale{
	animation-name:fadeScaleAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeScaleAnime {
  0% {
     opacity: 0;
     transform: scale(0.9);
  }
  100% {
     opacity: 1;
     transform:scale(1);
  }
}

/*マーカー（蛍光ペン）アニメーション*/
.point{
  background: linear-gradient(transparent 70%, #FFBC4B 70%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition:background-size 1.5s;
}

/* マーカーが引かれる際に付与するクラス */
.point.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

/* ===========================================
 ヘッダー（header）
 * ======================================== */
.header{
	width:100%;
	height:14vh;
	max-height:150px;
	background:#171717;
	color:#fff;
	font-family: "Notoserif", serif;
	font-weight:500;
	overflow:hidden;
}
.header .title{
	text-align:center;
}
.header .title img{
	width:60%;
}
.header a{
	text-decoration:none;
	color:#fff;
	margin:0 5px;
}
.header .menu{
	padding-right:20px;
}
.header .menu a:hover{
	opacity:0.8;
}
.header i{
	/*サイズは直接タグに指定*/
	margin:0 5px;
}
.header .circle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;               
  height: 80px;              
  border-radius: 50%;        /* これで正円に */
  border: 1px solid #fff;   
  color: #fff;               
  text-decoration: none;    
  font-size: 13px;
  background-color: transparent;  /* 背景透明（必要なら色を入れてOK） */
  transition: all 0.3s ease;
}

.header .circle-button:hover {
  background-color: rgba(255, 255, 255, 0.1); /* ホバー時にうっすら白背景 */
}

/*タブレット縦*/
@media screen and (max-width: 991px) {
	.header .menu{
		width:66%;
	}
}
/*ハンバーガーメニュー
------------------------------------------ */
.hamburger_logo{
	width:50%;
}
.menu-btn {
    position: fixed;
    top: 90px;
    right: 50px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 101;
	border-radius:50%;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 7px;
    width: 45px;
    background-color: #c8a200;
    position: absolute;
}
.menu-btn span:before {
    bottom: 15px;
}
.menu-btn span:after {
    top: 15px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
	background-color:#FFFFFF;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
	background-color:#FFFFFF;
}
#menu-btn-check {
    display: none;
}

.menu-content ul {
    padding: 80px 50px 10px 10%;
}
.menu-content ul li {
    list-style: none;
}
.menu-content ul li:not(.menu_category) {
    padding-left:30px;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li {
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul .menu_category{
	color:#FFFFFF;
	text-decoration:none;
}
.menu-content ul .menu_title h3::after{
	content: '';/*何も入れない*/
	display: inline-block;/*忘れずに！*/
	width: 50px;/*画像の幅*/
	height: 40px;/*画像の高さ*/
	background-image: url("images/arrow_icon.png");
	background-size: contain;
	background-repeat:no-repeat;
	vertical-align: middle;
	margin-left:15px;
}

.menu-content {
    width: 30%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 100;
    background-color: black;
	opacity:0.9;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 70%;/*メニューを画面内へ*/
}

@media screen and (max-width:767px){
	.menu-btn {
		top: 20px;
		right: 20px;
	}
	/*スマホ時は全面表示する*/
	.hamburger_logo{
		width:100%;
	}
	.menu-content {
		width:100%;
	}
	#menu-btn-check:checked ~ .menu-content {
		left: 0;/*メニューを画面内へ*/
	}
}
/*ハンバーガーメニューここまで*/

/* ===========================================
 ホームページ（front-page.php）
 * ======================================== */
h2{
	margin-bottom:25px;
	font-size:25px;
}

/*TOPページのFV（headクラス付与）とフッター前（footクラス付与）で使用*/
.front_image_container {
	position: relative;
	width: 100%;
	height: 550px; 
	overflow: hidden;
	border-top: 4px solid #c8a200;
	border-bottom: 4px solid #c8a200;
	box-shadow: 0 1px 2px rgba(255, 255, 200, 0.3);
	background: #171717;
}
.front_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: opacity 3s ease;
	transition-delay: 1s;
	z-index: 0;
}
.front_image.head{
	background-image: url("images/fv_image_head.jpg");
	opacity: 0;
}
.front_image.foot{
	background-image: url("images/fv_image_foot.jpg");
	opacity:1;
}
.front_image_container.foot{
	border:none;
}
.front_image.visible {
  opacity: 1;
}
.front_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
}
.front_image_container .front_message {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: white;
	font-size: 2.7rem;
	text-align: center;
	padding: 1em;
	transition: opacity 0.5s ease;
	transition-delay: 0s;
	z-index: 2;
}
.front_image_container .front_message.head {
	opacity:0;
}
.front_message.head.visible {
  opacity: 1;
}
.front_image_container span{
	font-size:14px;
}
.front_image_container.foot .front_message{
	line-height:1.5em;
}
.front_image_container .foot span{
	font-size:13px;
}


.front .gaiyo{
	margin:10% auto;
}
.front .gaiyo h3{
	margin-block-start: 0.3em;
}

/*各ブロックのタイトル下*/
.custom-hr {
	width: 20%;
	margin: 20px 0;  /*位置*/
	border: none;
	border-top: 1px solid #fff;  
}

.lineup h2{
	margin-block-start: 2.83em;
	margin-block-end: 2.83em;
	margin-top:5%;
}
.slick-slide{
	margin-bottom:50px;
}
.slick-slide img{
	width:80%;
	border: 1px solid #f8e7a1;
	box-shadow: 0 1px 2px rgba(255, 255, 200, 0.3);
}


.front_gift {
	position: relative;
	width: 100%;
	height: 550px; 
	background-image:url("images/front_gift.jpg");
	background-repeat:no-repeat;
	background-size:cover;
	background-position: center;
	margin-top:15%;
}
.front_gift .text_box{
	position: absolute;
	top: 90%;
	left: 80%;
	transform: translate(-50%, -50%);
	background:black;
	color:#fff;
	width:40%;
	padding:7% 5%;
}
.front_gift .text_box h3{
	line-height:1.7em;
}
.kodawari{
	margin-top:20%;
}
.kodawari h2{
	margin-block-end: 3.83em;
}
.kodawari h3{
	line-height:1.7em;
}
.kodawari .flex{
	margin:30px auto 100px auto;
}
.kodawari .image1 img{
	width:85%;
}
.front_message_box{
	background-color:black;
	padding:10% 20%;
	margin-top:3%;
}
.front_message_box .title{
	font-size:1.5em;
}
.front_message_box .text{
	padding-left:100px;
}

.qa{
	padding:10% 0;
}
.qa-container {
	border-top: 2px solid #aaa;
	padding: 40px 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.qa-container.end{
	border-bottom: 2px solid #aaa;
}
.qa-pair {
	display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.qa-pair:last-child {
	margin-bottom: 0;
}
.qa-label {
	font-weight: normal;
    margin-right: 20px;
    width: 30px;
    flex-shrink: 0;
}
.qa-text {
	line-height: 2;
    letter-spacing: 0.05em;
}



/*白色のボタン--他ページでも使用*/
.white-button {
	display:inline;
	padding: 15px 8%;
	border: 1px solid #fff;        
	color: #fff;                   
	background-color: transparent; 
	text-decoration: none; 
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
}
.white-button .arrow {
	display: inline-block;
	margin-left: 10px;
	font-weight: bold;
	transition: transform 0.3s ease;
}
.white-button:hover {
	background-color: rgba(255, 255, 255, 0.1); 
	text-decoration: none; 
	color: #fff; 
}
.white-button:hover .arrow {
	transform: translateX(3px);
}
.white-button.mini{
	padding: 5px 4%;
	font-size: 14px;
}

/*タブレット横向き以下*/
@media screen and (max-width: 1199px) {
	.front_image_container .front_message{
		width:90%;
		margin:auto;
	}
	.front .gaiyo h3{
		font-size:22px;
	}
	.front_gift .text_box{
		width:50%;
		left:72%;
	}
	.front_message_box .flex div{
		width:75%;
		margin:auto;
		text-align:left;
	}
	.front_message_box .text{
		padding-left:0;
	}
}
/*タブレット縦向き以下*/
@media screen and (max-width:991px){
	.front .gaiyo .text_box{
		width:53%;
		padding:5%;
	}
	.front_gift .text_box{
		width:60%;
		left:72%;
	}
	.front_message_box{
		padding:10% 15%;
	}
	.front_message_box .flex div{
		width:85%;
		margin:auto;
		text-align:left;
	}
	.qa .flex div{
		width:100%;
		text-align:left;
	}
	.qa-pair {
		flex-direction: column;
	}
	.qa-label {
		margin-bottom: 5px;
        width: auto;
	}
}
@media (max-width: 767px) {
	.front_image.head{
		background-image: url("images/fv_image_head_sp.jpg");
	}
	.front_image_container .front_message {
		font-size:20px;
		line-height:1.7em;
	}
	.front .gaiyo .text_box{
		width:100%;
	}
	.front_gift .text_box {
		width: 90%;
        left: 50%;
    }
	.front_gift .text_box h3{
		font-size:21px;
	}
	.kodawari{
		margin-top:50%;
	}
	.front_message_box{
		padding:10% 5%;
	}
	.front_message_box h3{
		line-height:1.7em;
	}
	.front_image.foot{
		background-image: url("images/fv_image_foot_sp.jpg");
	}
	
	.white-button {
		padding: 10px 15%;
	}
}

/* ===========================================
 会社概要（company）
 * ======================================== */
/*
 * 他のpageでも使用する共通項目
 * */
.page-title{
	background-color:#171717;
	color:#fff;
	margin-block-start: 0;
    margin-block-end: 0;
	padding:50px 0;
	font-size:35px;
}
.page-title span{
	font-size:18px;
}
.page_image_container {
	position: relative;
	width: 100%;
	height: 400px; 
	overflow: hidden;
	border-top: 4px solid #c8a200;
	border-bottom: 4px solid #c8a200;
	box-shadow: 0 1px 2px rgba(255, 255, 200, 0.3);
	background: #171717;
}
.page_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("images/fv_image_head.jpg");
	background-size: cover;
	background-position: center;
	transition: opacity 3s ease;
	z-index: 0;
}
.page_image_container .page_message {
	position: absolute;
	top: 50%;
	left: 26%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: white;
	text-align: center;
	background-color:black;
	padding: 1em;
}
.back-top{
	margin-top:40px;
}
.back-top a{
	color:#fff;
	text-decoration:unederline !important;
}
.back-top a:hover{
	color:#fff;
	text-decoration:unederline;
}




.company-page .page_image {
	background-image: url("images/company/company_head.jpg");
}
/*表*/
.company-page table {
	width: 100%;
	max-width: 920px;
    border-collapse: collapse;
    margin: 0 auto;
	font-size:17px;
	margin-top:2em;
}
.company-page th,
.company-page td {
	text-align: left;
	vertical-align: top;
    padding: 18px;
    border-bottom: 1px solid #fff;
}
.company-page th {
	width: 20%;
    white-space: nowrap;
}
.company-page table a {
	color: #fff;
}
.company-page table a:hover {
	text-decoration: underline;
}
.company-page .attend{
	margin-top:10%;
	margin-bottom:20px;
}
.company-page .white-button{
	margin-top:10px;
}

@media screen and (max-width: 767px) {
	.company-page .page_image {
		background-image: url("images/company/company_head_sp.jpg");
	}
	.company-page td {
		font-size:15px;
	}
}

/* ===========================================
 私たちについて（about）
 * ======================================== */

.about-page .page_image {
	background-image: url("images/about/about_head.jpg");
}

.about-page .gaiyo{
	margin-top:10%;
}
.about-page .about_text{
	margin-top:45px;
}
.about-page .about_image{
	width:30%;
	margin:12% auto 22% auto;
}

.about-page .profile-section {
	padding: 60px 0;
	min-height: 65vh;
}
.about-page .photo {
	width: 300px;
	height: 400px;
	background-color: #666;
	color: #111;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: -100px; /* 重なり演出 */
	z-index: 1;
	position: relative;
}
.about-page .profile-box {
	background-color: #ccc;
	padding: 30px;
	margin-top: 50px;
	width: 500px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	z-index: 2;
	position: relative;
	color:black;
}
.about-page .profile-box .name {
	font-size: 1.2em;
	margin-bottom: 10px;
	font-weight: bold;
}
.about-page .profile-box hr {
	margin-bottom: 20px;
	border: none;
	border-top: 1px solid #555;
}
.about-page .profile-box .text {
	font-size: 1em;
	line-height: 2;
}


.about-page .kodawari_image img{
	width:80%;
}
.about-page .kodawari_text{
	background:black;
	padding:5% 3%;
}
.about-page .kodawari_text .title{
	font-size:20px;
}
.about-page .kodawari_box{
	margin:7% auto 7% auto;
}

.about-page .message{
	background:black;
	padding:10%;
	margin-top:50px;
}
.about-page .message .title{
	font-size:1.5em;
}
.about-page .message .message_image{
	width:auto;
	height:300px;
}

.about-page .art-bear-section {
	display: flex;
    flex-wrap: wrap;
    width: 100%;
	margin-top:7%;
}
.about-page .art-bear-box {
	position: relative;
    flex: 1 1 50%;
    height: 600px; /* 適宜調整 */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.about-page .art-bear-box::before {
	content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* 暗めのオーバーレイ */
}
.about-page .art-bear-content {
	position: relative;
	top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.about-page .art-bear-content .title {
	font-size: 1.8rem;
    margin-bottom: 20px;
}


/*タブレット縦向き以下*/
@media screen and (max-width:991px){
	.about-page .kodawari_text{
		width:60%;
	}
	.about-page .message .message_image{
		margin-bottom:20px;
	}
}

@media screen and (max-width: 767px) {
	.about-page .page_image {
		background-image: url("images/about/about_head_sp.jpg");
	}
	.about-page h3{
		line-height:1.7em;
	}
	.about-page .photo{
		margin-right: 0;
		margin-bottom: 20px;
		width: 80%;
		max-width: 300px;
	}
	.about-page .profile-box {
		width: 95%;
		padding: 30px;
	}
	.about-page .kodawari_text{
		width:95%;
	}
	.about-page .kodawari_box{
		margin:10% auto 20% auto;
	}
	.about-page .message{
		padding:5%;
	}
	.about-page .art-bear-box{
		height:400px;
	}
}
/* ===========================================
 ラインナップ（product）
 * ======================================== */
.lineup-page .page_image {
	background-image: url("images/lineup/lineup_head2.jpg");
}
.lineup-page .gaiyo{
	margin-top:10%;
}
.lineup-page h3{
	line-height:1.5em;
}
.lineup-page .item{
	margin-top:40px;
}
.lineup-page .item_img{
	margin-top:70px;
}
.lineup-page .item_img img{
	max-width:70%;
	border: 1px solid #c8a200;
	box-shadow: 0 1px 2px rgba(255, 255, 200, 0.3);
}
.lineup-page .item_text{
	width:70%;
	margin:auto;
	font-size:17px;
}
.lineup-page .item_text span{
	font-size:14px;
}

.lineup-page .insta{
	margin-top:90px;
	margin-bottom:20px;
}
.lineup-page .white-button{
	margin-top:10px;
}
.lineup-page .cta{
	margin-top:90px;
}
.lineup-page .cta .attend{
	margin-bottom:20px;
}

@media screen and (max-width: 767px) {
	.lineup-page .page_image {
		background-image: url("images/lineup/lineup_head_sp.jpg");
	}
	.lineup-gift .text_box{
		padding-left:7%;
	}
}

/* ===========================================
 オーダーについて（original）
 * ======================================== */
.original-page .page_image {
	background-image: url("images/original/original_head.jpg");
}
.original-page h3{
	line-height:1.5em;
}
.original-page .gaiyo_box{
	position:relative;
	background-color:black;
	padding:5% 15% 5% 55%;
	margin-top:25%;
	margin-bottom:15%;
}
.original-page .gaiyo_box .image{
	width:40%;
	position:absolute;
	top: 10%;
	left: 30%;
	transform: translate(-50%, -50%);
}

.original-page .original_kodawari{
	margin:70px 0;
}
.original-page .original_kodawari.start{
	margin-top:100px;
}
.original-page .original_kodawari.end{
	margin-bottom:100px;
}

.original-page .kodawari-title-wrapper {
	display: flex;
	align-items: flex-start; /* 1行目の高さに合わせる（2行の場合） */
	position: relative;
}
.original-page .original_kodawari_padding_right .kodawari-title-wrapper {
	align-items: baseline; /* 1行目の高さに合わせる（1行の場合） */
}
.original-page .original_kodawari_title {
	font-size: 1.5em;
	line-height: 1.4;
	margin: 0;
	margin-bottom:30px;
}
.original-page .title-text {
	display: inline-block;
}
.original-page .title-dot {
	color: #fff;
	font-size: 2em;
	white-space: nowrap;
	line-height: 1.4;
}
.original-page .original_kodawari_padding_left .title-dot {
	padding-left: 1em;
	margin-left: auto;
}
.original-page .original_kodawari_padding_right .title-dot {
	padding-right: 1em;
	margin-left:0;
	line-height: 1; 
}
.original-page .original_kodawari_padding_right .original_kodawari_text{
	padding-left:140px;
}

.original-page .original_kodawari_padding_right{
	padding-right:4%;
}

.original-page .shape_box{
	margin:100px auto;
}
.original-page .shape_box .text,.original-page .shape_box img{
	width:80%;
	margin:auto;
}



.original-page .price_box{
	background:black;
	padding:6% 8%;
	margin-top:50px;
	margin-bottom:15%;
}
.original-page .price_box .price_image{
	width:auto;
	height:350px;
}
.original-page .price_box .title{
	border-top:solid 2px #fff;
	border-bottom:solid 2px #fff;
	padding:20px 20px;
	font-size:22px;
}

.original-page .step_box_title span{
	font-size:15px;
}
.original-page .step_box{
	margin:10% 0 15% 0;
}
.original-page .step-item {
	margin-bottom: 80px;
    position: relative;
}
.original-page .step-item:last-child {
	margin-bottom: 0;
}
.original-page .step-number {
	background-color: #000000;
    color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}
.original-page .step-number .step-text {
	font-size: 12px;
    margin-bottom: 2px;
}
.original-page .step-number .step-num {
	font-size: 28px;
    font-weight: bold;
}
.original-page .step-content {
	flex: 1;
}
.original-page .step-inner {
	display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.original-page .step-title {
	font-size: 24px;
    font-weight: bold;
    color: #ffffff;
	width: 40%;
    margin-right: 20px;
    margin-bottom: 15px;
}
.original-page .step-right {
	flex: 1;
    min-width: 300px;
}
.original-page .step-description {
	font-size: 14px;
    color: #cccccc;
    line-height: 1.8;
}
.original-page .step-list {
	margin-top: 20px;
}
.original-page .step-list li {
	margin-bottom: 8px;
    font-size: 14px;
    color: #cccccc;
}
.original-page .step_box .arrow {
	display: flex;
	justify-content: flex-start;
	margin: 40px 0 40px 35px;   
	position: relative; 
}
.original-page .step_box .arrow::before {
	content: '';
    width: 2px;
    height: 60px;
    background-color: #666666;
    position: relative;
	left: 0;
}
.original-page .step_box .arrow::after {
	content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #666666;
    margin-top: 50px;
	left: -5px; 
	top: 60px;   
}


.original-page .line-order-section {
	position: relative;
	background: url('images/original/original_image_foot.jpg') center center / cover no-repeat;
	color: #fff;
	padding: 100px 20px;
	text-align: center;
	overflow: hidden;
}
.original-page .line-order-section .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* オーバーレイで暗くする */
	z-index: 1;
}
.line-order-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}
.line-order-title {
	font-size: 24px;
	margin-bottom: 30px;
}
.line-order-text {
	font-size: 14px;
	margin-top:5%;
	margin-bottom: 20px;
}

.original-page .attend_product{
	margin-top:80px;
}



/*タブレット横向き以下*/
@media screen and (max-width: 1199px) {
	.original-page .gaiyo_box{
		padding:5% 10% 5% 55%;
	}
	.original-page .original_kodawari_padding_right{
		padding-right:0;
	}
}




@media screen and (max-width: 767px) {
	.original-page h2,.original-page h3{
		line-height:1.7em;
	}
	.original-page .page_image {
		background-image: url("images/original/original_head_sp.jpg");
	}
	.original-page .gaiyo_box{
		position:static;
		padding:5%;
	}
	.original-page .gaiyo_box .image{
		position:static;
		transform:none;
		width:100%;
	}
	.original-page .original_kodawari,.original-page .original_kodawari2{
		padding:7%;
	}
	.original-page .original_kodawari_padding_right .original_kodawari_text{
		padding-left:0;
	}
	.original-page .original_kodawari_padding_right,.original-page .original_kodawari_padding_left{
		margin-top:20px;
	}
	.original-page .shape_box div{
		margin-bottom:20px;
	}
	.original-page .price_box .price_image{
		margin-bottom:20px;
	}
	
	.original-page .step_box{
		padding:0 5%;
	}
	.original-page .step-item .flex{
		justify-content:start;
		align-items:start;
	}
	.original-page .step-number {
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}
	.original-page .step-number .step-num {
		font-size: 22px;
	}
	.original-page .step-inner {
		flex-direction: column;
	}
	.original-page .step-title {
		font-size: 20px;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
	}
	.original-page .step-right {
		min-width: auto;
	}
	.original-page .step-description {
		font-size: 13px;
	}
	.original-page .step_box .arrow{
		margin: 30px 0;
		justify-content:center;
	}
	.original-page .step-box .arrow::before {
		height: 40px;
	}
	.original-page .step_box .arrow::after {
		margin-top: 0;
		left:auto;
	}
	.original-page .line-order-text{
		margin-bottom:50px;
	}
	.original-page .attend_product{
		margin-top:50px;
	}
}

/* ===========================================
 ご利用ガイド・特商法（guide）
 * ======================================== */
.guide-page .guide h2{
	border-left:#fff solid 4px;
	padding-left:10px;
	line-height:2;
}
.guide-page .guide_text{
	padding-left:10px;
}
.guide-page .legal-info{
	margin-top:50px;
}
.guide-page .legal-info h3{
	font-size:18px;
	border-top:#fff solid 1px;
	border-bottom:#fff solid 1px;
	padding:10px 0 10px 12px;
}
.guide-page .legal-info p{
	padding-left:12px;
}



/* ===========================================
 新着情報（news）
 * ======================================== */
.news-page .news_list{
	width:65%;
	margin:10% auto;
	list-style:none;
}
.news-page .news_list a{
	color:#fff;
}
.news-page .news_list li{
	margin-bottom:20px;
	font-size:16px;
}
.news-page .news_list .cat{
	display:inline-block;
	background:#fff;
	color:black;
	padding:1px 6px;
	margin-right:15px;
	border-radius:5px;
	min-width:110px;
	font-size:12px;
	text-align:center;
}
.news-page .news_list .cat:hover{
	text-decoration:none;
	opacity:0.8;
}

.news-page .current{
	text-decoration:underline;
}
.news-page .page-numbers{
	color:Azure;
	font-size:16px;
}

/* ===========================================
 投稿ページ（single.php）
 * ======================================== */
/* 見出しやカテゴリ文字色 */
.single-page .myposthead {
    margin-bottom: 30px;
	border-bottom:solid 1px #fff;
}
.single-page .myposthead .post-categories{
	list-style:none;
	padding-inline-start: 0px;
}
.single-page .myposthead .post-categories a{
	background:#fff;
	color:black;
	padding:5px 10px;
	border-radius:5px;
	border:solid 1px #fff;
}
.single-page .myposthead .post-categories a:hover{
	text-decoration:none;
	background:black;
	color:#fff;
}
.single-page .myposthead h1 {
    font-size: 2.2em;
    margin: 0.2em 0;
    color: #fff;
}
/* 日付の色を少し薄く */
.single-page time {
    display: block;
    margin-top: 0.3em;
	margin-bottom:10px;
    font-size: 1.2em;
    color: #aaa;
}

/* 記事本文 */
.single-page .post_contents {
    line-height: 1.8;
    font-size: 1.1em;
}

/* 関連記事セクション */
.single-page aside.myrelated {
    margin-top: 3em;
    border-top: 1px solid #444;
    padding-top: 2em;
}
.single-page aside.myrelated h2 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 1em;
}
.single-page .mypostlist article {
    margin-bottom: 1em;
}
.single-page .mypostlist article a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
}
.single-page .mypostlist article a:hover h3 {
	opacity:0.8;
}
.single-page .mypostlist article a h3{
	font-size:16px;
	padding:10px 0 10px 20px;
	background:grey;
	border-radius:5px;
}

/* 投稿ナビゲーション全体をflexで左右配置 */
.single-page .nav-links {
    display: flex;
    justify-content: space-between;
    margin: 3em 0;
}

/* 前後リンク共通 */
.single-page .post-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
}

.single-page .nav-previous,.single-page .nav-next{
	width:40%:
}
/* もし前の記事がない場合は、flex-endにしてnextの矢印を右寄せに */
.single-page .nav-links:not(:has(.nav-previous)) {
  justify-content: flex-end;
}


/* ===========================================
 カテゴリー一覧ページ（archive）
 * ======================================== */
.category-page .category_list{
	width:65%;
	margin:10% auto;
	list-style:none;
	color:#fff;
}
.category-page .category_list article{
	font-size:16px;
	margin-bottom:20px;
}
.category-page .category_list a{
	color:#fff;
}



/* ===========================================
 お問い合わせ（contact）
 * ======================================== */
.contact-page .page_image {
	background-image: url("images/contact/contact_head.jpg");
}
.contact-page .btoc{
	margin-top:10%;
}
.contact-page .text{
	width:594px;
	max-width:90%;
	margin:auto;
}
.contact-page .attend{
	margin-top:8%;
	margin-bottom:20px;
}
.contact-page .btoc .white-button{
	margin-top:10px;
}
.contact-page .image{
	margin:5% auto;
}

.contact-page .cform{
	width:65%;
	margin:8% auto;
}
.contact-page .cform th{
	width:40%;
	padding:30px 0 30px 10px;
	font-size:18px;
	border-bottom:solid 1px #fff;
}
.contact-page .cform td{
	border-bottom:solid 1px #fff;
}
.contact-page input, .contact-page textarea{
	border:none;
	height:100%;
	outline: none;
	background:none;
	border:none;
}
.contact-page textarea{
	height:200px;
}
.contact-page textarea::placeholder {
	padding-top:10%;
}
.contact-page .policy{
	width:65%;
	height:200px;
	overflow-y:scroll;
	border:solid 0.5px #fff;
	padding:10px 6px;
	margin:auto;
}
.contact-page .policy .policy_title{
	font-size:20px;
	margin-bottom:20px;
}
.contact-page .policy_check{
	text-align:center;
	margin:20px auto;
}
.contact-page .guide_box {
  width: 60%;
  margin: auto;
}


.required-srt{
	background-color:red;
	color:#FFF;
	font-size:12px;
	padding:5px;
	margin-left:30px;
}
.any-srt{
	background:#0276C3;
	color:#FFF;
	font-size:12px;
	padding:5px;
	margin-left:30px;
}
.submit_div{
	text-align:center;
}
.submit_div input{
	width:250px;
	background:#fff;
	color:black;
	margin-top:20px;
	margin-bottom:10%;
	padding:10px;
	font-size:15px;
}
.submit_div input:hover{
	opacity:0.7;
}

.contact-page input[type="checkbox"] {
	position: relative;
	width: 16px;
	height: 16px;
	border: 1px solid #000;
	vertical-align: -5px;
	-webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
}
.contact-page input[type="checkbox"] {
	border-radius: 2px;
	-webkit-appearance: none;
     -moz-appearance: none;
	appearance: none;
	border:solid 1px #fff;
}
.contact-page input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

/*タブレット横向き以下*/
@media screen and (max-width: 1199px) {
	.contact-page .cform {
		width: 70%;
		table-layout: fixed;
		border-collapse: collapse;
	}
	.contact-page .cform th,
	.contact-page .cform td {
		padding: 10px;
		vertical-align: top;
	}
	.contact-page .cform th {
		width: 40%;
		font-weight: bold;
		text-align: left;
		white-space: nowrap;
	}
	.contact-page .cform td {
		width: 60%;
	}
	
}
/*タブレット縦向き以下*/
@media screen and (max-width:991px){
	.contact-page .cform {
		width: 90%;
	}
	.contact-page .policy{
		width:90%;
	}
	.contact-page .guide_box {
		width: 80%;
	}
}
@media screen and (max-width:767px){
	.contact-page .btob h3{
		line-height:1.7em;
	}
	
	
	.contact-page .policy .policy_title{
		font-size:18px;
	}
	.contact-page .cform th, .contact-page .cform td{
		width:100%;
		display:block;
	}
	.contact-page .cform th{
		text-align:center;
	}
	.contact-page .cform td{
		height:50px;
	}
	.contact-page .cform td.otoiawase{
		height:200px;
	}
	.contact-page input, .contact-page textarea{
		width:100%;
	}
	.submit_div input{
		width:80%;
	}
}


/* ===========================================
 フッター（footer）
 * ======================================== */
.site-footer {
	background-color:#171717;
	color: #fff;
	padding: 60px 30px 30px;
	font-size: 14px;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-left {
	flex: 1;
	min-width: 250px;
}

.footer-logo {
	width: 50%;
	margin-bottom: 20px;
}

.sns-links {
  margin-bottom: 20px;
}

.sns-links a {
	color: #fff;
	text-decoration: none;
	margin-right: 15px;
	border-bottom: 1px solid #fff;
	padding-bottom: 2px;
}

address {
	font-style: normal;
	line-height: 1.8;
}

.footer-right {
	display: flex;
	gap: 60px;
	flex: 2;
	justify-content: flex-end;
	min-width: 300px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
}
.sns-links a:hover,.footer-links a:hover{
	opacity:0.8;
}

.footer-copy {
	text-align: center;
	margin-top: 40px;
	font-size: 13px;
	color: #aaa;
}
@media screen and (max-width: 767px) {
	.footer-right {
		justify-content: start;
		min-width: calc(2/100vw);
}
}
