@charset "UTF-8";

/*テンプレートcssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("aos.css");
@import url("drawer.css");
@import url("../webfonts/css/all.css");
@import url("../slick/slick.css");
@import url("../slick/slick-theme.css");


/*共通
---------------------------------------------------------------------------*/
:root {
	--themecolor: #235b9e;
	--maincolor: #111111;
}

/*全体の設定
---------------------------------------------------------------------------*/
html, body {
height: 100%;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: none;
}
html {
overflow-x: hidden;
overflow-y: auto;
}
body {
background: url(../img/body_bg.jpg) repeat;
color: var(--maincolor);
font-size: 100%;
font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
font-weight: 500;
font-style: normal;
line-height: 2;
letter-spacing: 0.05em; 
text-align: center;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-wrap: break-word;
}
/* 全体ボックスサイズ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*リセット*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
ul {list-style: none;}
input {font-size: 1rem;}
/* clearfix */
.clearfix::after {
content: "";
display: block;
clear: both;
}
.clearfix {
overflow: hidden;
}

/*タップ時の青枠削除
---------------------------------------------------------------------------*/
/* タップ時の青ハイライトを消す（Safari / iOS用） */
a, button, input, textarea {
-webkit-tap-highlight-color: transparent;
outline: none;
}

/*container（サイト全般を囲むブロック）
---------------------------------------------------------------------------*/
.container {
padding: 0 6%;
box-sizing:border-box;
width:100%;
}
@media screen and (min-width: 1200px) {
.container {
padding: 0 10%;
}}


/*img*/
img {
vertical-align: middle;
border-style:none;
border: none;
max-width: 100%;
height: auto;
-webkit-backface-visibility: hidden; backface-visibility: hidden;
}
a:hover img{opacity:0.8;filter:alpha(opacity=80);-ms-filter:"alpha( opacity=80 )";}
/*img Chromeのみ*/
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
img {image-rendering: -webkit-optimize-contrast;}
}

/*p*/
p {text-align: justify;}

/*回りこみ解除*/
.clear {
clear:both;
}
a img,
ol li img,
li img,
ul li img {/*上揃え*/
vertical-align: top;
text-align:center;
border-style:none;
}

/*フロート設定*/
.tex img.centered,.tex img.aligncenter {
display:block;
margin-left:auto;
margin-right:auto;
clear:none;
}
.tex img.alignright,
.tex .alignright img{
margin-left:20px;
margin-right:0;
margin-bottom:20px;
display:inline;
clear:none;
}
.tex img.alignleft,
.tex .alignleft img {
margin-left:0;
margin-right:20px;
margin-bottom:20px;
display:inline;
clear:none;
}
.tex img.alignnone,
.tex .alignnone img {
margin-left:0;
margin-right:0;
margin-bottom:10px;
clear:none;
display:block;
}
.tex .alignright,.right {
float:right;
}
.tex .alignleft {
float:left;
}
@media only screen and (max-width:60em) {
.tex img.alignright,.tex img.alignleft,.tex img.alignnone,.tex img.aligncenter {clear:both;display:block;margin-left:auto;margin-right:auto;}
.tex .alignright {float:none;}
.tex .alignleft {float:none;}
.tex .aligncenter {clear:both;display:block;margin-left:auto;margin-right:auto;}
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
color:var(--maincolor);
text-decoration:none;
transition: 0.5s;
}
a:hover {
color:#848484;
text-decoration:none;
transition: 0.5s;
}
/* a TEL */
a[href^="tel:"] {text-decoration:none;color:var(--maincolor);}
@media screen and (min-width: 1024px) {
a[href^="tel:"] {pointer-events: none;}
}

/*PC･スマホ 表示・非表示
---------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) {.sp{display: none !important;}}
@media screen and (max-width: 1023px) {.pc{display: none !important;}}


/*pagetop
---------------------------------------------------------------------------*/
.pagetop {
display: none;
position: fixed;
bottom: 0;
right: 0;
z-index: 10000;
}
.pagetop a {
display: block;
background-color: var(--themecolor);
text-align: center;
color: #FFF;
font-size: 20px;
padding: 15px 25px;
}
.pagetop a:hover {
display: block;
opacity: 0.5;
transition: 0.5s;
color: #fff;
}
@media screen and (max-width: 1023px) {
.pagetop a {
font-size: 14px;
padding: 9px 18px;
}
}

/*header（ロゴが入ったサイト上部のブロック）
---------------------------------------------------------------------------*/
/*上からふわっと表示（ロード時）*/
.logo,
.drawer-nav{
opacity: 0;
transform: translateY(-20px);
animation: fadeTop 0.8s ease forwards;
}
@keyframes fadeTop {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
/*ロゴ画像*/
.logo{
margin: 25px 0 10px 6%;
text-align: left;
}
h1 a {
background: url(../img/logo.svg) no-repeat;
background-size: 156px 46px;
display: block;
width: 156px;
height: 46px;
float: left;
}
h1 a span {
display: none;
}
/*グローバルメニュー　ボタン*/
.otoiawase-button a{
display: flex;
justify-content: center;
align-items: center;
width: auto;
margin:0 auto;
padding: .2em 1.3em;
border: 1px solid #fff;
border-radius: 25px;
color: #fff;
}
.otoiawase-button a:hover {
background-color: #fff;
color: var(--themecolor);
border: 1px solid #fff;
}
@media screen and (max-width: 1023px){
.otoiawase-button {
padding: 0 2rem;
margin:20px 0 0 0;
}
}
@media screen and (min-width: 768px) {
.logo{
margin: 25px 0 10px 30px;
}
h1 a {
background-size: 175px 51px;
width: 175px;
height: 51px;
}}
@media screen and (min-width: 1024px) {
.logo{
margin: 25px 0 13px 30px;
}
h1 a {
background-size: 222px 65px;
width: 222px;
height: 65px;
}
}


/*フッター
---------------------------------------------------------------------------*/
#footer {
width: 100%;
padding: 90px 0;
}
/* 全体レイアウト */
#footer .flexbox {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
@media screen and (max-width: 767px) {
#footer {
padding: 50px 0;
}
}

/* ----------------------
 左：ロゴ・住所
---------------------- */
.f_box {
width: 45%;
text-align: left;
}
.f_box h5 img {
width: 200px;
height: auto;
margin-bottom: 30px;
}
.f_box address {
font-style: normal;
font-size: 90%;
}
a.f_box_link {
text-decoration: underline;
}
a:hover .f_box_link {
text-decoration: underline;
}

/* ----------------------
 右：メニュー＋コピー
---------------------- */
#foot-box {
display: flex;
flex-direction: column;
	margin-left: auto;
}
/* メニュー横並び */
.flex_foot-box {
display: flex;
}
.flex_foot-item ul {
display:flex;
justify-content:center;
align-items:flex-start;
gap:10px;
list-style:none;
margin:0;
padding:0;
}
.flex_foot-item li{
writing-mode:vertical-rl; /* 縦書き */
text-orientation:upright;
}
.flex_foot-item a{
text-decoration:none;
font-size:14px;
letter-spacing:2px;
}
.flex_foot-item ul li a:hover {
opacity: 0.6;
transition: 0.5s;
}
/* コピー */
.copy {
font-size: 80%;
padding-top: 30px;
text-align: center;
}
.copy span{
font-family: Verdana, "Droid Sans";
}
@media only screen and (max-width: 1023px) {
#footer .flexbox {
flex-direction: column;
}
.f_box,
#foot-box {
width: 100%;
}
.flex_foot-box {
display: none;
}
}



/*footer お問い合わせ
---------------------------------------------------------------------------*/
.back_inquiry{
width: 100%;
padding:90px 0;
background:
linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url("../img/top/bg_inquiry.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
color:#fff;
}
.section-inquiry-h3 {
text-align:center;
font-size: 20px;
letter-spacing:.05em;
margin: 0 0 30px 0;
color: #fff;
line-height: 1.5;
}
.section-inquiry-h3 span{
font-size: .5em;
display: block;
letter-spacing:.05em;
color: #ffffff;
padding-bottom: 10px
}

/*お問い合わせ　バナー
------------------*/
.two-inquiry-pc{
max-width:750px;
margin:0 auto;
display:flex;
gap:50px;
align-items:stretch;
}
/* 2等分 */
.two-inquiry{
flex:1;
display:flex;
flex-direction:column;
justify-content:center;
}
/* =====================
電話
===================== */
.tel_number{
margin:0;
font-size:43px;
font-family:
"Noto Serif JP",
"Yu Mincho",
serif;
line-height: 1.5;
}
.tel_number a{
color:#fff;
text-decoration:none;
}
.tel_info{
margin-top:5px;
font-size:13.5px;
}
/* =====================
ボタン
===================== */
.btn_01{
width:100%;
}
.btn_01 a{
display:flex;
justify-content:center;
align-items:center;
width:100%;
height:75px;
background:#fff;
color:var(--maincolor);
text-decoration:none;
transition:.3s;
}
.btn_01 a i{
margin-right:10px;
}
.btn_01 a:hover{
opacity:.6;
}
@media screen and (max-width:980px){
.tel_number{
font-size:40px;
}
.tel_info{
font-size:10px;
}
}
@media screen and (max-width:768px){
.back_inquiry{
padding:60px 0;
background:
linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url("../img/top/bg_inquiry_sp.jpg");
background-size:cover;
background-position:bottom;
background-attachment:scroll;
}
.two-inquiry-pc{
flex-direction:column;
gap:30px;
}
.tel_number{
font-size:35px;
text-align:center;
}
.tel_info{
text-align:center;
font-size:12px;
}
.btn_01 a{
height:60px;
}
}


/*youtube
---------------------------------------------------------------------------*/
.wp-block-embed-youtube {
position: relative;
padding-bottom: 56.25%; /* 16:9のアスペクト比 */
height: 0;
overflow: hidden;
}

.wp-block-embed-youtube iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/*info
---------------------------------------------------------------------------*/
.info_box a{
display:flex;
align-items:flex-start;
gap:20px;
text-decoration:none;
width:100%;
padding:20px 0 25px;
border-bottom:1px dotted var(--maincolor);
transition:background .3s ease, transform .2s ease;
}
.info_box a:hover{
background:rgba(255,255,255,0.5);
transform:translateX(5px);
}
/* 日付 */
.info_meta,
.info_meta_page{
display:flex;
align-items:center;
gap:15px;
flex-shrink:0;
}
.info_meta p,
.info_meta_page p{
white-space:nowrap;
margin:0;
padding:0;
}
/* カテゴリタグ */
.info_box span.cat_info{
display:inline-block;
padding:1px 10px;
font-size:75%;
background:var(--maincolor);
color:#fff;
width: 80px;
text-align: center
}
/* タイトル */
.info_box a h4 {
margin:0;
padding:0;
font-weight:500;
line-height:1.8;
}
@media screen and (max-width: 1023px) {
.info_box a h4{
padding-bottom:5px;
}
}
@media screen and (max-width:767px){
.info_box a{
flex-direction:column;
gap:10px;
}
.info_meta{
width:100%;
}
.info_box span.cat_info{
padding:0 8px;
font-size:70%;
}
}

/*read-more
---------------------------------------------------------------------------*/
.read_btn{
text-align:center;
margin-top: 30px
}
.read_btn-l{
text-align:left;
margin-top: 10px
}
.read_btn a,
.read_btn-l a{
display:inline-flex;
align-items:center;
gap:12px;
text-decoration:none;
color:var(--maincolor);
letter-spacing:0.05em;
transition: 0.5s;
}
/* ● */
.read_btn a::before,
.read_btn-l a::before{
content:"";
width:10px;
height:10px;
background:var(--maincolor);
border-radius:50%;
display:inline-block;
}
.read_btn a:hover,
.read_btn-l a:hover{
opacity: 0.5;
transition: 0.5s;
}
@media screen and (max-width:767px){
.read_btn,
.read_btn-l{
margin-top: 20px
}
.read_btn a,
.read_btn-l a{
font-size:12px;
}
}
