@charset "UTF-8";
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .1rem;
    color: #333;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: border-box;
}
/*
* {
    outline:1px solid #0000FF;
}
*/
/*--------共通パーツ--------*/
.section-title {
    font-weight: 900;
    color: #007c41;
    margin-bottom: 2rem;
}
.section-title-ja {
    display: block;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
}
.section-title-en {
    display: block;
    font-size: .9rem;
    font-family: serif;
}
.wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
a {
    text-decoration: none;
    transition: .3s;
}
a:hover {
    opacity: .7;
}
/*--------ヘッダー--------*/
header {
    position: relative;
    background-color: #f9eddc;
    height: 756px;
    padding: 1rem 2rem 4rem;
}
header::before {
    position: absolute;
    content: "";
    background-image: url("img/paper.webp");
    background-repeat: repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    pointer-events: none;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
}
.site-title {
    display: block;
    width: 20%;
}
.logo-area img {
    width: 100%;
}
.header-nav #nav_toggle_text {
    display: none;
}
.header-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}
.header-link {
    position: relative;
    display: inline-block;
    padding: 8px;
    border-radius: 8px 0 0 8px;
    transition: .2s ease-in;
}
.header-link::before {
    position: absolute;
    content: "";
    background-color: #007c41;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    opacity: 0;
    transition: .2s ease-in;
}
.header-link-ja {
    display: block;
    color: #007c41;
    font-size: 1.4rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
}
.header-link-en {
    display: block;
    color: #dd782c;
    font-size: .9rem;
}
.header-link:hover {
    background-color: #eff9f4;
    padding-right: 1rem;
}
.header-link:hover::before {
    opacity: 1;
}
.header-link:hover .header-link-ja {
    color: #dd782c;
}
.catch-copy-main {
    position: absolute;
    color: #dd782c;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    writing-mode: vertical-rl;
    top: 12%;
    left: 4%;
    z-index: 20;
}
.main-visual-wrapper {
    position: relative;
}
.main-visual {
    position: absolute !important;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 680px;
    height: 680px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 2px 2px 10px #aaa;
    overflow: hidden;
}
.main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.main-visual-circle-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 748px;
    height: 748px;
    z-index: 20;
    overflow: hidden;
}
.main-visual-circle {
    width: 100%;
    height: 100%;
    transform-origin: center center;
    animation: circle-animation 60s linear infinite;
}
.main-visual-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@keyframes circle-animation {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
}
.news {
    position: relative;
    background-color: #f9eddc;
    padding: 2rem 0;
}
.news::before {
    position: absolute;
    content: "";
    background-image: url("img/paper.webp");
    background-repeat: repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    pointer-events: none;
}
.news-container {
    width: 680px;
    padding: 1rem;
    border-top: solid 1px #007c41;
    border-bottom: solid 1px #007c41;
    margin: 2rem auto;
}
.news-link {
    display: inline-block;
    color: #333;
}
.news-date {
    display: block;
    font-size: .9rem;
}
.news-title {
    display: block;
    font-weight: 900;
}
/*--------slickの設定--------*/
.slick-list {
    width: 100%;
    height: 100%;
}
.slick-track {
    width: 100%;
    height: 100%;
}
/*--------背景設定--------*/
.back-ground {
    position: relative;
}
.back-green {
    background-color: #eff9f4; 
}
.back-orange {
    background-color: #f9eddc; 
    z-index: 15;
}
.back-ground::before {
    position: absolute;
    content: "";
    background-image: url("img/paper.webp");
    background-repeat: repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    pointer-events: none;
}
/*--------代表挨拶--------*/
.message {
    padding: 4rem 0;
}
/*--------コンテンツ共通設定--------*/
.top-content {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 8rem 0;
    overflow: hidden;
}
.content-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 60%;
    height: 50%;
    min-height: 480px;
    border-radius: 12px 0 0 12px;
    margin-left: -10%;
    z-index: 15;
}
.content-container {
    position: relative; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
    padding: 3.2rem 2rem;
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 2px 2px 10px #aaa;
    z-index: 20;
}
.column-title {
    writing-mode: vertical-lr;
    margin-bottom: 0;
}
.content-text-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 2rem;
}
.read-more-box {
    position: relative;
    margin-top: 2rem;
}
.read-more-box::before,
.read-more-box::after {
    opacity: 1;
}
.read-more-box:hover::before,
.read-more-box:hover::after {
    opacity: .7;
}
.read-more-box::before {
    position: absolute;
    content: "";
    background-color: #6f4e31;
    bottom: -2px;
    left: 0;
    width: 99%;
    height: 1px;
}
.read-more-box::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: none;
    border-bottom: 10px solid #6f4e31;
    border-right: 20px solid transparent;
}
.read-more {
    position: relative;
    display: block;
    color: #6f4e31;
    padding-left: 2rem;
}
.read-more::before {
    position: absolute;
    content: ">>";
    left: 0;
    transition: .3s;
    opacity: 1;
}
.read-more:hover::before {
    left: 2%;
    opacity: .7;
}
/*--------リバースコンテンツの設定--------*/
.facilities.reverse-content {
    justify-content: flex-start;
}
.reverse-content .content-img {
    margin-left: initial;
    margin-right: -10%;
    border-radius: 0 12px 12px 0;
}
.reverse-content .content-text-area {
    margin-left: 0;
    margin-right: 2rem;
}
.reverse-content .read-more-box {
    text-align: right;
}
.reverse-content .read-more-box::before {
    left: initial;
    right: 0;
}
.reverse-content .read-more-box::after {
    left: 0;
    border-left: 20px solid transparent;
    border-right: none;
}
.reverse-content .read-more {
    padding-left: 0;
    padding-right: 2rem;
}
.reverse-content .read-more::before {
    content: "<<";
    right: 0;
}
.reverse-content .read-more:hover::before {
    right: 2%
}
/*--------トップページコンテンツ--------*/
/*--------お問い合わせ--------*/
.contact {
    position: relative;
    padding: 4rem 0;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    z-index: 20;
}
.contact::before {
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, .75);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.contact-br {
    display: none;
}
.link-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 56%;
    min-width: 760px;
    margin: 2rem auto 0;
}
.contact-btn {
    display: inline-block;
    background-color: #007c41;
    align-items: center;
    line-height: 1.5;
    border-radius: 3em;
    padding: 1rem 4rem;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: .3s ease;
}
.tel-link {
    background-color: #dd782c;
    cursor: auto;
}
.tel-link span {
    display: block;
}
.form-link {
    position: relative;
    border: solid 1px #007c41;
    overflow: hidden;
}
.form-link:hover {
    background-color: #fff;
    color: #007c41;
}
.form-link::before {
    position: absolute;
    content: "";
    background-color: currentColor;
    top: 48%;
    right: 1rem;
    width: 1rem;
    height: 2px;
    transition: .3s;
    opacity: 1;
}
.form-link:hover::before {
    width: 2rem;
    opacity: 1;
}
.form-link::after {
    position: absolute;
    content: "";
    top: 43%;
    right: 5%;
    width: 8px;
    height: 8px;
    border-right: solid 2px currentColor;
    border-bottom: solid 2px currentColor;
    transform: rotate(-45deg);
}
/*--------フッター--------*/
#footer {
    position: relative;
    background-color: #007c41;
    z-index: 20;
}
#footer::before {
    position: absolute;
    content: "";
    background-image: url("img/logo-mountain.webp");
    background-repeat: no-repeat;
    background-size: contain;
    top: 36%;
    left: 12%;
    width: 200px;
    height: 100px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    padding: 2rem 0;
    margin: 0 auto;
}
.footer-list {
    display: flex;
    justify-content: space-between;
}
.footer-nav-item {
    color: #fff;
    margin-left: 2rem;
}
.footer-nav-item:first-child {
    margin-left: 0;
}
.footer-link {
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    text-decoration: underline;
}
.footer-link:hover {
    color: #eff9f4;
    text-decoration: none;
}
.footer-address {
    margin-left: auto;
}
.footer-address br {
    display: none;
}
.footer-logo {
    width: 300px;
    margin-bottom: 1rem;
}
.footer-logo img {
    width: 100%;
}
.footer-locate {
    color: #fff;
}
.copy-right {
    text-align: center;
    padding: 1rem 0;
}
.copy-right p {
    color: #fff;
    font-size: .8rem;
}
.copy-right br {
    display: none;
}
/*--------動く葉っぱの設定--------*/
.green-side1, .green-side2,
.red-side1, .red-side2 {
    position: fixed;
    will-change: transform;
    transform: translateY(0);
    width: 5%;
    opacity: 0;
    transition: .2s;
    z-index: -1;
    pointer-events: none;
}
.green-side1 img, .green-side2 img,
.red-side1 img, .red-side2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
} 
.green-side1, .red-side1 {
    top: 0;
    left: 0;
}
.green-side2, .red-side2 {
    top: 0;
    right: 0;
}
.green-side1.active-parts, .green-side2.active-parts,
.red-side1.active-parts, .red-side2.active-parts {
    opacity: 1;
    z-index: 10;
}
/*--------個別ページ設定--------*/
    /*--個別ページだと現在のページの色が変わる--*/
.header-link.current .header-link-ja {
    color: #dd782c;
}
    /*--個別ページ用ヘッダー--*/
.header.header-single {
    height: auto;
    padding: 1rem 2rem 2rem;
}
.single-title-container {
    display: flex;
    align-items: center;
}
.header-single .header-nav {
    width: 20%;
}
.single-title {
    position: relative;
    display: inline-block;
    text-align: center;
}
.single-title::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) rotate(28deg);
    border-radius: 50%;
    border: solid 1px transparent;
    border-top-color: #dd782c;
    border-bottom-color: #dd782c;
}
    /*--新着情報--*/
.info-title {
    display: block;
    color: #007c41;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    margin-bottom: 2rem;
}
.page-content.info-content {
    min-height: 300px;
}
    /*--個別ページ内設定--*/
.page-content {
    margin: 1rem auto 3rem;
    width: 100%;
    max-width: 1200px;
    min-height: 500px;
    padding: 1rem;
}
.page-content h3 {
    position: relative;
    display: inline-block;
    color: #007c41;
    font-size: 1.8rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    margin-bottom: 2rem;
}
.page-content h3::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 20px;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: solid 1px transparent;
    border-top-color: #007c41;
    border-bottom-color: #007c41;
}
.page-content h4 {
    position: relative;
    display: table;
    color: #007c41;
    font-size: 1.8rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    margin-bottom: 2rem;
}
.page-content h4::before,
.page-content h4::after {
    position: absolute;
    content: "";
    background-color: #007c41;
    width: 20px;
    height: 1px;
}
.page-content h4::before {
    top: 50%;
    left: -20%;
}
.page-content h4::after {
    top: 50%;
    right: -20%;
}
.page-content h5 {
    position: relative;
    display: block;
    color: #dd782c;
    font-size: 1.4rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    line-height: 1.3;
    padding-bottom: 8px;
    border-bottom: solid 1px #dd782c;
    margin-bottom: 1.5rem;
    z-index: 10;
}
.page-content h6 {
    position: relative;
    display: inline-block;
    background: #DD782C;
    background: linear-gradient(-45deg, rgba(221, 120, 44, 1) 0%, rgba(235, 55, 49, 1) 100%);
    color: #fff;
    font-size: 1.2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    padding: 8px 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.page-content a {
    color: #6f4e31;
    text-decoration: underline;
    transition: .3s;
}
.page-content a:hover {
    opacity: .7;
}
.page-content ul {
    margin-bottom: 1rem;
}
.page-content ul li {
    position: relative;
    margin-bottom: 10px;
    margin-left: 1.5rem;
}
.page-content ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid #dd782c;
}
.page-content ol {
    counter-reset: li_count;
    margin-bottom: 1.5rem;
}
.page-content ol li {
    margin-bottom: 10px;
}
.page-content ol li:before {
    counter-increment: li_count;
    content: counter(li_count)".";
    margin-right: 5px;
    color: #dd782c;
}
.page-content p {
    margin-bottom: 1rem;
}
.page-content strong {
    font-size: 1.2rem;
    font-weight: bold;
}
.page-content address {
    font-size: 1rem;
}
.page-content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}
.page-content th,
.page-content td {
    border-top: solid 1px #d2d2d2;
    border-bottom: solid 1px #d2d2d2;
}
.page-content th {
    background-color: transparent;
    color: #007c41;
    font-weight: 900;
    text-align: left;
    width: 30%;
    padding: 1rem 8px;
}
.page-content td {
    background-color: transparent;
    width: 70%;
    padding: 1rem 8px;
}
.page-content .table-flex {
    border-collapse: initial;
    border: none;
}
.page-content .table-flex tr {
    display: flex;
    justify-content: space-between;
    border: none;
}
.page-content .table-flex th,
.page-content .table-flex td {
    border: none;
}
.page-content .table-flex-reverse {
    border-collapse: initial;
    border: none;
}
.page-content .table-flex-reverse tr {
    display: flex;
    justify-content: space-between;
    border: none;
}
.page-content .table-flex-reverse th,
.page-content .table-flex-reverse td {
    border: none;
}
.page-content .border-table tr {
    border-top: solid 1px #d2d2d2;
}
.page-content .border-table tr:last-child {
    border-bottom: solid 1px #d2d2d2;
}
.page-content .noborder {
    border: none;
}
.page-content .redline {
    border: double 1px #e65d5d;
}
.page-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-content .custom-img1 {
    width: auto;
}
.page-content .custom-img2 {
    width: 75%;
}
/*--------お問い合わせフォームの設定--------*/
form {
    width: 72%;
	border-radius: 12px;
}
label {
    display: block;
    font-weight: 900;
    margin-bottom: 0.5em;
    gap: 8px;
}

.wpcf7-form-control {
	margin-bottom: 1em;
}
.wpcf7-form .required {
    display: inline-block;
    background-color: #dd782c;
    color: #fff;
    font-size: .9rem;
    text-align: center;
    vertical-align: middle;
    line-height: 1.4;
    padding: 2px 7px 2px 10px;
    border-radius: 4px;
    margin-top: -4px;
    margin-left: 12px;
}
.wpcf7-form .any {
    display: inline-block;
    color: #6f4e31;
    font-size: .9rem;
    text-align: center;
    vertical-align: middle;
    line-height: 1.4;
    padding: 2px 7px 2px 10px;
    border-radius: 4px;
    border: solid 1px #6f4e31;
    margin-top: -4px;
    margin-left: 12px;
}
.name-flex {
    display: flex;
    justify-content: space-between;
}
.name-flex p {
    width: 100%;
}
.name-flex p:first-child {
    margin-right: 2rem;
}
input[type=submit],
button[type=submit]{
	display: block;
    background: #007c41;
	color: #fff;;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    width: auto;
    padding: 0.6rem 3rem;
    border-radius: 4em;
	border: 1px solid #007c41;
    margin: 0;
	transition: .3s;
    cursor: pointer;
}
input[type=submit]:hover,
button[type=submit]:hover{
	color: #007c41;
	background:#fff;
}
form input,
form select,
form textarea,
form button{
    width: 100%;
	max-width:100%;
	padding:.5em;
	border:1px solid #ccc;
	border-radius:4px;
    margin-top: .5em;
}
form textarea {
    height: auto;
}
form button {
    width: 6rem;
}
form :disabled{
	color:#ccc;
	background:#eee;
}
.wpc7-list-item {
    margin: 0;
}
.wpcf7-form-control input[type="checkbox"] {
    transform: scale(1.5);
    width: initial;
    margin: 0;
    vertical-align: middle;
}
.wpcf7-form-control .wpcf7-checkbox {
    text-align: left;
}
.wpcf7-acceptance label {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
}
.wpcf7-list-item {
    margin: 0 !important;
}
/*--------タブレットの設定--------*/
@media screen and (max-width: 1000px) {
    /*--ハンバーガーメニューの設定--*/
    #close_toggle {
        display: block;
        padding: 1em;
        text-align: right
    }
    #gnav_overlay {
        position: fixed;
        display: none;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,.7);
        transition: .5s;
        z-index: 80;
        top: 0;
        right: 0
    }
    .header-nav {
        overflow: hidden;
    }
    .header-nav #nav_toggle{
        position: fixed;
        display: flex;
        align-items: center;
        height: 40px;
        top: 1rem;
        right: 2rem;
        z-index: 1000;
        cursor: pointer;
    }
    .header-nav #nav_toggle #nav_toggle_icon {
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        margin-top: 15px;
        margin-right: 15px;
        transition: .2s;
        z-index: 90;
    }
    .header-nav #nav_toggle_text {
        position: absolute;
        display: block;
        font-size: 0.7rem;
        color: #fff;
        right: 20%;
        bottom: -60%;
        z-index: 90;
    }
    .header-nav #nav_toggle::before {
        position: absolute;
        content: "";
        background-color: #007c41;
        width: 80px;
        height: 80px;
        top: -4px;
        right: -9.6px;
        border-radius: 50%;
    }
    .header-nav #nav_toggle #nav_toggle_icon:before,
    .header-nav #nav_toggle #nav_toggle_icon:after {
        position: absolute;
        display: block;
        content: "";
        width: 30px;
        height: 2px;
        background: #fff;
        transition: .3s;
        top: 68%;
        left: 0
    }
    .header-nav #nav_toggle #nav_toggle_icon:before {
        margin-top: -14px
    }
    .header-nav #nav_toggle #nav_toggle_icon:after {
        margin-top: 11px
    }
    .header-nav #nav_toggle.close {
        background: rgba(0,0,0,0)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon:before {
        background-color: #007c41;
        margin-top: -1px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon:after {
        background-color: #007c41;
        margin-top: -1px;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon {
        background-color: transparent;
    }
    .header-nav #nav_toggle.close #nav_toggle_text {
        color: #007c41;
    }
    .header-nav #nav_toggle.close::before {
        background-color: rgba(255,255,255,0);
    }
    /*--ハンバーガーメニューリスト--*/
    .header-link:hover {
        background-color: #eff9f4;
        padding-right: 8px;
    }
    .header-link::before {
        content: none;
    }
    .header-list {
        display: block;
        position: fixed;
        background-color: #eff9f4;
        padding-top: 6rem;
        top: 0;
        right: -100%;
        z-index: 100;
        width: 50vw;
        height: 100vh;
        text-align: center;
        transition: .3s;
    }
    /*--ハンバーガーメニューオープン--*/
    .open .header-list {
        right: 0;
        padding-top: 6rem;
    }
    .header-item {
        margin-bottom: 2rem;
    }
    /*--ヒーローヘッダーの編集--*/
    .site-title {
        width: 200px;
    }
    .catch-copy-main {
        color: #dd782c;
        font-size: 2rem;
        writing-mode: initial;
        top: initial;
        bottom: 0;
        left: 12%;
    }
    .main-visual {
        width: 560px;
        height: 560px;
    }
    .main-visual-circle-wrapper {
        top: 0.4%;
        left: 50%;
        transform: translateX(-50%);
        width: 616px;
        height: 616px;
    }
    .message {
        padding: 2rem 1rem;
    }
    .top-content {
        padding: 4rem 0;
    }
    .content-img {
        width: 60%;
    }
    .content-container {
        width: 60%;
        padding: 2rem;
        margin-right: -16%;
    }
    .reverse-content .content-container {
        margin-left: -16%;
        margin-right: auto;
    }
    .contact-br {
        display: inline-block;
    }
    .link-flex {
        justify-content: space-around;
        width: 100%;
        min-width: 400px
    }
    #footer::before {
        left: 28%;
    }
    .footer-list {
        flex-direction: column;
    }
    .footer-nav-item {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    .footer-nav-item:first-child {
        margin-left: 0;
    }
    .footer-nav-item:last-child {
        margin-bottom: 0;
    } 
    .green-side1, .green-side2, .red-side1, .red-side2 {
        width: 7%;
    }
    /*--個別ページ用ヘッダー_タブレット--*/
    .header.header-single {
        height: 192px;
        padding: 2rem 1rem;
    }
    .single-title-container {
        display: flex;
        align-items: center;
    }
    .header-single .header-nav {
        width: auto;
    }
    .single-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .single-title::before {
        width: 152px;
        height: 152px;
        transform: translate(-50%, -50%) rotate(24deg);
    }
    .page-content .custom-img1 {
        width: 100%;
    }
    .page-content .custom-img2 {
        width: 100%;
    }
    /*--コンタクトフォーム_タブレット--*/
    form {
        width: 100%;
    }
}
/*--------SPの設定--------*/
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
        letter-spacing: .1rem;
    }
    .section-title {
        margin-bottom: 8px;
    }
    .wrapper {
        width: 100%;
    }
    header {
        padding: 1rem 1rem 4rem;
        height: calc(77dvw + 12dvw + 20dvh);
    }
    .header-list {
        width: 100%;
    }
    .header-nav #nav_toggle #nav_toggle_icon {
        margin-top: 0;
        margin-right: 5px;
    }
    .header-nav #nav_toggle_text {
        font-size: 0.6rem;
        right: 4%;
        bottom: -32%;
    }
    .header-nav #nav_toggle::before {
        width: 60px;
        height: 60px;
    }
    .header-nav #nav_toggle #nav_toggle_icon:before {
        margin-top: -18px
    }
    .header-nav #nav_toggle #nav_toggle_icon:after {
        margin-top: 2px
    }
    .main-visual {
        width: 70dvw;
        height: 70dvw;
        margin-top: 4rem;
    }
    .main-visual-circle-wrapper {
        position: absolute;
        top: 5.2rem;
        width: 77dvw;
        height: 77dvw;
    }
    .catch-copy-main {
        font-size: 4.8vw;
        text-align: left;
    }
    .news-container {
        width: 88%;
        margin: 0 auto;
    }
    .top-content {
        padding: 2rem 0;
        flex-direction: column-reverse;
    }
    .content-img {
        width: 92%;
        height: auto;
        min-height: 40vh;
        margin-left: auto;
    }
    .content-container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        width: 92%;
        height: auto;
        padding: 1.2rem;
        margin-top: -2rem;
        margin-right: auto;
    }
    .column-title {
        writing-mode: horizontal-tb;
        margin-bottom: 8px;
        margin-right: auto;
    }
    .section-title-ja {
        font-size: 8vw;
    }
    .content-text-area {
        margin-left: 0;
    }
    .read-more-box {
        margin-top: 8px;
    }
    /*--------リバースコンテンツ_SP--------*/
    .reverse-content {
        flex-direction: column;
    }
    .reverse-content .content-img {
        margin-left: auto;
        margin-right: 0;
        border-radius: 12px 0px 0px 12px;
    }
    .reverse-content .content-container {
        flex-direction: column-reverse;
        margin-left: 0;
        margin-right: auto;
    }
    .reverse-content .content-text-area {
        margin-left: 0;
        margin-right: 0;
    }
    .reverse-content .read-more-box {
        text-align: left;
    }
    .reverse-content .read-more-box::before {
        left: 0;
        right: initial;
    }
    .reverse-content .read-more-box::after {
        left: initial;
        right: 0;
        border-left: none;
        border-right: 20px solid transparent;
    }
    .reverse-content .read-more {
        padding-left: 2rem;
        padding-right: 0;
    }
    .reverse-content .read-more::before {
        content: ">>";
        left: 0;
    }
    /*--お問い合わせ_SP--*/
    .contact {
        padding: 2rem 1rem;
    }
    .link-flex {
        flex-direction: column;
        width: 100%;
        min-width: 100%;
        margin: 1rem auto 0;
    }
    .form-link {
        margin-bottom: 1rem;
    }
    /*--フッター_SP--*/
    #footer::before {
        content: none;
    }
    .footer-flex {
        width: 100%;
        padding: 1rem;
    }
    .footer-nav {
        width: 50%;
    }
    .footer-list {
        flex-direction: column;
    }
    .footer-nav-item {
        margin-left: 0;
    }
    .footer-address {
        text-align: right;
    }
    .footer-address br {
        display: block;
    }
    .footer-logo {
        width: 200px;
        margin-bottom: 12px;
    }
    .copy-right p {
        font-size: 2.4vw;
    }
    .copy-right br {
        display: block;
    }
    .green-side1, .green-side2, .red-side1, .red-side2 {
        display: none;
    }
    /*--個別ページ用ヘッダー_SP--*/
    .header.header-single {
        height: 152px;
        padding: 1rem;
    }
    .header-single .site-title {
        width: 36%;
    }
    .single-title-container {
        display: flex;
        align-items: center;
    }
    .header-single .header-nav {
        width: auto;
    }
    .single-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .single-title::before {
        width: 108px;
        height: 108px;
        transform: translate(-50%, -50%) rotate(16deg);
    }
    .single-title .section-title-ja {
        font-size: 1.4rem;
    }
    /*--表の組み換え_SP--*/
    .page-content .table-flex tr {
        flex-direction: column;
        justify-content: space-between;
    }
    .page-content .table-flex-reverse tr {
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    .page-content table {
        width: 100%;
        margin-bottom: 10px;
        border-collapse: collapse;
        }
    .page-content tr {
        width: 100%;
    }
    .page-content th,
    .page-content td {
        display: block;
        border: none;
        }
    .page-content th {
        width: 100%;
        padding: 6px;
        background-color: transparent;
        text-align: left;
    }
    .page-content td {
        background-color: transparent;
        width: 100%;
        padding: 6px;
    }
    /*--コンタクトフォーム_SP--*/
    .name-flex {
        flex-direction: column;
    }
    .form-link-btn {
        padding: 1rem 2rem;
    }
    form input,
    form select,
    form textarea,
    form button{
        width: 100%;
    }
}
/*-------------アニメーション------------------*/
.animation {
    opacity: 0
}
.fadeup {
    transform-origin: center top;
    -webkit-animation: fadeup 1s both;
    animation: fadeup 1s both
}

.slidein_left {
    transform-origin: right center;
    -webkit-animation: slidein_left 1s both;
    animation: slidein_left 1s both
}
.slidein_right {
    transform-origin: right center;
    -webkit-animation: slidein_right 1s both;
    animation: slidein_right 1s both
}

.d3 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.d5 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.d10 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.d15 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

.d20 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.d25 {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s
}

.d30 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.d35 {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s
}

.d40 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.d45 {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s
}

.d50 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.d55 {
    -webkit-animation-delay: 5.5s;
    animation-delay: 5.5s
}

.d60 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

@-webkit-keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@-webkit-keyframes slidein_right {
    0% {
        transform: translate(2em, 0, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0, 0);
        opacity: 1
    }
}

@keyframes slidein_right {
    0% {
        transform: translate(2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes circle {
    0% {
        transform-origin: 50% 50%;
        transform: scaleY(1) rotate(0deg)
    }

    50% {
        transform: scaleY(1) rotate(180deg);
        transform-origin: 50% 50%
    }

    100% {
        transform: scaleY(1) rotate(360deg);
        transform-origin: 50% 50%
    }
}

@keyframes circle {
    0% {
        transform-origin: 50% 50%;
        transform: scaleY(1) rotate(0deg)
    }

    50% {
        transform: scaleY(1) rotate(180deg);
        transform-origin: 50% 50%
    }

    100% {
        transform: scaleY(1) rotate(360deg);
        transform-origin: 50% 50%
    }
}