@charset "UTF-8";

/***********************************************************
* Base
***********************************************************/
body,
html {
	width:100%;
	height:100%;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f3f3f2;
    /*font-family: "Noto Sans JP", sans-serif, "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;*/
    /*font-family: "Roboto", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";*/
    font-family: "Shippori Mincho B1", serif;
	font-weight: 500;
	font-size: 16px;
    /*font-size: 62.5%;*/
	line-height: 1.9;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	/*scroll-behavior: smooth;*/
    font-feature-settings: "palt" 1;/*文字間自動カーニング*/
}
ul,li { list-style: none; margin: 0; padding: 0;}
img { width: 100%; height: auto; border:0; -ms-interpolation-mode: bicubic; vertical-align: middle;}
a { text-decoration: none;}
a:hover {}
h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,p {
	padding: 0;
	margin: 0;
	font-weight: 500;
	font-size: 1em;
}
/*@media screen and (min-width:1300px){
    body,
    html,
    h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,p { font-size: 1.05em;}
}*/
@media screen and (max-width:1000px){
    body,
    html { font-size: .95em;}
}
@media screen and (max-width:870px){
    body,
    html { font-size: .9em;}
}
@media screen and (max-width:500px){
    body,
    html { font-size: .9em;}
}
@media screen and (min-width: 750px) {
	/*--- 750px以上はtelリンク無効 ---*/
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/***********************************************************
* animation
***********************************************************/
/** スクロールフェードup
**************************/
.fadeup_scroll {
	opacity : 0;
	transform : translate(0, 30px);
	transition : all .5s;
	}
.fadeup_scroll.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}
/* スクロールフェード少し遅らせる用 */
/*.fadeup_scroll_01,
.fadeup_scroll_02,
.fadeup_scroll_03,
.fadeup_scroll_01.scrollin,
.fadeup_scroll_02.scrollin,
.fadeup_scroll_03.scrollin {
	opacity : 0;
}*/
/*.fadeup_scroll_01.scrollin {
    animation: fadescrollin .5s ease .3s normal;
    -webkit-animation: fadescrollin 1s ease .3s normal;
    animation-fill-mode: forwards;
	}
.fadeup_scroll_02.scrollin {
    animation: fadescrollin .5s ease .4s normal;
    -webkit-animation: fadescrollin 1s ease .5s normal;
    animation-fill-mode: forwards;
	}
.fadeup_scroll_03.scrollin {
    animation: fadescrollin .5s ease .5s normal;
    -webkit-animation: fadescrollin 1s ease .7s normal;
    animation-fill-mode: forwards;
	}*/
/*@keyframes fadescrollin {
    0% {opacity: 0; transform: translate(0, 30px);}
    100% {opacity: 1; transform: translate(0, 0);}
}*/
/*旧ブラウザ用*/
/*@-webkit-keyframes fadescrollin {
    0% {opacity: 0; transform: translate(0, 30px);}
    100% {opacity: 1; transform: translate(0, 0);}
}*/
/** フェードin
**************************/
.fadeIn {
	opacity : 0;
	transition : all 1s;
	}
.fadeIn.scrollin {
	opacity : 1;
	}
.fadein {
    animation: fadeIn 1s ease 0s normal;
    -webkit-animation: fadeIn 1s ease 0s normal;
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-webkit-keyframes fadeIn {/*旧ブラウザ用*/
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/** フェードdown
**************************/
.top_fadeDowm {
    animation-name: fadeDown;
    animation-duration: .8s;
    animation-fill-mode: forwards;
    transform: translateY(-20px);
    opacity: 0;
}
@keyframes fadeDown {
    0% {}
    100% { transform: translateX(0); opacity: 1;}
}


/** フェードup
**************************/
.fadeup {
    animation: fadeUp .8s ease 0s normal;
    -webkit-animation: fadeUp .8s ease 0s normal;
}
@keyframes fadeUp {
    0% {opacity: 0; transform: translate(0, 30px);}
    100% {opacity: 1; transform: translate(0, 0);}
}
旧ブラウザ用
@-webkit-keyframes fadeUp {
    0% {opacity: 0; transform: translate(0, 30px);}
    100% {opacity: 1; transform: translate(0, 0);}
}
/** ヘッダーメニュー用
**************************/
.fadeUp_menu {
    animation-name: fadeUpmenu;
    animation-duration: .8s;
    animation-fill-mode: forwards;
    transform: translateY(10px);
    opacity: 0;
}
@keyframes fadeUpmenu {
    0% {}
    100% { transform: translateX(0); opacity: 1;}
}

/** トップ背景画像のフェードイン + ズームアウト
 **************************/
.home #section1 .topimg.fadein {
    animation: fadeInScale 1.3s ease-out forwards;
    overflow: hidden;
}    
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1); 
    }
}
/* 旧ブラウザ用 */
@-webkit-keyframes fadeInScale {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.05);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

/** * セクション全体のfadeupを無効化（必要に応じて）
 **************************/
#section1.fadeup {
    animation: none;
    -webkit-animation: none;
}



/***********************************************************
* ナビゲーション・ヘッダー
***********************************************************/
/*main {
    display:block;
    z-index: 2;
    -webkit-transition: transform .7s ease;
    -moz-transition: transform .7s ease;
    -ms-transition: transform .7s ease;
    -o-transition: transform .7s ease;
    transition: transform .7s ease;
}
;*/
header {
    width: 100%;
    /*height: 100px;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: flex-start;*/
    z-index: 10;
    position: relative;
}
header .logo { padding: 20px 0; margin-left: 50px; font-size: .9em; letter-spacing: 2px;}
header .logo img { width: 260px; height: auto; margin-top: 3px;}
header .logo a { color: #333; font-weight: 600;}
#logoArea { display: none;}
.navbox { /*display: flex; align-items: center;*/ margin-left: auto;}
.navbox ul {
    margin-left: auto;
    display: flex;
    flex-direction: row-reverse;
    margin: 30px 50px 0 0;
    position: absolute;
    top: 0;
    right: 0;
}
.menu-item { margin: 0 25px; width: 0;}
.menu-item a {
    color: #fff;
    background-color: #212121;
    padding: 10px 6px;
    transition: all 0.2s;
    writing-mode: vertical-rl;
    vertical-align: top;
    letter-spacing: 3px;
    position: inherit;
    font-size: 1.05em;
    line-height: 1;
    font-weight: 600;
}
.menu-item a:hover { /*background-color: #3B3B3B;*/}
  
/* Sink */
.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.menu-overlay {
    display: none; 
}

  
@media screen and (min-width:1300px){
    .menu-item { font-size: 1.05em;}
}
@media screen and (max-width:1200px){
    header .logo img { width: 250px; margin-top: 3px;}
}
@media screen and (max-width:1000px){
    .menu-item { margin: 0 22px;}
}

@media screen and (max-width:870px){
    header { position: fixed; background-color: #ffffff;}
    header .logo { padding: 15px 0;}
    header .logo img { width: 240px; margin-top: 3px;}
    .menu-overlay {
        display: block;
        position: fixed;
    }
    .navbox {
        visibility: hidden;
        opacity: 0;
    }    
    #logoArea {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000; /* メニューより上に配置 */
    }
    .menu-overlay {
        position: fixed;
        top: 83.680px; left: 0;
        width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.9); /* 真っ黒に近い透過 */
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s;
    }
    .navbox {
        position: fixed;
        top: 83.680px; left: 0;
        width: 100%; height: 100%;
        z-index: 999;
        overflow-y: auto; /* 縦方向に内容がはみ出たらスクロールを出す */
        -ms-overflow-style: none; /*IE Edge*/
        scrollbar-width: none; /*Firefox*/
        -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかにする */
        text-align: center;  
        display: flex;
        /*align-items: center;*/
        /*justify-content: center;*/
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px); 
        /*transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;*/
        /*pointer-events: none;*/
    }
    .navbox ul {
        display: block;
        margin: auto;
        padding: 0 0 80px 0;
        /*text-align: center;*/
        position: static;
        /*width: 100%;
        margin: 0;
        justify-content: center;
        flex-direction: column;*/
    }

    /* .is-activeがついた時だけアニメーションを有効にする */
    /* 背景を表示 */
    .is-active .menu-overlay {
        opacity: 1;
        visibility: visible;
    }
    /* メニューを下からスライドアップ */
    .is-active .navbox {
        display: flex;
        opacity: 1;
        visibility: visible;
        /* 元の位置（0）に戻ることで、10px分だけスッと上がる */
        transform: translateY(0); 
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    }
    /* メニューOPEN時背景固定 */
    body.fixed { overflow: hidden;}
    
    /* ハンバーガーメニュー */
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin: 0 auto;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease;
        position: absolute;
        opacity: 1;
    }
    .bar {
        display: block;
        height: 2px;
        width: 40px;
        margin: 9px auto;
        background-color: #333;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease;
    }
    .is-active .button .top {
        -webkit-transform: translateY(14px) rotateZ(45deg);
        -moz-transform: translateY(14px) rotateZ(45deg);
        -ms-transform: translateY(14px) rotateZ(45deg);
        -o-transform: translateY(14px) rotateZ(45deg);
        transform: translateY(14px) rotateZ(45deg);
    }
    .is-active .button .bottom {
        -webkit-transform: translateY(-8px) rotateZ(-45deg);
        -moz-transform: translateY(-8px) rotateZ(-45deg);
        -ms-transform: translateY(-8px) rotateZ(-45deg);
        -o-transform: translateY(-8px) rotateZ(-45deg);
        transform: translateY(-8px) rotateZ(-45deg);
    }
     .button .middle { margin: 0 auto;}
    .is-active .button .middle { width: 0;}
    .menu-list {
        padding: 0;
        margin: 0;
        list-style: none;
        position: relative;
        margin-top: 150px;
        text-align: center;
    }
    .menu-anchor {
        text-decoration: none;
        position: relative;
        /*padding-bottom: 7px;*/
    }
    .menu-item {
        margin-left: 0;
        margin: 15px 0;
        /*padding: 0;*/
        /*opacity: 0;*/
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
        width: auto;
    }
    .menu-item a {
        font-weight: 500;
        display: block;
        color: #fff;
        filter: none;
        font-size: 17px;
        letter-spacing: 3px;
        writing-mode: inherit;
        background-color: inherit;
        transition: none !important;
        padding: 15px 6px;
    }
    .menu-item a:hover { color: #fff; background-color: inherit;}
	.menu-item a::after { background: inherit;}
    
    /* マウスを乗せた時の沈む動き(hvr-sink)を無効化 */
    .hvr-sink:hover, 
    .hvr-sink:focus, 
    .hvr-sink:active { -webkit-transform: none !important; transform: none !important;}
    /* マウスを乗せた時の背景色変化を無効化 */
    .menu-item a:hover { background-color: transparent !important;  color: #fff !important;}
}
@media screen and (max-width:670px){
    header { height: 70px;}
    header .logo { margin-left: 30px; padding: 10px 0;}
    header .logo img { width: 200px; margin-top: 0;}
    #logoArea { width: 35px; height: 35px;}
    .menu-overlay { top: 70px;}
    .navbox { top: 70px;}
	.bar { width: 33px; margin: 7px auto;}
    .is-active .button .top {
        -webkit-transform: translateY(12px) rotateZ(45deg);
        -moz-transform: translateY(12px) rotateZ(45deg);
        -ms-transform: translateY(12px) rotateZ(45deg);
        -o-transform: translateY(12px) rotateZ(45deg);
        transform: translateY(12px) rotateZ(45deg);
    }
    .is-active .button .bottom {
        -webkit-transform: translateY(-6.5px) rotateZ(-45deg);
        -moz-transform: translateY(-6.5px) rotateZ(-45deg);
        -ms-transform: translateY(-6.5px) rotateZ(-45deg);
        -o-transform: translateY(-6.5px) rotateZ(-45deg);
        transform: translateY(-6.5px) rotateZ(-45deg);
    }
}
@media screen and (max-width:500px){
    header .logo { margin-left: 20px;}
    header .logo img { width: 180px;}
    #logoArea { right: 20px;}
    .menu-item { margin: 5px 0;}
	/*.menu-item a { font-size: 16px;}*/
}

/***********************************************************
* フッター
***********************************************************/
footer { background: #212121; color: #fff; line-height: 2;}
footer .inner { padding: 60px 0 60px; width: 85%;}
footer .flex {}
footer .left { /*width: 45%;*/ font-size: .9em; font-weight: 400;}
footer .right { /*width: 55%;*/}
footer .logo { letter-spacing: 1.5px;}
footer .logo img { width: 260px; height: auto; margin: 10px 0 7px;}
footer a { color: #fff;}
footer a.mail { text-decoration: underline;}
footer a.mail:hover { text-decoration: none;}
footer p { font-size: 1.1em; font-weight: 400; letter-spacing: .5px; margin-bottom: 30px; text-align: center;}
footer .copy { font-size: .8em; margin-top: 10px; white-space: nowrap; font-weight: 400;}
footer .foot_menu { margin: 40px 0 30px; /*display: flex; flex-wrap: wrap;*/ width: 100%; letter-spacing: .5px;}
footer .foot_menu ul { margin-bottom: 15px;}
footer .foot_menu ul li { display: inline-block; margin-right: 45px; margin-bottom: 20px;}
footer .foot_menu ul li:nth-of-type(5) { margin-right: 0;}
footer .foot_menu ul:nth-of-type(2) li:nth-of-type(3) { margin-right: 0;}
footer .foot_menu a { font-size: 1em; text-decoration: none; white-space: nowrap;}

@media screen and (min-width:1300px){
    /*footer .foot_menu a { font-size: 1.1em;}*/
}
@media screen and (max-width:1200px){
    /*footer .inner { padding: 70px 0 50px;}*/
    footer .foot_menu ul li { margin-right: 35px;}
    footer .foot_menu { margin: 30px 0 20px;}
}
@media screen and (max-width:1000px){
    footer .logo img { width: 240px; height: auto; margin: 10px 0 7px;}
    footer .foot_menu ul li { margin-right: 30px;}
}
@media screen and (max-width:870px){
    footer .inner { padding: 50px 0 50px;}
    footer .logo { width: 210px;}
    footer .right { width: 50%;}
    footer .foot_menu ul { margin-bottom: 0;}
    footer .foot_menu ul li { 
        margin-right: 0;
        width: 49%;
        margin-bottom: 5px;
    }
    footer .foot_menu br { display: none;}
    footer .foot_menu a { font-size: 1.1em;}
}
@media screen and (max-width:670px){
    footer .logo { width: 190px; margin-bottom: 20px;}
    footer .logo img { width: 220px;}
    footer .inner { padding: 0 0 40px; text-align: center; width: 100%;}
    footer .left { width: 100%; order: 2; font-size: .9em;}
    footer .right { width: 100%; order: 1;}
    footer .foot_menu { margin: 0 0 30px;}
    footer .foot_menu ul {  width: 100%; justify-content: space-between; display: flex; flex-wrap: wrap;}
    footer .foot_menu ul li:nth-of-type(odd) { border-right: 1px solid #4E4E4E;}
    footer .foot_menu ul li {
        display: block;
        border-bottom: 1px solid #4E4E4E;
        width: 50%;
        box-sizing: border-box;
        margin-bottom: 0;
    }
    footer .foot_menu a { /*font-size: 1.1em;*/ width: 100%; line-height: 1; padding: 20px 0; display: block;}
}
@media screen and (max-width:500px){
    footer .logo { width: 180px;}
}

/***********************************************************
* リンク・ボタン
***********************************************************/
/*linkimg*/
.linkimg a { cursor: pointer; transition: all .2s;}
.linkimg a:hover{ opacity: 0.8; transition: all .2s;}
.linkimg img { cursor: pointer; transition: all .2s;}
.linkimg:hover img { opacity: 0.8; transition: all .2s;}
img.linkimg { cursor: pointer; transition: all .2s;}
img.linkimg:hover { opacity: 0.8; transition: all .2s;}

@media screen and (max-width:500px){
    .linkimg a,
    .linkimg a:hover,
    .linkimg img,
    .linkimg:hover img,
    img.linkimg,
    img.linkimg:hover { opacity: 1; transition: all none;}
}

/*btn_01*/
.btn_01 a {
  display: inline-block;
  padding: 11px 30px 10px 40px;
  background-color: #212121;
  border: 1.5px solid #212121;
  color: #fff;
  font-size: .95em;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  transition: all .2s;
  line-height: 1;
}
.btn_01 a:hover { background: #fff; color: #333; transition: all .2s;}
.btn_01 .icon-circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 15px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.btn_01 .arrow {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 4px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.btn_01 a:hover .icon-circle { background-color: #212121;}
.btn_01 a:hover .arrow { border-top: 2px solid #fff; border-right: 2px solid #fff;}

@media screen and (max-width:870px){
    .btn_01 a { font-size: 15px; width: 100%; padding: 11px 0 10px 0;}
}

/*btn_02*/
.btn_02 a {
  display: inline-block;
  padding: 14px 35px 13px 45px;
  background-color: #fff;
  border: 1px solid #212121;
  color: #212121;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  transition: all .2s;
  line-height: 1;
}
.btn_02 a:hover { background: #212121; color: #fff; transition: all .2s;}
.btn_02 .icon-circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #212121;
  border-radius: 50%;
  margin-left: 15px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.btn_02 .arrow {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.btn_02 a:hover .icon-circle { background-color: #fff;}
.btn_02 a:hover .arrow { border-top: 2px solid #212121; border-right: 2px solid #212121;}

@media screen and (max-width:870px){
    .btn_02 a { font-size: 15px; /*width: 100%; max-width: 510px;*/ /*padding: 14px 35px 13px 45px;*/}
}

/*btn_03*/
.btn_03 a {
  display: inline-block;
  padding: 10px 20px 10px 30px;
  background-color: #fff;
  border: 1px solid #666;
  color: #212121;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  transition: all .2s;
  line-height: 1;
  border-radius: 50px;
}
.btn_03 a img { width: 16px; height: auto; margin-right: 10px;}

@media screen and (max-width:670px){
    .btn_03 a { padding: 8px 20px 8px 30px;}
    .btn_03 a img { width: 12px; margin-right: 8px;}
}

/***********************************************************
* 共通
***********************************************************/
#main { overflow: hidden;}
.shadow { filter: drop-shadow(0 0 6px #111);}
.center { display: block; text-align: center; margin: 0 auto;}
.pc { display: block;}
.sp { display:none;}
.bg_white { background-color: #ffffff;}
.inner { padding: 80px 0; margin: 0 auto; width: 85%; max-width: 1200px;}
.flex { display: flex; justify-content: space-between;}
.red { color: #c1272d; font-weight: 600;}

.top_img { position: relative;}
.top_img h1.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.7em;
    letter-spacing: 5px;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
    font-weight: 800;
    writing-mode: vertical-rl;
    white-space: nowrap;
}
.top_img .topimg img { width: 100%; height: auto; object-fit: cover; max-height: 500px; min-height: 210px;}


@media screen and (min-width:1300px){
    .inner { padding: 100px 0;}    
}
@media screen and (max-width:1000px){
    .inner { padding: 60px 0;  width: 85%;}
}
@media screen and (max-width:870px){
    #section1 { margin-top: 83.68px;}
}
@media screen and (max-width:670px){
    #section1 { margin-top: 70px;}
    .inner { padding: 40px 0; width: 85%;}
    .flex { flex-direction: column;}
    .top_img h1.text { font-size: 1.5em; letter-spacing: 3px;}
}
@media screen and (max-width:500px){
    .sp { display: block;}
    .pc { display:none;}
    /*.inner { padding: 30px 0; width: 85%;}*/
}

/***********************************************************
* トップページ
***********************************************************/
.home {}
.home h2 { font-weight: 600; font-size: 1.1em; letter-spacing: 1px;}
.home #section1 .text {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2em;
    letter-spacing: .5px;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.home #section1 .text img { width: 280px; height: auto; margin-bottom: 10px; filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));}
.home #section1 .topimg img { width: 100%; height: auto; object-fit: cover; max-height: 700px; min-height: 400px;}

@media screen and (min-width:1300px){
    .home #section1 .text img { width: 300px;}
}
@media screen and (max-width:1000px){
    .home #section1 .text { top: 81%;}
    .home #section1 .text img { width: 240px;}
}
@media screen and (max-width:870px){
    .home #section1 .text img { margin-bottom: 8px;}
}
@media screen and (max-width:670px){
    .home #section1 .text { top: 81%; font-size: 1.1em; line-height: 1.5;}
    .home #section1 .topimg img { min-height: 360px;}
}
@media screen and (max-width:500px){
    .home #section1 .text { top: 82%; font-size: 1em; line-height: 1.4;}
    .home #section1 .text img { width: 200px; margin-bottom: 5px;}
    .home #section1 .topimg img { min-height: 300px;}
}

/** 研修道場について
**************************/
.home #section2 { text-align: center;}
.home #section2 .line { padding-left: 20px;}
.home #section2 .line img { width: 280px; height: auto; margin: 0 auto;}
.home #section2 h2 { font-size: 1.3em; font-weight: 600; text-align: center;}
.home #section2 p {
    display: inline-block;
    width: 100%;
    max-width: 580px;
    margin: 40px auto 0;
    text-align: left;
    /*letter-spacing: -.5px;*/
    /*font-size: 14px;*/
    font-size: .95em;
}

@media screen and (min-width:1300px){
/*    .home #section2 p { font-size: 1em;}
    .home #section2 h2 { font-size: 1.4em;}
    .home #section2 .line img { width: 295px;}*/
}
@media screen and (max-width:1200px){
}
@media screen and (max-width:1000px){
    .home #section2 .line img { width: 240px;}
    .home #section2 p { margin: 30px auto 0;}
}
@media screen and (max-width:870px){
    .home #section2 .line img { width: 220px;}
    .home #section2 p { margin: 20px auto 0; font-size: 13px;}
}
@media screen and (max-width:670px){
    .home #section2 .line img { width: 180px;}
    /*.home #section2 p { width: 100%;}*/
}

/** 概要
**************************/
.home #section3 {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home #section3 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.home #section3 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.home #section3 .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.home #section3 .text p {
    color: white;
    font-size: 1.2em;
    line-height: 2.5;
    letter-spacing: 2px;
    writing-mode: vertical-rl; /* 縦書き */
    white-space: nowrap;
    text-shadow: 0 0 15px rgba(0,0,0,0.8);
    margin: 0;
    text-align: justify; 
    display: inline-block;
    font-weight: 600;
}

@media screen and (min-width:1300px){
/*    .home #section3 { height: 650px;}
    .home #section3 .text p { font-size: 1.25em;}*/
}
@media screen and (max-width:1200px){
    .home #section3 .text p { font-size: 1.15em;}
}
@media screen and (max-width:1000px){
    .home #section3 { height: 550px;}
    .home #section3 .text p { font-size: 16px;}
}
@media screen and (max-width:870px){
    .home #section3 { height: 480px;}
    .home #section3 .text p { font-size: 15.5px;}
}
@media screen and (max-width:670px){
    .home #section3 { height: 450px;}
}

/** コンテンツ
**************************/
.home #section4 .inner { padding: 100px 0 80px;}
.home #section4 .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    /*flex-wrap: wrap;*/
}
.home #section4 .content li:nth-of-type(1) {flex: 1;}
.home #section4 .content li:nth-of-type(2) { width: 380px; flex-shrink: 0; padding-left: 80px; text-align: center;}
.home #section4 h2 {
    writing-mode: vertical-rl;
    border-right: 1px solid #333;
    font-weight: 800;
    font-size: 1.4em;
    letter-spacing: 2px;
    display: inline-block;
}
.home #section4 .text { text-align: left; /*letter-spacing: -.5px;*/ font-size: .9em; padding: 20px 0 30px; line-height: 1.8;}
.home #section4 .btn_01 {}
.home #section4 li img {}

@media screen and (min-width:1300px){
    .home #section4 .inner { padding: 120px 0 80px;}
}
@media screen and (max-width:1200px){
    /*.home #section4 .text { font-size: .95em;}*/
    .home #section4 .content li:nth-of-type(2) { width: 350px; padding-left: 50px;}
}
@media screen and (max-width:1000px){
    .home #section4 .inner { padding: 80px 0 80px;}
    .home #section4 .content li:nth-of-type(2) { width: 300px; padding-left: 40px;}
    .home #section4 .text { padding: 20px 0 20px; font-size: 13px;}
}
@media screen and (max-width:870px){
    .home #section4 .inner { padding: 60px 0 40px;}
    .home #section4 .content { flex-direction:column; max-width: 550px; margin: 0 auto 60px;}
    .home #section4 .content li:nth-of-type(2) { width: 100%; padding-left: 0;}
    .home #section4 h2 { writing-mode: inherit; border-right: 0; border-bottom: 1px solid #333; margin-top: 15px; font-size: 20px; padding: 0 10px;}
    .home #section4 .text { padding: 15px 0 25px;}
}
@media screen and (max-width:670px){
    .home #section4 .inner { padding: 50px 0 0;}
    .home #section4 .text { padding: 10px 0 20px;}
}

/** フッター アクセス・問い合わせボタン
**************************/
#foot_contact {
    position: relative;
    width: 100%;
    height: 380px;
}
#foot_contact .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#foot_contact .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: bottom;
}
#foot_contact .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    gap: 80px;
}
#foot_contact .content .foot_btn {
    display: inline-block;
    background-color: #fff;
    opacity: 0.9;
    transition: all .2s;
    border: 1px solid #fff;
}
#foot_contact .content .foot_btn:hover { opacity: 0.75; transition: all .2s;}
#foot_contact .content .foot_btn a {
    display: inline-block;
    color: #212121;
    width: 100%;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    padding: 30px 80px;
    line-height: 1;
    box-sizing: border-box;
    justify-content: center;
}
#foot_contact .content .foot_btn span {
    display: block;
    font-size: .9em;
    letter-spacing: inherit;
    font-weight: 600;
    margin-top: 8px;
}
#foot_contact .content li:first-of-type .foot_btn img { width: 28px; height: auto; margin-right: 25px;}
#foot_contact .content li:last-of-type .foot_btn img { width: 32px; height: auto; margin-right: 25px;}

@media screen and (max-width:1200px){
}
@media screen and (max-width:1000px){
    #foot_contact { height: 300px;}
    #foot_contact .content .foot_btn a { padding: 25px 60px;}
}
@media screen and (max-width:870px){
    #foot_contact .content { gap: 50px;}
    #foot_contact .content .foot_btn a { padding: 20px 55px;}
    #foot_contact .content li:first-of-type .foot_btn img { width: 22px; margin-right: 20px;}
    #foot_contact .content li:last-of-type .foot_btn img { width: 25px; margin-right: 20px;}
}
@media screen and (max-width:670px){
    #foot_contact .content { flex-direction:column;  gap: 30px;}
    #foot_contact .content .foot_btn a { padding: 15px 0; width: 300px;}
    #foot_contact .content .foot_btn span { margin-top: 5px;}
}

/***********************************************************
* 団体研修
***********************************************************/
.kensyu #section2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.kensyu #section2 p {
    font-size: 1.15em;
    line-height: 2.5;
    letter-spacing: 2px;
    writing-mode: vertical-rl; /* 縦書き */
    white-space: nowrap;
    margin: 0;
    font-weight: 800;
    margin: auto
}
.kensyu #section2 img { width: 100%; height: auto; margin: 60px 0;}
.kensyu #section2 .text { text-align: center; font-size: .95em; font-weight: 600;}

@media screen and (min-width: 1300px) {
    .kensyu #section2 .inner { padding: 80px 0;}
}
@media screen and (max-width:1200px){
}
@media screen and (max-width:1000px){
    .kensyu #section2 img { margin: 50px 0;}
}
@media screen and (max-width:870px){
    .kensyu #section2 p { font-size: 15.5px;}
}
@media screen and (max-width:670px){
    .kensyu #section2 img { margin: 30px 0;}
    .kensyu #section2 .text { text-align: left; font-size: 13px;}
    /*.kensyu #section2 .text br { display: none;}*/
    .kensyu #section2 p { font-size: 15px; font-weight: 600; letter-spacing: .5px;}
}

/** 体験内容
**************************/
.kensyu #section4 .inner { padding-bottom: 0;}
.kensyu #section3 .title {
    font-size: 1.4em;
    writing-mode: vertical-rl; /* 縦書き */
    font-weight: 800;
    letter-spacing: 2px;
    background-color: #212121;
    color: white;
    line-height: 1;
    padding: 20px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.kensyu #section3 ul.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 850px;
    margin: 50px auto 40px;
}
.kensyu #section3 ul.content li { width: 45%; text-align: center; margin-bottom: 40px;}
.kensyu #section3 ul.content h3 {
    border-bottom: 1px solid #333;
    font-weight: 800;
    font-size: 1.4em;
    letter-spacing: 2px;
    display: inline-block;
    padding: 0 10px;
    margin: auto;
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.kensyu #section3 ul.content .text { font-size: .9em; text-align: left;}
.kensyu #section3 ul.photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.kensyu #section3 ul.photo li { width: 49.5%;}

@media screen and (max-width:1000px){
}
@media screen and (max-width:870px){
}
@media screen and (max-width:670px){
    .kensyu #section3 .title { font-size: 1.2em;}
    .kensyu #section3 ul.content { flex-direction:column; margin: 30px auto 10px;}
    .kensyu #section3 ul.content li { width: 100%; margin-bottom: 20px;}
    .kensyu #section3 ul.content h3 { margin-bottom: 15px;}
    .kensyu #section3 ul.content .text { font-size: 13px;}
    .kensyu #section3 ul.photo { flex-direction:column;}
    .kensyu #section3 ul.photo li { width: 100%; margin: 6px 0; }
}


/** 体験コース
**************************/
.kensyu #section4 .bg_white { margin-bottom: 40px;}
.kensyu #section4 .bg_white:last-of-type { margin-bottom: 20px;}
.kensyu #section4 .box_inner { padding: 40px 0 50px; width: 80%; max-width: 750px; margin: auto; text-align: center;}
.kensyu #section4 .title {
    border-bottom: 1px solid #333;
    font-weight: 800;
    font-size: 1.4em;
    display: inline-block;
    padding: 0 10px;
    margin: auto;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.kensyu #section4 table.course {
     width: 100%;
     text-align: center;
     border-collapse: collapse;
     border-spacing: 0;
     font-size: 1.05em;
}
.kensyu #section4 table.course th {
     padding: 5px;
     background: #d8e3e8;
     border: solid 1px #b3b3b3;
     font-weight: 600;
     width: 200px !important;
     box-sizing: border-box;
}
.kensyu #section4 table.course td { padding: 5px; border: solid 1px #b3b3b3;}
.kensyu #section4 table.course th.top { background: #37446f; color: white; font-size: 1.15em; width: 100%; border: solid 1px #37446f;}
ul.price {
    display: flex;
    border: solid 1px #b3b3b3;
    margin-top: 30px;
    text-align: center;
    font-size: 1.15em;
    font-weight: 600;
}
ul.price li { padding: 15px; text-align: center; font-weight: 600;}
ul.price li:first-of-type {
    width: 200px;
    background-color: #333;
    color: white;
    box-sizing: border-box;
}
ul.price li:last-of-type { flex: 1; background-color: white;}
ul.price span { font-size: .8em;}
.kensyu #section4 p { font-size: .9em; margin-top: 20px;}
.kensyu #section4 .text { font-size: 1.05em; font-weight: 600; margin-top: 20px;}

@media screen and (max-width:1000px){
}
@media screen and (max-width:870px){
    .kensyu #section4 .title { margin-bottom: 25px;}
}
@media screen and (max-width:670px){
    .kensyu #section4 .bg_white { margin-bottom: 20px;}
    .kensyu #section4 .bg_white:last-of-type { margin-bottom: 15px;}
    .kensyu #section4 .box_inner { padding: 20px 0 25px; width: 85%;}
    .kensyu #section4 .title { font-size: 1.25em; margin-bottom: 15px; letter-spacing: 0;}
    .kensyu #section4 table.course { font-size: 1em;}
    .kensyu #section4 table.course th { padding: 0; width: 30% !important;}
    ul.price { flex-direction: column; margin-top: 15px; /*font-size: 1em;*/}
    ul.price li { padding: 2px;}
    ul.price li:first-of-type { width: 100%;}
    ul.price li:last-of-type { /*font-size: .9em;*/ padding: 5px;}
    .kensyu #section4 p { text-align: left; margin-top: 10px;}
    .kensyu #section4 .text { font-size: 1em; text-align: left; margin-top: 10px;}
}

/** オプション
**************************/
.kensyu #section5 { text-align: center;}
.kensyu #section5 .inner { padding: 0 0 80px;}
.kensyu #section5 .title {
    border-bottom: 1px solid #333;
    font-weight: 800;
    font-size: 1.3em;
    display: inline-block;
    padding: 0 10px;
    margin: auto;
    margin: 40px 0 20px;
    letter-spacing: 1px;
}
.kensyu #section5 .text { text-align: center;  font-size: 1.1em;}
.kensyu #section5 .text:first-of-type { text-align: left; width: 570px; margin: auto;}
.kensyu #section5 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}
.kensyu #section5 ul li { width: 49.5%;}

@media screen and (max-width:1000px){
}
@media screen and (max-width:870px){
}
@media screen and (max-width:670px){
    .kensyu #section5 .inner { padding: 0 0 40px;}
    .kensyu #section5 .title { font-size: 1.25em; margin: 20px 0 10px; letter-spacing: 0; padding: 0 10px;}
    .kensyu #section5 .text { text-align: left;  font-size: 1em;}
    .kensyu #section5 .text:first-of-type { width: auto;}
    .kensyu #section5 ul { flex-direction: column; margin-top: 20px;}
    .kensyu #section5 ul li { width: 100%; margin-top: 10px;}
}


/** 注意点（共通）
**************************/
.notice { text-align: center;}
.notice ul { text-align: left; font-size: .95em; max-width: 850px; margin: auto;}
/*.notice ul li { text-indent: -1.2em; margin-left: 1.2em;}*/
.notice ul li::before { content: '●'; margin-right: 3px;}
.notice ul li.red {}
.notice .title {
    border-bottom: 1px solid #333;
    font-weight: 800;
    font-size: 1.4em;
    display: inline-block;
    padding: 0 10px;
    margin: auto;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.notice .cancel { margin: 5px 0 8px; font-weight: 600;}

@media screen and (max-width:1000px){
}
@media screen and (max-width:870px){
}
@media screen and (max-width:670px){
    .notice ul { /*font-size: 13px;*/ margin-bottom: 20px;}
    .notice .title { font-size: 1.3em; margin-bottom: 20px;}
}

/***********************************************************
* 坐禅体験
***********************************************************/
.taiken #section2 { text-align: center;}
.taiken #section2 .title {
    border-bottom: 1px solid #333;
    font-weight: 800;
    font-size: 1.3em;
    display: inline-block;
    padding: 0 20px;
    margin: auto;
    margin: 0 0 20px;
    letter-spacing: 1px;
}
.taiken #section2 .text { font-size: .95em; font-weight: 600; width: 630px; margin: auto;}
.taiken #section2 img { width: 100%; height: auto; margin: 60px 0;}
.taiken ul.price { width: 100%; max-width: 600px; margin: auto;}
.taiken #section2 p { font-size: .9em; margin-top: 20px;}

@media screen and (max-width:1000px){
    .taiken #section2 .text { width: 570px;}
    .taiken #section2 img { margin: 50px 0;}
}
@media screen and (max-width:870px){
    .taiken #section2 .text { width: 510px;}
}
@media screen and (max-width:670px){
    .taiken #section2 .title { font-size: 1.25em; margin: 0 0 15px; padding: 0 10px;}
    .taiken #section2 .text { text-align: left; font-size: 13px; width: 100%;}
    .taiken #section2 img { margin: 30px 0;}
    .taiken #section2 p { text-align: left; margin-top: 10px;}
}

/***********************************************************
* 会場利用
***********************************************************/
.kaijou {}
.kaijou #section2 { text-align: center;}
.kaijou #section2 .text { font-size: .95em; display: inline-block; margin: auto; text-align: left;}
.kaijou #section2 .title {
    border-bottom: 1px solid #333;
    font-weight: 800;
    font-size: 1.3em;
    display: inline-block;
    padding: 0 20px;
    margin: auto;
    margin: 0 0 20px;
    letter-spacing: 1px;
}
.kaijou #section2 .btn_02 { margin: 40px 0;}
.kaijou #section2 ul.kaijou_map {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
}
.kaijou #section2 ul.kaijou_map li { width: 47%; margin-bottom: 50px;}
.kaijou #section2 p { font-weight: 600;}

@media screen and (max-width:1000px){
}
@media screen and (max-width:870px){
}
@media screen and (max-width:670px){
    .kaijou #section2 .text { font-size: 13px; width: 100%;}
    .kaijou #section2 .title { font-size: 1.25em; margin: 0 0 15px; padding: 0 10px;}
    .kaijou #section2 .btn_02 { margin: 30px 0;}
    .kaijou #section2 ul.kaijou_map { margin: 20px auto 0; /*max-width: 300px;*/}
    .kaijou #section2 ul.kaijou_map li { /*width: 100%;*/ margin: 0 auto 20px;}
    .kaijou #section2 p { text-align: left;}
    .kaijou #section2 p br { display: none;}
}

/** 会場案内
**************************/
.kaijou #section3 .inner { max-width: 100%; padding-bottom: 40px;}
.kaijou #section3 .title {
    font-size: 1.4em;
    writing-mode: vertical-rl; /* 縦書き */
    font-weight: 800;
    letter-spacing: 2px;
    background-color: #212121;
    color: white;
    line-height: 1;
    padding: 20px 12px;
    margin: auto;
}
.kaijou #section3 ul.content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 60px auto 140px;
    align-items: center;
    position: relative;
}
.kaijou #section3 ul.content::after {
    content: "　";
    position: absolute;
    right: -15%;
    bottom: -50px;
    background-color: #f3f3f2;
    width: 110%;
    height: 85%;
}
.kaijou #section3 ul.content li { z-index: 1;}
.kaijou #section3 ul.content li:first-of-type { flex: 1;}
.kaijou #section3 ul.content li:last-of-type { width: 300px; padding-left: 50px;}
.kaijou #section3 ul.content li:first-of-type img { margin-left: -15%; width: 115%;}
.kaijou #section3 ul.content:last-of-type { margin-bottom: 0;}
/*偶数番目*/
.kaijou #section3 ul.content:nth-child(odd) { flex-direction: row-reverse;}
.kaijou #section3 ul.content:nth-child(odd) li:first-of-type img { margin: 0 15% 0 0;}
.kaijou #section3 ul.content:nth-child(odd)::after { right: 0; left: -15%;}
.kaijou #section3 ul.content:nth-child(odd) li:last-of-type { padding: 0 50px 0 0;}
.kaijou #section3 .kaijou_title {
    writing-mode: vertical-rl;
    border-right: 1px solid #333;
    font-weight: 800;
    font-size: 1.4em;
    letter-spacing: 2px;
    margin: 0 auto 60px;
    text-orientation: upright; /*英数字も縦書きに*/
}

.kaijou #section3 .text { font-size: .95em; text-align: left;}
.kaijou #section3 p { border-bottom: 1px solid #999; width: 200px; margin-top: 20px; padding: 3px 10px; box-sizing: border-box;}
.kaijou #section3 ul.kaijou_price { display: flex; justify-content: space-between; width: 200px; border-bottom: 1px solid #999;}
.kaijou #section3 ul.kaijou_price li { white-space: nowrap; padding: 3px 10px;}
.kaijou #section3 ul.kaijou_price li:first-of-type {}
.kaijou #section3 ul.kaijou_price li:last-of-type { width: auto !important; padding: 3px 10px 3px 0 !important;}

@media screen and (min-width: 1300px) {
}
@media screen and (max-width:1200px){
}
@media screen and (max-width:1000px){
    .kaijou #section3 ul.content li:last-of-type { width: 250px; padding-left: 30px;}
    .kaijou #section3 ul.content:nth-child(odd) li:last-of-type { padding: 0 30px 0 0;}
    .kaijou #section3 p { margin-top: 10px;}
}
@media screen and (max-width:870px){
    .kaijou #section3 ul.content li:last-of-type { width: 200px;}
    .kaijou #section3 ul.content::after { bottom: -40px;}
    .kaijou #section3 .kaijou_title { margin: 0 auto 30px;}
}
@media screen and (max-width:670px){
    .kaijou #section3 .title { font-size: 1.2em; margin-bottom: 30px;}
    .kaijou #section3 ul.content { margin: 20px auto 80px; flex-wrap: wrap;}
    .kaijou #section3 ul.content::after { width: 130%; bottom: -35px;}
    .kaijou #section3 ul.content li { width: 100%; max-width: 400px; margin: auto;}
    .kaijou #section3 ul.content li:first-of-type { flex: auto; text-align: left;}
    .kaijou #section3 ul.content li:last-of-type { width: auto; padding-left: 0; text-align: center;}
    .kaijou #section3 ul.content li:first-of-type img { margin-left: 0; width: 100%;}
    .kaijou #section3 ul.content:nth-child(odd) li:first-of-type img { margin: 0 0 0 0;}
    .kaijou #section3 ul.content:nth-child(odd) li:last-of-type { padding: 0 0 0 0;}
    .kaijou #section3 .kaijou_title {
        writing-mode: inherit;
        border-right: 0;
        border-bottom: 1px solid #333;
        font-size: 20px;
        display: inline-block;
        margin: 15px auto 20px;
        padding: 0 10px;
    }
    .kaijou #section3 .text { font-size: 13px; width: 100%;}
    .kaijou #section3 p { margin: 10px auto 0; width: 100%; text-align: left;}
    .kaijou #section3 ul.kaijou_price { margin: auto; width: 100%;}
}

/***********************************************************
* ご宿泊
***********************************************************/
.syukubou {}
.syukubou #section2 { text-align: center;}
.syukubou #section2 .inner { padding-bottom: 0;}
.syukubou #section2 .text { font-size: .95em; display: inline-block; margin: auto; width: 100%; max-width: 600px; text-align: left;}
.syukubou #section3 { text-align: center;}
.syukubou #section3 .title {
    font-size: 1.4em;
    writing-mode: vertical-rl; /* 縦書き */
    font-weight: 800;
    letter-spacing: 2px;
    background-color: #212121;
    color: white;
    line-height: 1;
    padding: 20px 12px;
    margin: 0 auto;
}
.syukubou #section3 ul.content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}
.syukubou #section3 ul.content li { width: 48%;}
.syukubou #section3 ul.content .kaijou_title {
    border-bottom: 1px solid #333;
    font-weight: 800;
    font-size: 1.4em;
    display: inline-block;
    padding: 0 10px;
    margin: 50px auto 25px;
    letter-spacing: 1px;
}
.syukubou #section3 ul.content .text { font-size: .95em; text-align: left; margin-top: 20px;}
.syukubou ul.price { width: 100%; max-width: 600px; margin: auto;}
.syukubou ul.price:last-of-type { border-top: none;}
.syukubou ul.price li:first-of-type { width: 260px;}
.syukubou #section3 p { display: inline-block; text-align: left; margin: 30px 0 10px;}
.syukubou #section3 span.late { display: block; font-size: .9em;}

@media screen and (min-width: 1300px) {
}
@media screen and (max-width:1200px){
}
@media screen and (max-width:1000px){
    .syukubou #section3 ul.content .kaijou_title { margin: 40px auto 25px;}
}
@media screen and (max-width:870px){
    .syukubou #section3 ul.content .kaijou_title { font-size: 19px;}
    .syukubou #section3 ul.content .text { margin-top: 15px;}
}
@media screen and (max-width:670px){
    .syukubou #section2 .text { font-size: 13px; width: 100%;}
    .syukubou #section3 .title { font-size: 1.2em; margin-bottom: 15px;}
    .syukubou #section3 ul.content { margin: 0 auto 30px;}
    .syukubou #section3 ul.content .kaijou_title {margin: 30px auto 15px}
    .syukubou #section3 ul.content .text { font-size: 13px; margin-top: 10px;}
    .syukubou #section3 ul.content li { width: 100%; max-width: 400px; margin: auto;}
    .syukubou ul.price { max-width: 400px;}
    .syukubou ul.price li:first-of-type { width: 100%;}
    .syukubou #section3 p { margin: 15px 0 5px;}
}

/***********************************************************
* 交通アクセス
***********************************************************/
.access {}
.access ul.address, .access ul.direction {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}
.access ul.address li, .access ul.direction li { width: 47%; font-weight: 600;}
.access ul.address p { font-size: 1.4em; font-weight: 800;}
.access ul.address .btn_03 { margin-top: 45px;}
.access ul.address a { color: #333;}
.access ul.direction {}
.access ul.direction li {}
.access ul.direction li img { width: 20px; height: auto; margin-right: 15px;}
.access ul.direction li:last-of-type img { width: 27px; height: auto;}
.access ul.direction li:last-of-type { line-height: 2;}
.access ul.direction .title {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
    font-weight: 800;
    font-size: 1.3em;
    padding: 10px 10px;
    margin: 30px auto 20px;
    letter-spacing: 1px;
}
.access ul.direction p {
    display: inline-block;
    background-color: #d8e3e8;
    font-weight: 800;
    line-height: 1;
    padding: 5px 15px;
    border: 1px solid #AAAAAA;
    margin: 0 20px 10px 0;
}
.access ul.direction li:first-of-type p { width: 40px; text-align: center;}
.access ul.direction b { display: block; margin: 20px 0 0; font-size: 1.2em;}
.access ul.direction span {}
.access .map { padding-bottom: 20px; background-color: white;}

@media screen and (min-width: 1300px) {
}
@media screen and (max-width:1200px){
}
@media screen and (max-width:1000px){
    .access ul.address, .access ul.direction { margin: 0;}
}
@media screen and (max-width:870px){
    .access ul.direction li { width: 100%;}
    .access ul.address .btn_03 { margin-top: 35px;}
}
@media screen and (max-width:670px){
    .access ul.address li { width: 100%;}
    .access ul.address .btn_03 { margin-top: 15px; margin-bottom: 10px;}
    .access ul.direction .title { padding: 5px 10px; margin: 20px auto 15px;}
    .access ul.direction li img { width: 17px;margin-right: 10px;}
    .access ul.direction li:last-of-type img { width: 23px;}
    .access ul.direction p { margin: 0 15px 5px 0;}
    .access ul.direction b {margin: 15px 0 0;}
    .access .top_img h1.text { font-size: 1.45em; letter-spacing: 1px;}
}

/***********************************************************
* プライバシーポリシー
***********************************************************/
.policy {}
.policy .top_img h1.text { writing-mode: inherit; font-size: 1.65em; letter-spacing: 1px;}
.policy #section2 p {
    font-size: 1.15em;
    font-weight: 800;
    padding: 3px 0 15px 25px;
    margin: 50px 0 30px;
    line-height: 1;
    border-left: 5px solid #333;
    border-bottom: 1px solid #333;
}
.policy #section2 .text { font-size: .9em;}
.policy #section2 .text ul { margin-top: 30px;}
.policy #section2 .text ul li {}
.policy #section2 .text ul li::before { content: '●'; margin-right: 3px;}

@media screen and (max-width:870px){
    .policy #section2 .text { font-size: 12px;}
    .policy #section2 p { margin: 40px 0 25px;}
    .policy #section2 .text ul { margin-top: 25px;}
}
@media screen and (max-width:670px){
    .policy .top_img h1.text { font-size: 1.5em;}
    .policy #section2 .text { font-size: 13px;}
    .policy #section2 p { margin: 30px 0 20px;}
    .policy #section2 .text ul { margin-top: 20px;}
}

/***********************************************************
* お問い合せ
***********************************************************/
.contact {}
.contact #section2 { text-align: center;}
.contact #section2 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 840px;
    margin: auto;
    text-align: left;
}
.contact #section2 ul li { width: 46%;}
.contact #section2 .title {
    font-size: 1.3em;
    font-weight: 800;
    border-bottom: 1px solid #333;
    padding: 0 10px 6px;
    margin: 0 auto 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;

}
.contact #section2 .title img { margin-right: 15px;}
.contact #section2 .title.contactform img { width: 25px; height: auto;}
.contact #section2 .title.moushikomi img { width: 28px; height: auto;}
.contact #section2 .btn_02 { margin: 40px auto 0px; text-align: center;}
.contact #section2 .btn_02.fax { margin-top: 30px;}
.contact #section2 .btn_02 a {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.05em;
    font-weight: 800;
    padding: 20px 0 22px 0;
}
.contact #section2 p { text-align: center; margin: 30px 0; font-size: 1.2em; font-weight: 800;}
.contact #section2 p a { color: #333;}
.contact #section2 b { text-align: center; display: block; font-size: 1.05em;}
.contact #section2 b a { font-weight: 600; color: #333; text-decoration: underline;}
.contact #section2 b a:hover { text-decoration: none;}
.contact #section2 span.text { display: inline-block; margin: 70px auto 40px; text-align: left; font-size: .95em;}

@media screen and (max-width:870px){
    .contact #section2 ul li { width: 47%;}
    .contact #section2 .btn_02 { margin: 30px auto 0px;}
    .contact #section2 .btn_02.fax { margin-top: 20px;}
    .contact #section2 p { margin: 20px 0;}
}
@media screen and (max-width:670px){
    .contact #section2 ul li { width: 100%;}
    .contact #section2 .title { margin: 0 auto 15px;}
    .contact #section2 .title img { margin-right: 10px;}
    .contact #section2 .title.contactform img { width: 22px;}
    .contact #section2 .title.moushikomi img { width: 25px;}
    .contact #section2 .btn_02 { margin: 20px auto 0px;}
    .contact #section2 .btn_02.fax { margin-top: 15px;}
    .contact #section2 p { margin: 15px 0;}
    .contact #section2 b { margin: 0 0 40px;}
    .contact #section2 .btn_02 a { padding: 17px 0 17px 0; max-width: 400px;}
    .contact #section2 span.text { margin: 30px auto 30px;}
}

/***********************************************************
* ご利用申込（Formzu）
***********************************************************/

.moushikomi .form_wrap {
    position: relative;
    width: 100%;
    /* 高さを維持するための設定（フォームの長さに応じて調整） */
    padding-bottom: 1360px; 
    height: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}
.form_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    scrolling: no; 
    border: 0;
    overflow: hidden;
}
@media screen and (max-width: 704px) { .moushikomi .form_wrap { padding-bottom: 1400px;} }
@media screen and (max-width: 640px) { .moushikomi .form_wrap { padding-bottom: 1500px;} }
@media screen and (max-width: 600px) { .moushikomi .form_wrap { padding-bottom: 1600px;} }
@media screen and (max-width: 500px) { .moushikomi .form_wrap { padding-bottom: 1700px;} }
@media screen and (max-width: 470px) { .moushikomi .form_wrap { padding-bottom: 1800px;} }
@media screen and (max-width: 460px) { .moushikomi .form_wrap { padding-bottom: 1900px;} }
/* スマホ表示切り替えブレイクポイント ＋ タッチ操作のデバイス スマホ・タブレット(hover: none) ＋ 縦より横が長い場合・スマホ横向き(orientation: landscape) */
@media screen and (max-width: 1114px) and (hover: none) and (orientation: landscape) { .moushikomi .form_wrap { padding-bottom: 1600px;} }
@media screen and (max-width: 1024px) and (hover: none) and (orientation: landscape) { .moushikomi .form_wrap { padding-bottom: 1400px;} }
@media screen and (max-width: 932px) and (hover: none) and (orientation: landscape) { .moushikomi .form_wrap { padding-bottom: 2600px;} }
@media screen and (max-width: 896px) and (orientation: landscape) { .moushikomi .form_wrap { padding-bottom: 2600px;} }
@media screen and (max-width: 787px) and (hover: none) and (orientation: landscape) { .moushikomi .form_wrap { padding-bottom: 2600px;} }
@media screen and (max-width: 750px) and (hover: none) { .moushikomi .form_wrap { padding-bottom: 2600px;} }

@media screen and (max-width: 460px) and (hover: none) and (orientation: landscape) {  .moushikomi .form_wrap { padding-bottom: 1900px;} }
@media screen and (max-width: 460px) and (hover: none) { .moushikomi .form_wrap { padding-bottom: 2850px;} }



