 @charset "utf-8";
/* CSS Document */
*::selection {background: var(--green1); color: #fff;}
*::-moz-selection {background:  var(--green1); color: #fff;}

:root {
    --black:#000;
	--white:#fff;
	--green1:#0E3A22;
	--green2:#3C4924;
	--green3:#60652C;
	--green4:#DFDECC;
	--green5:#141d0a;
	--green6:#395e2e;
	--green7:#4d5745;
	--green8:#295129;
	--green9:#072F1C;
	--beige1:#e8e5dd;
	--beige2:#E0DFCD;
	--beige3:#D2CBBF;
	--beige4:#faf8ec;
	--red:#933132;
	--red2:#430002;
	--yellow:#D8BB31;
	--f_mincho: "Hina Mincho", serif;
	--f_mincho2: "Shippori Mincho", serif;
	--f_en1: "Afacad Flux", sans-serif;
	--f_en2:"Zen Kaku Gothic New", sans-serif;
	--gray1:#d3d0ca;
	--shadow:3px 3px 0 var(--green2);
	--shadow2:3px 3px 3px rgba(0, 0, 0, 30%);
}
/* reset:
--------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-text-size-adjust: none;
}

ul li {list-style: none;}
em,address {font-style: normal;}


a {
  color: var(--green2);
  text-decoration: underline;
}

a:hover,
button:hover,
a:hover:after {
  text-decoration: none;
    transition: 0.3s;
	border: none;
}
button {
	all: unset;
	cursor: pointer; 
}

img{vertical-align:middle;}

hr.hr1 {
	border: none;
	height: 75px;
	background: url("../img/common/hr_bg.png") no-repeat;
	background-position: center center;
	background-size: cover;
}

.hr_box {
	position: relative;
	height: 75px;
}

.hr_box > hr.hr1 {
	position: absolute;
    top: 0;
    left: -25%;
    width: 150%;
}



button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    line-height: 1.6rem;
}
a:focus,
button:focus {
    outline: 2px solid var(--black);
	box-shadow: 0 0 0 2px var(--white);
    outline-offset: 2px;
}



/* Basic
--------------------------------------------*/

html {
	scroll-behavior: smooth;
	font-size: 16px;
	box-sizing: border-box;
}


@media screen and (max-width: 959px){
	html {font-size: 14px;}
}


body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  	font-weight: 500;
  	font-style: normal;
	font-size: 1rem;
	line-height: 1.8rem;
	color: var(--green2);
/*	background-color: #fff;*/
/*	letter-spacing: 0.13em;*/
	background-color: var(--beige1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.en_font {
	font-family: var(--f_en1);
  	font-optical-sizing: auto;
  	font-weight: 600;
  	font-style: normal;
  	font-variation-settings:
    "slnt" 0;
    word-break: break-all;
}
.en_font.bold{
    font-weight: bold;
}

.indent {
  text-indent: 1em; 
}


/* contents
--------------------------------------------*/


/* header setting:
--------------------------------------------*/

#header {
/*    float: right;*/
/*
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
*/
    padding: 1rem calc((100vw - 1280px) / 2);
    position: fixed;
    width: 100%;
    z-index: 99;
	
	display: grid;
	grid-template-columns: 1fr auto;
	justify-content: space-between;
}

#header .h_right{
    display: flex;
    justify-content: flex-end;
    align-items:center;
    gap:0 1rem;
}

#header .h_left {
	position: relative;
}

#header .logo_care{
/*
    position: absolute;
    width: 30%;
    top: 0.9rem;
    left: 5rem;
*/
	position: relative;
/*    width: 30%;*/
/*
    top: 0.9rem;
    left: 5rem;
*/
	padding: 0.5rem .5rem .5rem 70px;
}

#header .logo_care img {
	width: 100%;
	max-width: 400px;
	height: auto;
}
#header .logo{
/*    width: 10%;*/
    text-align: right;
}
#header .logo img {
	width: 100%;
	max-width: 110px;
	height: 48px;
}



/* ハンバーガー：左上固定 */
.hamburger {
    position: absolute;
    top: .2rem;
    left: 1rem;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--beige1);
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ▼ ハンバーガーの直下に展開されるメニュー */

.dropdown-under {
	position: absolute;
    top: 60px; 
    left: 1rem; 
    background: url("../img/common/nav_bg.png") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 999;
    padding: 1rem 2rem 1rem 1rem;
    margin: 0.5rem;
}


@media screen and (max-width: 767px){

#header .logo_care{
    left: 3rem;
	padding: 0.3rem 0.5rem 0.5rem;
    width: 60%;
}
    #header .logo_care img {
		max-width: 300px;
	}
    
.hamburger {
    padding: 0;
}
.hamburger span {
    width: 20px;
}

.dropdown-under {
	width: 70vw;
	}
	
#header .logo {
/*		width: 20%;*/
		grid-template-columns: 1fr auto;
	}  
}

@media screen and (max-width: 599px){
/*
    #header{
        display: block;
    }
*/
}

/* 開いた状態 */
.dropdown-under.is-open {
  transform: scaleY(1);
  opacity: 1;
}

/* hidden属性で非表示管理 */
.dropdown-under[hidden] {
  display: block; /* transformで制御するためblock維持 */
}

/* 初期状態：閉じている */
.dropdown-under {
  display: block; /* レイアウト上のデフォルト */
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}

/* 開いた状態 */
.dropdown-under.is-open {
  transform: scaleY(1);
  opacity: 1;
}

/* 完全に隠す（アニメ後に JS から付ける） */
.dropdown-under[hidden] {
  display: none;
}

.dropdown-under ul li a {
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
}

.dropdown-under ul li a{
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
}
    

/*言語ボタン*/
#header .lang{
    position: relative;
    display: inline-block;
}
#header .lang button{
    position: relative;
	background: var(--beige1) url("../img/common/icon_lang.svg") no-repeat 10px center;
    background-size: 20px;
	padding: .5rem 1rem .5rem 40px;
	border-radius: 2rem;
}

/*
#header .lang button:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 15px;
	top: 11px;
	width: 20px;
	height: 20px;
	background: var(--beige1)
}
*/

#header .lang ul{
    display: none;
    position: absolute;
    z-index: 999;
    top: 60px;
    background: var(--beige1);
    border:solid 2px var(--green2);
    border-radius: 1rem;
    box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.1);
    width: 8rem;
    padding: 1rem;
}
#header .lang ul li a{
    padding: 0.3rem 1rem;
    position: relative;
    text-decoration: none;
}

#header .lang ul li a:after {
    background: url(../img/common/arrow01.svg) no-repeat;
    transform: rotate(-90deg);
    background-size: cover;
    left: 0;
    top: 0.7rem;
    height: 12px;
    width: 12px;
}

#header .lang ul.on{
    display: block;
}
    
/*-- 検索 --*/
/*
#header .search {
    position: relative;    
}
*/
    
#header .search button {
    display: block;
    width: 13px;
    height: 13px;
	background: var(--beige1) url("../img/common/icon_search.svg") no-repeat center center;
	background-size: 20px;
    border-radius: 50%;
    padding: 0.8rem;
}

#header .search .search_box button {
	background: var(--green1) url("../img/common/icon_search_b.svg") no-repeat center center;
	background-size: 20px;
    border-radius: 0;
    border:none;
}
#header .search .search_box button svg{
    display: none;
}


/*検索窓*/
.search_box{
    display: none;
    position: absolute;
    z-index: 999;
    background: var(--beige1);
    padding: 2rem;
    margin: 100px 3rem 3rem;
    left: 50%;
    top: 0%;
/*    transform: translate(-50%, -50%);*/
    text-align: center;
    border:solid 2px var(--green2);
    border-radius: 1rem;
	width: 40%;
}


.search_box.on{
    display: block;
}

.gsc-input-box {
    width: 100%;
}

/*検索結果*/
/*
.search_page .gsc-control-cse{
    margin: 7rem 0 5rem;
}
*/
    

@media screen and (max-width: 959px){
#header .lang button{
    display: block;
    width: 10px;
    height: 10px;
    text-indent: -10000px;
    border-radius: 50%;
    padding: 0.8rem;
	background: var(--beige1) url("../img/common/icon_lang.svg") no-repeat 6px center;
    background-size: 20px;

}
#header .search > button {
    width: 10px;
    height: 10px;
}

.search_box{
    padding: 2rem;
    margin: 100px 3rem 3rem;
    left: 0;
    top: 0;
    transform: translate(0%, 0%);
}
  
}

@media screen and (max-width: 767px){
	
/*
	#header .lang ul{
		width: 40vw;
	}
*/
	.search_box{
		margin: 80px 5% 3rem;
        width: 90%;
    }
}

/*---- block_skip ----*/

#block_skip a {
	display:block;
	height: 0;
	overflow: hidden;
	padding-left: 20px;
	color: #fff;
	background: #000;
	text-align: center;
}

#block_skip a:before {
	content: "";
	display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
	position: relative;
	margin-right: 10px;
	bottom: 3px;
}

#block_skip a:focus {
	height: auto;
	line-height: 3em;
}



/* footer setting:
--------------------------------------------*/
#footer {
	background-color: var(--beige3);
	border-radius: 30px 30px 0 0;
	position: relative;
	padding: 3rem 1rem 1.5rem;
	font-size: 0.9rem;
    text-align: center;
    width: 50%;
    max-width: 767px;
    margin: 0 auto;
}


#footer a:hover {
	text-decoration: none;
}

#footer .f_care_logo {
    width: 25%;
    margin: 1rem auto;
    min-width: 180px;
}

#footer .f_logo_en {
    width: 40%;
    margin: 1rem auto;
    min-width: 300px;
}

/*--  page_top --*/

#page_top {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -1rem;
	z-index: 5;
}

#page_top a {
	text-decoration: none;
	display: inline-block;
	border: 0.5px solid #00381F;
    border-radius: 3px;
    box-shadow: 3px 3px 0 #00381F;
	background-color: var(--green4);
	padding: 0.3rem 1.5rem;
}

/*--  sns --*/

#footer #sns {
	padding: 1.5rem 0;
}

#footer #sns h2 {
	font-size: 1.2rem;
    margin-bottom: 1rem;
}

#footer #sns .sns-btn {
	display: flex;
	justify-content: center;
	gap:2rem;
}

#footer #sns .sns-btn > div:focus {
    outline: 2px solid var(--black-color);
}

#footer #sns .sns-btn .fbArea div {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}


#footer .sec {
	position: relative;
}

#footer .sec ul {
    display: flex;
    justify-content: center;
}

#footer .sec ul li {
    position: relative;
    padding: 0 1rem;
}

#footer .sec ul li + li::before {
    content: "";
    position: absolute;
    left: 0; 
    top: 50%; 
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: var(--green2);
}

#footer .sec .f_logo {
/*
	position: absolute;
	top: 0;
	right:2%;
*/
    margin: 1rem 0;
}

#footer .sec .f_logo img {
    width: 10%;
	min-width: 150px;
	height: auto;
}

#copy {
	letter-spacing: 0.04em;
	line-height: 1rem;
	padding: 0.5rem;
}

#footer a .icon {
	width: 16px; height: auto;
}


@media screen and (max-width: 767px){
	#footer {
		width: 100%;
	}
	
	#footer #sns {
		padding: 1rem 0;
	}
	
	#footer .sec ul li {
		padding: 0 .5rem;
	}
}

/* flex
--------------------------------------------*/
.flex{
	display: flex;
	justify-content:space-between; 
}
.flex.start{
    justify-content: flex-start;
	gap: 1.5rem;
}
.flex.end{
    justify-content: flex-end;
	gap: 1.5rem;
}
.f_center{
    justify-content: center;
}

.flex.clm2,
.flex.clm3,
.flex.clm4{
	flex-wrap: wrap;
}

.flex > * {
	box-sizing: border-box;
	margin-bottom: 1rem;
}
.flex.clm2 > * { width: 47%;}
.flex.clm3 > * { width: 31%; margin-bottom: 0;}
.flex.clm4 > * { width: 23%;}

.flex_img{
    width: auto;
    max-width: 100%;
}

/*アイコン*/

 img.icon {
    margin: 0 0.5rem 0.2rem;
    vertical-align: middle;
    width: 18px;
}
 img.icon_s {
    margin: 0 0.3rem 0.2rem;
    vertical-align: middle;
    width: 16px;
}




/* grid
--------------------------------------------*/
.grid{
	display: grid;
	grid-gap: 1.5rem;
}
.grid.a_start{align-self: flex-start;}

.grid.clm2{grid-template-columns: repeat(2,1fr);}
.grid.clm3{grid-template-columns: repeat(3,1fr);}
.grid.clm4{grid-template-columns: repeat(4,1fr);}
.grid.clm3_spclm2{grid-template-columns: repeat(3,1fr);}
.grid.clm4_spclm2{grid-template-columns: repeat(4,1fr);}

.grid.clm1_2{grid-template-columns: 1fr 2fr;}
.grid.clm1_3{grid-template-columns: 1fr 3fr;}
.grid.clm2_1{grid-template-columns: 2fr 1fr;}
.grid.clm3_1{grid-template-columns: 3fr 1fr;}


/*@media screen and (max-width: 959px){*/
@media screen and (max-width: 767px){
	.grid.off{
		display: block;
    }
}


.gap1{grid-gap: 1rem;}
.gap2{grid-gap: 2rem;}
.gap3{grid-gap: 3rem;}


.sub{font-weight: 400;font-size: 0.9rem;}

/*マージン*/

.mg0{margin: 0rem!important;}
.mg1{margin: 1rem!important;}
.mg2{margin: 2rem!important;}
.mg3{margin: 3rem!important;}
.mgb0{margin-bottom: 0rem!important;}
.mgb1{margin-bottom: 1rem!important;}
.mgb2{margin-bottom: 2rem!important;}
.mgb3{margin-bottom: 3rem!important;}
.mgt0{margin-top: 0rem!important;}
.mgt1{margin-top: 1rem!important;}
.mgt2{margin-top: 2rem!important;}
.mgl05{margin-left: 0.5rem!important;}
.mgl1{margin-left: 1rem!important;}
.mgr05{margin-right: 0.5rem!important;}
.mgr1{margin-right: 1rem!important;}
.mgt_auto{margin-top: auto;}

/*幅*/

.w10 {width: 10%;}
.w12 {width: 12%;}
.w15 {width: 15%;}
.w20 {width: 20%;}
.w25 {width: 25%;}
.w30 {width: 30%;}
.w40 {width: 40%;}
.w45 {width: 45%;}
.w50 {width: 50%;}
.w60 {width: 60%;}
.w70 {width: 70%;}
.w80 {width: 80%;}
.w100 {width: 100%;}

.w50_sp100 {width: 50%;}
.w70_sp100 {width: 70%;}


/*align*/
.aline_l{text-align: left;}
.aline_c{text-align: center;}
.aline_r{text-align: right;}

/*color*/
.red{color: #BC272F;}
/*フェードイン*/

.fade {
  opacity: 0;
  transition: all 0.3s ease-out;
  position: relative;
}

.f_left {transform: translateX(-30px);}
.f_right {transform: translateX(30px);}
.f_top {transform: translateY(-30px);}
.f_bottom {transform: translateY(30px);}

.fade.show {
  opacity: 1;
  transform: translate(0, 0);
}




