@charset "UTF-8"; 

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"); 

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"); 

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap'); 

@import url("slide.css"); 

@import url("inview.css");
/*CSSカスタムプロパティ
---------------------------------------------------------------------------*/
:root {

	--bg-color: #fff;
	--bg-inverse-color: #333;
	
	--primary-color: #05273f;
	--primary-inverse-color: #fff;

	--light-color: #ddecf7;	
	--light-inverse-color: #333;

	--secondary-color: #43616d;	
	--secondary-inverse-color: #fff;
	
	--accent-color: #9d8950;
	--accent-inverse-color: #fff;

	--content-space: 8.33vw; 

	--headerH: 70px;  

}

@media screen and (max-width:500px) {

:root {
	--content-space: 10px;
}
}

@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}

@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}



body * {box-sizing: border-box;}
html,body {
	font-size: 13px;
}

@media screen and (min-width:900px) {

html, body {
	font-size: 15px;
	margin: 0px;
    padding: 0px;
}
}


body {
	margin: 0;padding:0;
font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
	font-optical-sizing: auto;
	-webkit-text-size-adjust: none;
	background: var(--bg-color);
	color: var(--bg-inverse-color);
	line-height: 2;	
}

figure {
	margin: 0;
}
dd {
	margin: 0;
}
nav,ul,li,ol {
	margin: 0;
	padding: 0;
}
nav ul {
	list-style: none;
}

table {
	border-collapse:collapse;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

video {
	max-width: 100%;
}

iframe {
	width: 100%;
}

input {
	font-size: 1rem;
}
section > ol,section > ul {
	margin-left: 2rem;
}

/*section*/
section {
	padding: 0 var(--content-space);
	margin: 5vw 0;
}

select {
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 14px;
    padding: 20px 15px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

select.is-empty{
    color: #757575;
}

select:invalid {
    color: #757575;
}

.c-ttl{
    font-size: 20px;
    font-weight: bold;
}

.c-form{
    margin-top: 20px;
}

.c-form__select{
    position: relative;
}

.c-form__select::after{
    border-color: #191919 transparent transparent transparent;
     border-style: solid;
    border-width: 12px 8px 0 8px;
    content: "";
    height: 0;
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}

/*リンクテキスト*/
h1 {
	font-size: 10px;

}

a {
	color: inherit;
	transition: 0.3s;	
}

/*マウスオン*/
a:hover {
	text-decoration: none;
}

p {
	text-align: justify;
}

p.c {
	text-align: center;	
}

p.b {
	text-align: justify;
	width: 60%;
	font-size: 120%;
	line-height: 1.5
}
	@media screen and (max-width:800px) {
		
p.b {
	text-align: justify;
	width: 90%;
	font-size: 100%;
	line-height: 1.5
}
}

p.custom-select-wrapper {
    display: inline-block;
    user-select: none;
}

  .custom-select-wrapper select {
    display: none;
}

  .custom-select {
    position: relative;
}

  .custom-select-trigger {
    position: relative;
    display: flex;
    width: auto;
    font-size: 13px;
    color: #fff;
    line-height: 30px;
    background: #05273f;
    cursor: pointer;
    text-indent: 1em;
}

  .custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px; height: 10px;
    top: 25%; right: 15px;
    margin-top: 3px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}

  .custom-select.opened .custom-select-trigger:after {
    margin-top: 9px;
    transform: rotate(225deg) translateY(-50%);	  
}

  .custom-options {
    position: absolute;
    display: block;
    top: 110%; left: 0; right: 0;
    min-width: 100%;
    margin: 15px 0;
    border: 1px solid #fff;
    box-sizing: border-box;
    box-shadow: 0 2px 1px rgba(0,0,0,.07);
    background: #05273f;
    transition: all .6s ease-in-out;
    text-indent: 1em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
	z-index: 2;
}

  .custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
  .custom-options:before {
    position: absolute;
    display: block;
    bottom: 100%; right: 25px;
    width: 7px; height: 7px;
    margin-bottom: -4px;
    background: #05273f;
    transform: rotate(45deg);
    transition: all .6s ease-in-out;
}

  .option-hover:before {
    background: #fff;
}

  .custom-option {
    position: relative;
    display: block;
    padding: 0 22px;
    border-bottom: 5px solid #fff;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 30px;
    cursor: pointer;
    transition: all .6s ease-in-out;
}

  .custom-option:first-of-type {
    border-radius: 4px 4px 0 0;
}

  .custom-option:last-of-type {
    border-bottom: 0;
    border-radius: 0 0 4px 4px;
}

  .custom-option:hover,
  .custom-option.selection {
    background: #0f7fce;
}

/*ボタンスタイル*/
.shine-button {
	margin: 1.5em auto;
	text-align: center;	
	display: block;	
	width: 100%;
	max-width: flex;
	border-radius: 0px;	
	cursor: pointer;
   	position: relative;
	overflow:hidden;
}

/*-ボタン*/
.shine-button::before {
	content: "";
	position: absolute;	
	display: block;	
    background: linear-gradient(to right,rgba(255,255,255,0.8), rgba(255,255,255,0.6),rgba(255,255,255,0.4),rgba(255,255,255,0.2),rgba(255,255,255,0));
	
	width: 50px;
	height: 50px;
	top: -60px;	
	left: -60px;
	animation-name:shine-run;	
	animation-delay:0s;		
	animation-duration: 3s;	
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
}

/*アニメーションタイミングとボックス*/
@keyframes shine-run {
    0% {
        transform: scale(0) rotate(50deg);        
        opacity: 0;
    }

    40% {
        transform: scale(1) rotate(50deg);        
        opacity: 1;
    }

    100% {
        transform: scale(250) rotate(50deg);
        opacity: 0;
}
}

/*conatiner*/
#container {
	animation: opa1 0.2s 0.4s both; 
	display: grid;
    grid-template-rows: auto; 
    height: calc(100% - auto);
	min-height: 100vh;
	min-height: 100svh;
}

body:not(.home) #container {
    grid-template-rows: auto; 
    height: calc(100% - auto);
}

/*header*/
header {
	position: fixed;
	z-index: 100;
	width: 100%;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	line-height: 1.5;
	height: var(--headerH);
	transition: transform 0.5s ease, opacity 0.5s ease;
	padding: 0 var(--headerH) 0 2rem;
}

.site-header.is-hide {
	opacity: 0;
	transform: translateY(-100%);
	pointer-events: none;
}

@media screen and (max-width:800px) {
header {
	transform: translateZ(0);
	backface-visibility: hidden;
}

header nav i {
	padding-right: 0.5rem;
}
}

/*logo画像*/
#logo {
	margin: 0;
	flex-shrink: 0;}
#logo img {
	display: block;
	height: 24px;
	margin: 5px 0;
}


/*headerメニュー*/
header nav {
	flex: 1;
}

header nav ul {
	display: flex;
	gap: 1rem;
}

@media screen and (max-width:1140px) {
header nav ul {
	display: none;
}
}

/*メニュー設定*/
header nav ul a {
	display: block;
	text-decoration: none;
	text-align: center;
}


/*headerメニュー*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	
}

/*headerドロップダウン*/
header nav ul ul {
	position: absolute;
	z-index: 100;
	margin-left: 1rem;
	border: 1px solid var(--primary-color);
}

header nav ul ul li:not(:last-child) {
	border-bottom: 1px solid var(--primary-color);
}

header nav ul ul a {
	padding: 0.3em 1em;	
	background: #fff;
	color: #333;
}

/*menu初期設定*/
#menubar {
	display: none;
}

#menubar ul {
	list-style: none;margin: 0;padding: 0;
}

#menubar a {
	display: block;text-decoration: none;
}

.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {
	display: block;
}

/*ハンバーガー非表示*/
#menubar_hdr.display-none {
	display: none;
}

/*ドロップダウン非表示*/
.ddmenu_parent ul {
	display: none;
}

/*ddmenu*/
a.ddmenu::before {
	font-family: bootstrap-icons;
	content: "\F229";
	margin-right: 0.4em;
	display: inline-block;
	transform: scale(0.8) translateY(0.1em);
	opacity: 0.7;
}

/*開閉*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	inset: 0;
	padding: 100px var(--content-space) 50px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	line-height: 1.5;
	font-size: 1.2rem;
}

.small-screen #menubar {display: none;}

.small-screen #menubar a {
	display: block;text-decoration: none;
	background: var(--primary-inverse-color);	
	color: #333;
	margin-bottom: 1rem;
	padding: 1rem 2rem;	
}

.small-screen #menubar ul ul a {
	background: var(--bg-color);
	color: var(--bg-inverse-color);	
	border: 1px solid var(--bg-inverse-color);	
	margin-left: 2rem;	
}

/*ハンバーガーアイコン*/
#menubar_hdr {
	display: none;
	animation: opa1 0s 0.2s both;
	cursor: pointer;
	width: var(--headerH);
	height: var(--headerH);
	position: fixed;z-index: 101;
	right: 0px;
	top: 0px;
}

#menubar_hdr.ham {
	background: #9d8950;
}

#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	transition: 0.3s;
	width: 35px;
	height: 2px;
	background: #fff;
	box-shadow: 1px 1px rgba(0,0,0,0.3);
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}

#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}

#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}


#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}

#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}

#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

.small-screen #menubar_hdr {
	display: flex;
}

/*main*/
main {
	overflow-x: clip;
	min-width: 0;
}

body:not(.home) main {
	margin-top: var(--headerH);	
}

main h2 {
	display: inline-flex;
	flex-direction: column-reverse;	
	font-size: 1.8rem;
	font-weight: 400;
}

main h2.c {
	display: flex;
}

main h2 .small, main h4 span {
	font-size: 0.8rem;
	opacity: 0.5;
	letter-spacing: 0.2em;
	text-align: center;
}

/*見出しロゴ*/
main h2.logo-mark {
	background: url('../images/logo_mark.webp') no-repeat center top / 45px;	
	padding-top: 30px !important;	
}
main h2.logo-mark2 {
	background: url('../images/logo_mark2.webp') no-repeat center top / 45px;
	padding-top: 30px !important;
}

/*SCROLL*/
@keyframes scroll-line {
  0% {transform: scaleY(1);}
  50% {transform: scaleY(0);}
  100% {transform: scaleY(0);}
}

.scroll-container {
	position: absolute;
	width: 100px;
	left: calc(50% - 50px);
	bottom: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.85rem;	
}

.scroll-container p {
	margin: 0;padding: 0;
	text-align: center;
	width: 80px;
	line-height: 77px;
	border: 2px solid rgba(255,255,255,0.5);
	border-radius: 50%;	
}

.scroll-line {
	margin: 0 auto;
	position: relative;
	width: 4px;	
	height: 150px;
	background: rgba(255,255,255,0.5);
}

.scroll-line span {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #fff;
	animation: scroll-line 2s infinite;	
	transform-origin: bottom;
}

/*テキスト飾り文字*/
.text-kazari {
	line-height: 1;
	font-size: 8vw;
	margin-bottom: -5.5vw;
    background: linear-gradient(var(--light-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/*パララックス*/
.scrollfx-box {
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
	position: relative;
	height: 30rem;
	overflow: hidden;
}

.scrollfx-box::before {
	content: "";
	position: absolute;z-index: 1;
	inset: 0;
	background-color: rgba(0,0,0,0.5);
}

.scrollfx-move {
	--fx-extra: 240px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	width: 100%;
	height: calc(100% + var(--fx-extra));
	object-fit: cover;
	will-change: transform;
	transform: translate3d(0,-50%,0);
}

.scrollfx-box .text {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 2;
	padding: 20px;
	color: #fff;
}

/*ラインナップ*/
@media screen and (min-width:1000px) {
.flex1 {
	display: flex;
	gap: 4vw;
	align-self: start;
	align-items: center;
}
}

.flex1 .list-grid-menu {
	margin: 0;padding: 0;list-style: none;
	flex: 0 0 25rem;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.flex1 .list-grid-menu li {
	padding: 0.5rem 0.5rem 0.5rem 1rem;
	border: 1px solid #ccc;
	transition: border-color 0.3s;
}

.flex1 .list-grid-menu a {
	display: block;
	text-decoration: none;
}

.flex1 .list-grid-menu li:has(> a):hover{border-color: #333;	
}

.flex1 .list-grid-menu i {
	display: inline-block;
	padding-right: 1.5rem;
	color: var(--accent-color);
	transform: scale(1.5);
	transform-origin: left center;
}

/*３列*/
.list-grid .list * {margin: 0;padding: 0;}

/*ブロック全体のブロック*/
.list-grid {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 3vw;
}

.list-grid .list {
	display: grid;
	grid-template-rows: auto;
	position: relative;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	padding: 1rem;
	line-height: 1.5;
}

.list-grid .list figure {
	margin-bottom: 0.5rem;
}

.list-grid h4 {
	text-align: center;
	margin-bottom: 0.5rem !important;
}

.list-grid h4 span {
	display: block;
	opacity: 1;
}

.list-grid p {
	font-weight: normal;
	font-size: 0.85rem;
}

.list-grid ol,.list-grid ul {
	margin-left: 1rem !important;
	font-size: 0.85rem;
}

.list-grid .list .btn a {
	display: block;text-decoration: none;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	text-align: center;
	padding: 0.5rem 1rem;
	margin-top: 1rem;
}
	@media screen and (max-width:745px) {
.list-grid {
	display: grid;
    grid-template-columns: repeat(1, 1fr);
	gap: 3vw;
}
}

/*list-normal-*/
.list-normal * {margin: 0;padding: 0;}

.list-normal .list {
	display: flex;
	gap: 2rem;	
	background: var(--bg-color);
	color: var(--bg-inverse-color);	
	padding: 3vw;
	margin-bottom: 5vw;	
	border: 4px solid #eee;
	position: relative;
}

.list-normal .text {
    flex: 1;
}

.list-normal .num {
	position: absolute;
	right: 0px;	
	top: -7vw;	
	color: var(--light-color);
	color: #ddd;
	opacity: 0.8;
	font-size: 8vw;	
}

.list-normal figure {
	width: 30%;
	margin-bottom: 1rem;
}

.list-normal h4 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

/*sticky1*/
.sticky1 ol,.sticky1 ul {
	margin-left: 1.8rem;
}
.sticky1 li {
	margin-bottom: 1rem;
}

.sticky1 h2 {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	position: relative;
	margin-top: 4rem;
	padding: 0 2rem;
	font-size: 1.5rem;
	box-shadow: 0.8rem 0.8rem rgba(0,0,0,0.1);
}

.sticky1 h2 .num {
	position: absolute;
	left: 0px;
	top: -2rem;	
	color: var(--primary-color);
	font-size: 1rem;
}

.sticky1 h3 {
	font-size: 1.5rem;
	font-weight: normal;
}

@media screen and (min-width:900px) {

.sticky1 {
	display: flex;
	align-items: flex-start;
	gap: 4rem;
	position: relative;
	clip-path: inset(0);
	min-height: 100svh;
}
	
.sticky1 .title {
	width: 30%;	
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1;
	height: auto;
}

.sticky1 .title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	z-index: -1; 
}
	
.sticky1 .title.sticky-bg1::before {
	background-image: url("../images/sticky-bg1.webp"); 
}
	
.sticky1 .title.sticky-bg2::before {
	background-image: url("../images/sticky-bg2.webp");
}
	
.sticky1 .title.sticky-bg3::before {
	background-image: url("../images/sticky-bg3.webp");
}
	
.sticky1 .title.sticky-bg4::before {
	background-image: url("../images/sticky-bg4.webp");
}
	
.sticky1 .title.sticky-bg5::before {
	background-image: url("../images/sticky-bg5.webp");
}
	
.sticky1 .title.sticky-bg6::before {
	background-image: url("../images/sticky-bg6.webp");
}
	
.sticky1 .title.sticky-bg7::before {
	background-image: url("../images/sticky-bg7.webp");
}
	
.sticky1 .title.sticky-bg8::before {
	background-image: url("../images/sticky-bg8.webp"); 
}
	
.sticky1 .title.sticky-bg9::before {
	background-image: url("../images/sticky-bg9.webp"); 
}

.sticky1 .text {
    flex: 1;
}
}

/*ステップボックス*/
ul.step {
	margin: 0 !important;padding: 0 !important;
	list-style: none;
	text-align: justify;
}

ul.step li {
	border: 2px solid var(--primary-color);
	padding: 1rem;
	margin-bottom: 2rem;
	position: relative;
}
	
/*「▼」のマーク*/
ul.step li::after {
	content: "▼";
	transform: scaleX(2);
	position: absolute;
	left: 50%;
	bottom: -2rem;
	color: var(--primary-color);
	opacity: 0.3;
}

ul.step li:last-child::after {
	content: "";
}

/*お客様の声*/
.slide-thumbnail * {
	margin: 0; 
	padding: 0;
}

.slide-thumbnail {
	overflow-x: hidden;
	padding-bottom: 50px;
	position: relative;
}

.slide-thumbnail .img > div {
	flex: 0 0 23%;
	max-width: 23%;
	margin: 0 1%;
	padding: 1rem;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
}

@media screen and (max-width:800px) {
.slide-thumbnail .img > div {
	flex: 0 0 48%;
	max-width: 48%;
}
}

/*h4見出し*/
.slide-thumbnail h4 {
	line-height: 1.5;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.slide-thumbnail .img {
	display: flex;
}

.slide-thumbnail figure {
	background: #eee;
	text-align: center;
	margin-bottom: 0.5rem;
}
.slide-thumbnail figure img {
	width: 40%;	
}

.slide-thumbnail p {
	font-size: 0.85rem;
	line-height: 1.5;
}

.slide-thumbnail .name {
	font-size: 0.8rem;
	text-align: right;
}

/*現在表示中ボタン*/
.slide-thumbnail .slide-indicators {
	text-align: center;
	position: absolute;
	width: 100%;
	bottom: 0px;
	left: 0px;
}

.slide-thumbnail .indicator {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #ccc;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}

.slide-thumbnail .indicator.active {
	background: #d00000;
}


/*2カラム*/
@media screen and (min-width:800px) {

.c2 {
	display: flex;
	justify-content: space-between;
	gap: 5vw;
}
.c2 .text {
	flex: 1;
}
}

/*FAQ*/
.openclose {
	display: flex;
	align-items: flex-start;
	border-radius: 3px;
	margin-bottom: 1rem;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	padding: 1rem;
	cursor: pointer;
}

.openclose::before {
	font-family: bootstrap-icons;
	content: "\F4FE";
	font-weight: bold;
	margin-right: 1rem;
	flex-shrink: 0;
	background: var(--primary-color);
	color: #fff;
	width: 1.5rem;
	line-height: 1.5rem;
	text-align: center;
	border-radius: 50%;
	transform: scale(1.2) translateY(0.15rem);
}

.openclose.active::before {
	content: "\F2EA";
	background: #c00000;
	color: #fff;
}

.openclose + * {
	padding: 0 1rem 1rem 3rem;
}


/*お知らせ*/
@media screen and (min-width:700px) {

.new {
	display: grid;
	gap: 1rem; 
}
}

/*btn1ボタン*/
.btn1 a {
	display: block;text-decoration: none;
	width: fit-content;
	margin: 0 auto;
	background: var(--accent-color);
	color: var(--accent-inverse-color);	
	padding: 0.5rem 3rem;
	border-radius: 0px;
	letter-spacing: 0.1em;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
	font-size: 1.2rem;
}

.btn1 a:hover {
	background: #000;
	color: #fff;
	box-shadow: none;
}

/*ta1テーブル*/
.ta1 caption {
	font-weight: bold;
	padding: 0.5rem 1rem;
	background: var(--bg-inverse-color);
	color: var(--bg-color);	
	margin-bottom: 1rem;
	border-radius: 5px;	
}

.ta1 {
	table-layout: fixed;
	width: 100%;
	border-top: 1px solid #ccc;	
	margin-bottom: 2rem;
}

.ta1 tr {
	border-bottom: 1px solid #ccc;
}

.ta1 td, .ta1 th {
	word-break: break-all;
	background: var(--bg-color);
	color: var(--bg-inverse-color);
	text-align: justify;
	padding: 0.5rem;
}

.ta1 th {
	width: 25%;	
	text-align: center;	
}

/*footer*/
footer * {margin: 0;padding: 0;}
footer ul {
	display: flex;
	justify-content: center;
	margin: auto;
	gap: 40px;
	list-style: none;
}
footer .logo {
	text-align: center;
}
footer {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: var(--content-space);
	display: flex;
	text-align: center;
	flex-direction: column;
}

footer .footer1 {
	flex: 1;
	display: flex;
	text-align: center;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 30px;
}

footer .logo {
	font-size: 1.5rem;
}


footer .logo img {
	width: 300px;
	margin-top: 3rem;
}

footer .footer2 {
    flex: 1;
}

@media screen and (min-width:800px) {

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

footer .footer1 {
	margin-bottom: 0;
	text-align: center;
}
}

/*SNSicon*/
.icons {
	display: flex;
	jastify-content: center;
	margin: auto;
	gap: 40px;
}
.icons i {
	font-size: 30px;
	jastify-content: center;

}

/*bg-primary*/
.bg-primary {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

/*bg-secondary*/
.bg-secondary {
	background: var(--secondary-color);	
	color: var(--secondary-inverse-color);
}

/*bg-light背景*/
.bg-light {
	background: var(--light-color);
	color: var(--light-inverse-color);
}

/*bg*/
.bg {
	padding-top: 5vw;
	padding-bottom: 5vw;
}
.bg + .bg {
	margin-top: calc(-1 * 5vw) !important;
}

/*PAGETOP*/
.pagetop-show {display: block;}

/*ボタン*/
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;
	right: 30px;
	bottom: 30px;
	color: #fff;
	font-size: 4rem;
	background: rgba(0,0,0,0.2);
	width: 60px;
	line-height: 60px;
	border-radius: 10%;	
}

/*cookie*/
.cookie-consent {
	position: fixed;
	left: 50%;
	bottom: -300px;
	transform: translateX(-50%);
	width: 670px;
	max-width: 90%;
	background: rgba(5,53,96,0.8);
	border: 0.5px solid #fff;
	z-index: 9999;
	transition: bottom 0.6s ease;
}

.cookie-consent.show {
	bottom: 200px;
}

.cookie-inner {
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	color: #fff;
}

.cookie-text {
	flex: 1;
	font-size: 13px;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
}

.cookie-buttons button {
	padding: 8px 18px;
	border: 0.5px solid #fff;
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}

.cookie-buttons button:hover {
	background: #9d8950;
	color: var(--bg-color);
}

@media screen and (max-width:800px) {

.cookie-inner {
    flex-direction: column;
    text-align: left;
}
}

/*mail*/
.confirm-area {
	max-width: 800px;
	margin: 60px auto;
	padding: 0 20px;
}

.confirm-title {
	text-align: center;
	margin-bottom: 40px;
	font-size: 24px;
	color: #05273f;
}

.confirm-section {
	margin-bottom: 40px;
}

.confirm-section h3 {
	font-size: 18px;
	margin-bottom: 15px;
	border-left: 4px solid #05273f;
	padding-left: 10px;
	color: #05273f;
}

.confirm-table {
	width: 100%;
	border-collapse: collapse;
}

.confirm-table th,
.confirm-table td {
	padding: 14px 12px;
	border-bottom: 1px solid #e5e5e5;
	text-align: left;
	font-size: 14px;
}

.confirm-table th {
	width: 30%;
	background: #f4f8fb; 
	font-weight: normal;
}

.total-row th,
.total-row td {
	font-weight: bold;
	font-size: 16px;
	color: #05273f;
}

.confirm-text {
	text-align: center;
	margin: 40px 0 30px;
}

.confirm-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.btn-back {
	padding: 12px 30px;
	background: #f1f1f1;
	border: 1px solid #ccc;
	cursor: pointer;
	transition: 0.3s;
}

.btn-back:hover {
	background: #e2e2e2;
}

.btn-submit {
	padding: 12px 30px;
	background: #05273f;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: 0.3s;
}

.btn-submit:hover {
    background: #0a3d5f; 
}

/*onfirm page*/

.confirm-area{
    max-width:900px;
    margin:0 auto;
    padding:40px 20px;
}

.confirm-title{
    text-align:center;
    font-size:28px;
    margin-bottom:40px;
    letter-spacing:0.05em;
}

.confirm-section{
    margin-bottom:40px;
}

.confirm-section h3{
    text-align:center;
    margin-bottom:20px;
    font-size:20px;
}

.confirm-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

.confirm-table th,
.confirm-table td{
    border:1px solid #ddd;
    padding:14px;
}

.confirm-table th{
    width:35%;
    background:#f7f7f7;
    text-align:center;
}

.confirm-table td{
    text-align:center;
}

.total-row th,
.total-row td{
    font-weight:bold;
    font-size:18px;
}

.confirm-text{
    text-align:center;
    margin-top:30px;
}

.confirm-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.btn-back,
.c-btn{
    padding:12px 40px;
    border:none;
    cursor:pointer;
    font-size:16px;
}

.btn-back{
    background:#ccc;
}

.c-btn{
    background:#05273f;
    color:#fff;
}

.c-btn:hover{
    opacity:0.8;
}

/* スマホ */

@media screen and (max-width:768px){

.confirm-area{
    padding:30px 15px;
}

.confirm-title{
    font-size:22px;
}

.confirm-table th,
.confirm-table td{
    padding:10px;
    font-size:14px;
}

.confirm-buttons{
    flex-direction:column;
    align-items:center;
}

.btn-back,
.c-btn{
    width:80%;
    max-width:300px;
}
}

/*他*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
.color-check, .color-check a {
	color: #c02340 !important;
}

.l {
	text-align: left !important;
}

.c {
	text-align: center !important;
}

.r {
	text-align: right !important;
}

.ws {
	width: 95%;display: block;
}

.wl {
	width: 95%;display: block;
}

.mt0 {
	margin-top: 0px !important;
}

.mb0 {
	margin-bottom: 0px !important;
}

.mb3rem {
	margin-bottom: 3rem !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.look {
	display: inline-block;
	padding: 0px 10px;
	background: rgba(0,0,0,0.7);
	color: #fff;
	border-radius: 3px;
	margin: 5px 0;
	word-break: break-all;
}

.look .color-check {
	color: yellow !important;
}

.small {
	font-size: 0.75em;
}

.large {
	font-size: 2em;
	letter-spacing: 0.1em;
}

.block {
	display: block !important;
}

.marker {
	background: linear-gradient(transparent 70%, yellow 70%);
}

.marker2 {
	background: linear-gradient(transparent 70%, red 70%);
}

.border-radius1 {
	border-radius: 30vw 0 30vw 0;
}

/*禁止事項*/
p,
img,
ul,
ol,
h1,
h2,
h3,
h4,
figure,
images,
div {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}