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 {
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	text-decoration: none;
	color: #000;
    transition: box-shadow 0.5s ease,opacity 0.5s ease;
}
a:hover{
    opacity: 0.5;
}
a:active{
	color: #000;
}
a:focus{
	outline: none;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}
*, *:before, *:after {
	margin: 0;
	padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/* 共通部分 */
body{
    background: #430E0A;
    line-height:1;
	overflow-x: hidden;
	background: #FFFFFF;
	transition: all .2s ease-in-out;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	position: relative;
}
.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}
.kaisei-decol-bold {
  font-family: "Kaisei Decol", serif;
  font-weight: 700;
  font-style: normal;
}
.italiana-regular {
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h4{
    font-size: 28px;
}
h4 span{
    font-size: 20px;
}
h5{
    font-size: 24px;
}
#home h4{
    letter-spacing: 3px;
}

section#top,
section#story,
section#gallery,
.gallery-animation,
.loading { min-height: 100vh; }
@supports (height: 100dvh) {
  section#story,
  section#gallery,
  .gallery-animation,
  .loading { min-height: 100svh; height: 100dvh; }
  section#top {
    --header-h: 100px;
    min-height: calc(100svh - var(--header-h));
    height: calc(100dvh - var(--header-h));
  }
}

@media (max-width: 576px) {
  @supports (height: 100dvh) {
    section#top { --header-h: 60px; }
  }
}
.scrollAnim.ready { opacity: 0; transition: opacity 1s ease, transform 1s ease; }
.scrollBottomUp.ready { transform: translateY(80px); }
.scrollBottomUp.ready.active { transform: translateY(0); }
body { transition: background-color .2s ease-in-out, color .2s ease-in-out; }

/* ローディング画面 */
.loading {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: all 0.5s linear;
	z-index: 1000;
}
.loading.loaded {
	opacity: 0;
	visibility: hidden;
}
.loading div p.italiana-regular{
	width: auto;
	color: #9F2218;
	text-align: center;
	font-size: 100px;
	transform-origin: center;
    animation: loadingScale 1.5s ease;
}
.loading div img{
	display:block;
	width: 200px;
	height: auto;
	margin: 20px auto 0 auto;
}
@keyframes loadingScale {
    0%{ transform: scale(0); }
    100%{ transform: scale(1); }
}
.skip-loader .loading { display: none !important; }

/* header */
header{
    width: 100%;
    height: 100px;
    display: flex;
    border-bottom: 3px solid #e2b14e;
    background: #430E0A;
    justify-content: space-between;
    align-items: center;
}
h1{
	font-size: 60px;
	padding: 0 10px;
    color: white;
}
h1 span{
	letter-spacing: 4px;
    font-size: 20px;
}
.header-Tagline{
	font-size: 20px;
	color: #fff;
	display: block;
	padding: 0;
}
.header-fixed {
    position: fixed; /* ここに注目! */
    top: 0;
    z-index: 999;
}
/* hamburger menu */
.hamburger {
    width: 70px;
    height: 70px;
    margin: 0 20px 0 0;
    cursor: pointer;
    z-index: 20;
    position: relative;
}
.hamburger span {
    display: block;
    transition: 0.4s;
    position: absolute;
}
.hamburger span:nth-child(1) {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #fff;
    top: 0;right: 0;
}
.hamburger span:nth-child(2) {
    width: 50%;
    height: 4px;
    border-radius: 2px;
    background-color: #fff;
    margin: 40% 0;
    top: 0;right: 0;
}
.hamburger span:nth-child(3) {
    width: 100%;
    text-align: center;
	letter-spacing: 2px;
    color: #fff;
    font-size: 20px;
    bottom: 0;
}
.hamburger.active span:nth-child(1) {
    width: 100%;
    margin: 15px 0 0 0;
}
.hamburger.active span:nth-child(2) {
    width: 100%;
    margin: 15px 0 0 0;
}
.menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: rgba(67, 14, 10, 0.8);
    color: #fff;
    transition: right 0.5s ease;
    padding: 100px 20px 20px 20px;
    box-sizing: border-box;
    z-index: 10;
}
.menu.open {
    right: 0;
}
.menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 80px;
}
.menu li {
    padding: 20px 0;
    border-bottom: 1px solid #936C1B;
}
.menu li:nth-child(1) {
    border-top: 1px solid #936C1B;
}
.menu li a {
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
}


/* header-lower */
.second-visual{
    margin: 0;
    padding: 0;
}
.second-visual img{
    width: 100%;
}

.g-wrap{
    padding: 50px 0;
}
.g-title {
    width: 100%;
    margin: 0 0 30px 0;
    padding: 20px 0;
    font-size: 28px;
    font-weight: normal;
    text-align: center;
}
.g-desc {
    color: #666;
    margin: 0 0 24px;
}
.g-grid {
    max-width: 1000px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
}
.g-card-title{
    height: 42px;
    font-size: 16px;
    line-height: 42px;
    margin: 6px;
}
.g-card {
    width: 100%;
    text-align: left;
    padding: 0;
    border: none;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s ease;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
    background: #fff;
}

body{
    padding: 100px 0 0 0;
}

/* page-policy */
main.policy{
    margin: 0;
    padding: 0;
    background: #E8E4DB;
}
main.policy h2{
    font-size: 26px;
    padding: 50px 0;
    margin: 0;
    font-weight: bold;
}
main.policy h3 {
    font-size: 26px;
    color: white;
    position: relative;
    z-index: 1;
}
main.policy h3::before{
    content: "";
    box-sizing: border-box;
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #936C1B;
    position: absolute;
    top: 3px;right: 3px;
    z-index: -1;
}
main.policy h3::after{
    content: "";
    box-sizing: border-box;
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #936C1B;
    position: absolute;
    bottom: 3px;left: 3px;
    z-index: -1;
}
.wp-block-group.well-being{
    max-width: 600px;
    width: 100%;
    margin: 50px auto;
    padding: 0 10px;
}
.wp-block-group.well-being .wp-block-group{
    margin: 0 auto 30px auto;
}
.wellbeing-list{
    width: 100%;
}
.well-being h4{
    font-size: 26px;
    margin: 0 0 20px 0;
}
.wellbeing-no{
    width: 100%;
    margin: 0 auto 10px auto;
    padding: 0 0 0 50px;
    color: #1c2879;
    font-size: 18px;
    line-height: 40px;
    text-align: left;
    position: relative;
}
.no1::before{
    content: "1";
}
.no2::before{
    content: "2";
}
.no3::before{
    content: "3";
}
.no4::before{
    content: "4";
}
.wellbeing-no::before{
    opacity: 0.5;
    font-size: 50px;
    line-height: 40px;
    position: absolute;
    top: 0;left: 10px;
}
.wp-block-group.policy-list{
    margin: 0 auto;
    padding: 50px 10px;
    background-image: url(../img/policy-bg.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center bottom;
}
.policy-h4{
    margin: 0 0 20px 0;
}
.policy-item{
    margin: 10px;
    padding: 20px;
}
.policy-item h5{
    line-height: 26px;
}
.policy-item p{
    margin: 20px 0 0 0; 
}
.policy-item a{
    padding: 3px 5px;
    border-bottom: 1px solid #050505;
}
.policy-item.policy-real h5{
    padding: 40px 0 0 0;
    position: relative;
}
.policy-item.policy-real h5::before{
    content: "実現した政策";
    padding: 6px 5px 7px 8px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #fff;
    background-color: #CF4A40;
    position: absolute;
    top: 0;
}
.policy-item.policy-real h5::after{
    content: "✔";
    color: #f00;
    font-weight: bold;
    position: absolute;
    top: 40px;left: 2px;
}


/* page-story */
main#story .g-title {
    color: #050505;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}
main#story .g-title::before{
    content: "";
    box-sizing: border-box;
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #936C1B;
    position: absolute;
    top: 3px;right: 3px;
    z-index: -1;
}
main#story .g-title::after{
    content: "";
    box-sizing: border-box;
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #936C1B;
    position: absolute;
    bottom: 3px;left: 3px;
    z-index: -1;
}
.story-list{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #936b1b81;
}
.story-list .g-article{
    max-width: 900px;
    width: 100%;
    margin: 30px auto;
    padding: 0 10px;
    border-bottom: 1px solid #936b1b81;
}
.g-article-title{
    margin: 0 0 20px 0;
    font-size: 20px;
    text-align: center;
}
.g-article-date{
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 14px;
    text-align: right;
}
.g-article-body p{
    margin: 0 0 20px 0;
    line-height: 1.4;
}
.g-article-body figure{
    margin: 0 0 30px 0;
}
.g-article-body figure img{}
.g-article-body a{
	word-break: break-all;
	color: #0693e3;
	font-style: normal;
	font-weight: normal;
}
/* page-gallery */
main#gallery{
    background-image: linear-gradient(#101733, #06070c);
}
main#gallery h2.content-Title{
    font-size: 24px;
}
main#gallery .g-title {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}
main#gallery .g-title::before{
    content: "";
    box-sizing: border-box;
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #936C1B;
    position: absolute;
    top: 3px;right: 3px;
    z-index: -1;
}
main#gallery .g-title::after{
    content: "";
    box-sizing: border-box;
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #936C1B;
    position: absolute;
    bottom: 3px;left: 3px;
    z-index: -1;
}
main#gallery .g-grid {
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
main#gallery .g-item {
    margin: 0;
    padding: 0 20px;
}
main#gallery .g-card{
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
main#gallery .g-creator{
    height: 26px;
    font-size: 12px;
    text-align: right;
    line-height: 26px;
    letter-spacing: 2px;
    margin: 0 6px;
}
main#gallery .g-card:focus,
main#gallery .g-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
    outline: none;
    background: rgba(255, 255, 255, 0.3);
}
main#gallery .g-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f3f4f6;
    margin: 0;
}
main#gallery .g-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
main#gallery .g-noimg {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #9ca3af;
    font-size: 12px;
}
main#gallery .g-card-date{
    width: 42px;
    height: 42px;
    padding: 2px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 0;left: 0;
}
.poem-parts{
    margin: 30px;
}
/* モーダル */
.g-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    backdrop-filter: blur(2px);
    z-index: 2147483000;
    /* 高めに */
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
}
.g-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2147483001;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
}
.g-modal-article {
    width: min(860px, 92vw);
    max-height: 86vh;
    overflow: auto;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
    padding: 20px 20px 24px;
}
.g-modal-close {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 1;
    border: none;
    background: #111827;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
.g-modal-title {
    height: 29px;
    font-size: clamp(1.2rem, 1rem + 1.2vw, 1.8rem);
    margin: 12px 0 24px 0;
    text-align: center;
}
.g-modal-date{
    display: block;
    text-align: right;
    margin: 12px 0 24px 0;
}
.has-text-align-center{
    line-height: 30px;
}
.g-modal-body {
    margin-top: 12px;
}
.g-modal-body .wp-block-image img {
    height: auto;
    max-width: 100%;
}
.g-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
.g-modal.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.g-modal-article::-webkit-scrollbar {
    width: 10px;
}
.g-modal-article::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 999px;
}

/* page-propose */
main#propose{
    padding: 0 10px;
}
.wp-block-group{
    max-width: 900px;
    margin: 0 auto 50px auto;
}
.wp-block-group h3{
    font-size: 20px;
    margin: 0 0 20px 0;
}
.wp-block-group p{
    line-height: 30px;
}
.wp-block-buttons{
    margin: 0 0 30px 0;
}
.table-contents{
    max-width: 900px;
    margin: 0 auto 30px auto;
}
.table-contents a{
    display: inline-block;
    text-align: center;
    margin: 0 0 20px 0;
    padding: 0 0 5px 0;
    border-bottom: 1px solid #CF4A40;
}
.propose-item{
    padding: 30px;
    border: 1px solid #CF4A40;
}
.propose-link{
    padding: 20px 30px;
    background: rgba(207, 74, 64, 0.5);
    margin: 0 0 20px 0;
}

/* page-contact */
main#contact{
    padding: 50px 10px 0 10px;
}
.wpcf7-form-control[aria-invalid="true"] {
    outline: 2px solid #d00;
}
.cf7-inline-error {
    display: block;
    margin-top: 4px;
    color: #d00;
    font-size: 14px;
}
form{
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px 0 0 0;
}
form p{
    width: 100%;
}
form p label{
    display: block;
    width: 100%;
    height: 100px;
    margin: 0 0 20px 0;
}
.req{
    font-size: 12px;
    color: #fff;
    padding: 2px 6px 4px 5px;
    background: #430E0A;
}
.wpcf7-form-control-wrap{
    width: 100%;
    height: auto;
}
.wpcf7-form-control:focus{
    outline: 1px solid #430E0A;
}
.wpcf7-text,
.wpcf7-email,
.wpcf7-textarea{
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0 0 0;
	font-family: "Noto Serif JP", serif;
    font-size: 16px;
    letter-spacing: 2px;
    border: 1px solid rgb(220, 220, 220);
}
label:has(.wpcf7-textarea){
    height: 300px;
}
.wpcf7-not-valid-tip{
    padding: 5px 0 0 0;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    border: none;
}
.wpcf7 form.spam .wpcf7-response-output{
    border: none;
    font-weight: bold;
}
.wpcf7 form.sent .wpcf7-response-output{
    border: none;
}
.wpcf7 form .wpcf7-response-output{
    margin: 0;
    padding: 0;
}
.wpcf7-submit{
    width: 300px;
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 10px 0;
    margin: 30px auto 0 auto;
    font-size: 16px;
	font-family: "Noto Serif JP", serif;
    color: #fff;
    background: #430E0A;
}
.wpcf7-response-output{
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    color: #f00;
    border: none;
}
/* page-thanks */

/* footer */
#footer{
    width: 100%;
    padding: 50px 0 10px 0;
    background: #430E0A;
    color: #fff;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
#footer::after{
    content: "";
    display: block;
    width: 1000px;
    height: 1000px;
    background-image: url(../img/footer-visual.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 10px;left: 50%;
    z-index: -1;
    animation: 120s linear infinite rotation;
}
.scroll-top{
    margin: 0 auto 30px auto;
}
.scroll-top a{
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    border-radius: 90px;
    border: 1px solid #fff;
}
.scroll-top a:hover{
    box-shadow: 0 0 10px #fff;
}
.scroll-top a span{
    display: block;
    font-size: 24px;
}
.scroll-top a img{
    display: block;
    width: 130px;
    height: auto;
    margin: 15px auto 0 auto;
}
#footer div p:nth-child(1){
    text-align: center;
    font-size: 24px;
    padding: 30px 0;
}
.maps{
    width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map-item{
    width: 540px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.2);
}
.map-item div{
    height: 160px;
    display: flex;
    flex-flow: column;
}
.map-item div h5{
    font-size: 20px;
    padding-bottom: 10px;
}
.map-item div p{
    font-size: 16px;
    line-height: 24px;
}
.map-item div p a[href*="tel:"] {
    color: #fff;
}
.iframe{
    width: 50%;
    height: 100%;
}
.footer-sns{
    width: 300px;
    height: auto;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
}
.footer-sns li a img{
    width: 25px;
    height: 25px;
}
#footer-nav ul{
    width: 960px;
    height: auto;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer-nav ul li a{
    font-size: 16px;
    color: #fff;
}
.copyright{
    text-align: center;
    font-size: 14px;
}
@keyframes rotation{
    0%{ transform:rotate(0);}
    100%{ transform:rotate(360deg); }
}

/* page-privacy.php */
main.privacy{
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 10px;
}
main.privacy p{
    line-height: 1.4;
}
main.privacy li{
    list-style: inside;
}
main.privacy h3{
    padding: 5px 0 5px 20px;
    border-left: 3px solid #430E0A;
    margin: 30px 0;
}

/* front-page */
/* top */
section#top{
    width: 100%;
    height: calc(100vh - 100px);
    position: relative;
    padding: 70px 0 0 0;
    background: #CF4A40;
    background-image: url(../img/main-visual-left.png), url(../img/main-visual-right.png);
    background-size: 80vh, 100vh;
    background-repeat: no-repeat, no-repeat;
    background-position-x: 0, 110%;
    background-position-y: bottom, center;
    overflow: hidden;
}
.top-cont{
    width: 60%;
    height: 70vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: auto;right: 0;bottom: auto;left: auto;
}
.top-cont h2{
    display: block;
    width: 90%;
    padding: 20px 0 20px 20px;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(-5deg);
}
.top-cont h2 p.kiwi-maru-medium{
    margin-bottom: 10px;
    font-size: 5.7vw;
    color: #73B8E2;
}
.top-cont h2 p.italiana-regular{
    font-size: 5vw;
    color: #fff;
}
.name{
    padding: 50px 0 0 0;
}
.name p{
    display: inline;
    padding: 2px 0 2px 8px;
    color: #9F2218;
    font-weight: bold;
    font-size: 1vw;
    background: #fff;
}
h3.kaisei-decol-bold{
    padding: 10px 0;
    font-size: 7vw;
}
h3.kaisei-decol-bold span:not(:last-child){
    position: relative;
}
h3.kaisei-decol-bold span:not(:last-child)::after{
    content: "●";
    font-size: 1.5vw;
    text-align: center;
    color: #fff;
    margin:  auto;
    position: absolute;
    top: 0;right: 0;left: 0;
}
h3.kaisei-decol-bold span:nth-child(4){
    font-size: 2vw;
}
.slogan{
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.slogan div{
    padding: 1vh;
    margin: 0 8px 0 0;
}
.slogan div:nth-child(1){
    width: 23%;
}
.slogan div:nth-child(2){
    width: 23%;
}
.slogan div:nth-child(3){
    width: 28%;
    position: relative;
}
.slogan div:nth-child(3)::after{
    content: "Well-being";
    font-size: 1.2vw;
    position: absolute;
    top: 15px;right: 32px;
}
.slogan div:nth-child(4){
    max-width: 160px;
    width: 25%;
    padding: 0;
}
.slogan div:not(:last-child){
    padding: 10px 0;
    text-align: center;
    background: #fff;
}
.slogan div p:nth-child(1){
    font-size: 2vw;
    padding: 15px 0 10px 0;
}
.slogan div p:nth-child(2){
    font-size: 1vw;
}
.slogan div p span{
    font-size: 3vw;
    position: relative;
}
.slogan div p span::after{
    content: "●";
    width: 15px;
    height: 15px;
    font-size: 15px;
    text-align: center;
    color: #936C1B;
    margin: auto;
    position: absolute;
    top: -3px;right: 0;left: 0;
}
.slogan div:nth-child(3){
    color: #9F2218;
}
.slogan div img{
    width: 100%;
}
.top-sns{
    max-width: 250px;
    width: 20%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px;
    background: #E8E4DB;
    position: absolute;
    bottom: 5%;left: 5%;
}
.top-sns li{
    width: 20%;
}
.top-sns li a img{
    width: 100%;
}

/* youtube */
section#youtube{
	padding: 100px 0;
	background: #430E0A;
	background-image: url(../img/sns-visual.png), url(../img/sns-visual.png);
	background-size: 95%, 95%;
	background-repeat: no-repeat, no-repeat;
	background-position-x: center, center;
	background-position-y: 5%, 95%;
}
section#youtube h4{
    font-weight: normal;
    text-align: center;
    color: #fff;
    margin: 0 0 30px 0;
}
section#youtube iframe{
	display: block;
	margin: 0 auto;
}

/* story */
section#story{
    width: 100%;
    height: 100vh;
    background: #fff;
    background-image: url(../img/story-visual.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position-x: 0;
    background-position-y: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.story-cont{
    color: #050505;
    text-align: center;
    z-index: 3;
}
.story-cont h4{
    font-weight: normal;
}
.story-cont h4 span{
    padding: 20px 0 0 0;
    display: block;
}
.story-cont a{
    display: inline-block;
    margin: 20px 0 0 0;
    padding: 10px 50px;
    font-size: 20px;
    letter-spacing: 3px;
    color: #050505;
    border: 1px solid #050505;
    background: rgba(5, 5, 5, 0.2);
}

/* スクロールアニメーション[スケール] */
.gallery-animation {
    width: 100%;
    height: 100vh;                        
    position: absolute;
    z-index: 1;
}
.gallery-animation div{
    position: absolute;
}

.scrollAnim.ready {
  opacity: 0;
  transition: all 1s ease-in-out;
}
.scrollAnim.ready.active {
  opacity: 1;
}

.scrollBottomUp.ready {
  transform: translateY(80px);
}
.scrollBottomUp.ready.active {
  transform: translateY(0);
}

.scrollScale.ready {
  transform: scale(0);
}
.scrollScale.ready.active {
  transform: scale(1);
}

.gallery-animation div:nth-child(1){
    top: 10%;
    left: 50%;
}
.gallery-animation div:nth-child(1) img{
    width: 30vh;
}
.gallery-animation div:nth-child(2){
    top: 5%;
    left: 30%;
}
.gallery-animation div:nth-child(2) img{
    width: 19vh;
    opacity: 0.5;
}
.gallery-animation div:nth-child(3){
    right: 30%;
    bottom: 50%;
}
.gallery-animation div:nth-child(3) img{
    width: 14vh;
    opacity: 0.25;
}
.gallery-animation div:nth-child(4){
    left: 10%;
    bottom: 10%;
}
.gallery-animation div:nth-child(4) img{
    width: 28vh;
    opacity: 0.75;
}
.gallery-animation div:nth-child(5){
    right: 40%;
    bottom: 10%;
}
.gallery-animation div:nth-child(5) img{
    width: 23vh;
    opacity: 0.7;
}
.gallery-animation div:nth-child(6){
    right: 5%;
    bottom: 50%;
}
.gallery-animation div:nth-child(6) img{
    width: 23vh;
    opacity: 0.6;
}
.gallery-animation div:nth-child(7){
    left: 30%;
    top: 40%;
}
.gallery-animation div:nth-child(7) img{
    width: 15vh;
    opacity: 0.1;
}
.gallery-animation div:nth-child(8){
    left: 5%;
    top: 30%;
}
.gallery-animation div:nth-child(8) img{
    width: 30vh;
    opacity: 0.9;
}
.gallery-animation div:nth-child(9){
    right: 15%;
    top: 10%;
}
.gallery-animation div:nth-child(9) img{
    width: 13vh;
    opacity: 0.2;
}
.gallery-animation div:nth-child(10){
    right: 5%;
    bottom: 10%;
}
.gallery-animation div:nth-child(10) img{
    width: 16vh;
    opacity: 0.25;
}
.gallery-animation div:nth-child(11){
    right: 15%;
    bottom: 20%;
}
.gallery-animation div:nth-child(11) img{
    width: 26vh;
    opacity: 0.75;
}
.gallery-animation div:nth-child(12){
    left: 33%;
    top: 22%;
}
.gallery-animation div:nth-child(12) img{
    width: 16vh;
    opacity: 0.5;
}
.gallery-animation div:nth-child(13){
    left: 25%;
    bottom: 25%;
}
.gallery-animation div:nth-child(13) img{
    width: 25vh;
    opacity: 0.6;
}
.gallery-animation div:nth-child(14){
    left: 35%;
    bottom: 10%;
}
.gallery-animation div:nth-child(14) img{
    width: 10vh;
    opacity: 0.1;
}
.gallery-animation div:nth-child(15){
    left: 15%;
    bottom: 35%;
}
.gallery-animation div:nth-child(15) img{
    width: 13vh;
    opacity: 0.2;
}
.gallery-animation div:nth-child(16){
    right: 20%;
    bottom: 45%;
}
.gallery-animation div:nth-child(16) img{
    width: 16vh;
    opacity: 0.5;
}
.gallery-animation div:nth-child(17){
    left: 35%;
    top: 25%;
}
.gallery-animation div:nth-child(17) img{
    width: 18vh;
    opacity: 0.55;
}
.gallery-animation div:nth-child(18){
    left: 30%;
    top: 20%;
}
.gallery-animation div:nth-child(18) img{
    width: 15vh;
    opacity: 0.2;
}
.gallery-animation div:nth-child(19){
    left: 50%;
    bottom: 15%;
}
.gallery-animation div:nth-child(19) img{
    width: 15vh;
    opacity: 0.2;
}
.gallery-animation div:nth-child(20){
    left: 10%;
    top: 15%;
}
.gallery-animation div:nth-child(20) img{
    width: 15vh;
    opacity: 0.2;
}
.gallery-animation div:nth-child(21){
    right: 25%;
    bottom: 35%;
}
.gallery-animation div:nth-child(21) img{
    width: 13vh;
    opacity: 0.3;
}

/* gallery */
section#gallery{
    width: 100%;
    height: 100vh;
	background: #430E0A;
    background-image: url(../img/gallery-visual.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position-x: 100%;
    background-position-y: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-cont{
    color: #fff;
    text-align: center;
    z-index: 3;
}
.gallery-cont h4{
    font-weight: normal;
}
.gallery-cont h4 span{
    padding: 20px 0 0 0;
    display: block;
}
.gallery-cont a{
    display: inline-block;
    margin: 20px 0 0 0;
    padding: 10px 50px;
    font-size: 20px;
    letter-spacing: 3px;
    color: #fff;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2);
}

/* policy */
section#policy{
    width: 100%;
    padding: 50px 0 0 0;
    text-align: center;
    background: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.wellbeing-cont{
    box-sizing: border-box;
    padding: 0 10px;
}
.wellbeing-cont div h5{
    margin: 50px 0 20px 0;
    color: #1c2879;
}
.wellbeing-cont div p{
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
}
.policy-cont{
    padding: 50px 0 5px 0;
    background-image: url(../img/policy-visual.png);
    background-repeat: no-repeat;
    background-position-y: 100%;
    background-size: 100% 900px;
}
.policy-cont ul{
    width: 900px;
    margin: 0 auto;
}
.policy-cont ul li{
    width: 100%;
    margin: 0 0 20px 0;
}
.policy-cont ul li:nth-child(10){
    background: rgba(0, 0, 0, 0);
}
.policy-cont ul li:nth-child(13){
    display: flex;
    justify-content: space-between;
}
.policy-cont ul li p{
    width: 250px;
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    position: relative;
}
.policy-cont ul li p::before{
    content: "✔";
    display: block;
    width: 22px;
    height: 22px;
    font-size: 20px;
    line-height: 18px;
    color: #505050;
    background: #fff;
    border: 2px solid #505050;
    border-radius: 3px;
    margin: auto;
    position: absolute;
    top: 0; right: auto;bottom: 0; left: 10px;
}
.policy-cont ul li a{
    display: inline-block;
    width: 100%;
    padding: 8px 0 8px 0;
    font-size: 18px;
    line-height: 26px;
    background: rgba(255, 255, 255, 0.8);
}
.policy-cont ul li:nth-child(n+11) a{
    padding: 8px 8px 8px 40px;
}
.policy-cont ul li:nth-child(13) a{
    width: 48%;
}
.policy-cont ul li:nth-child(13) a:nth-child(1){
    font-size: 16px;
    margin: 0 5px 0 0;
}
.accent{
    color: #9F2218;
    font-weight: bold;
}
.check{
    padding: 8px 0 8px 50px;
    position: relative;
}
.check::before{
    content: "✔";
    display: block;
    width: 22px;
    height: 22px;
    font-size: 20px;
    line-height: 18px;
    color: #505050;
    background: #fff;
    border: 2px solid #505050;
    border-radius: 3px;
    margin: auto;
    position: absolute;
    top: 0; right: auto;bottom: 0; left: 10px;
}
/* profile */
section#profile{
    width: 100%;
    background-color: #fff;
    background-image: url(../img/profile-visual.png);
    background-position-x: 90%;
    background-position-y: 90%;
    background-size: 40vh;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
section#profile::before{
    content: "";
    box-sizing: border-box;
    display: block;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 1px solid #936C1B;
    position: absolute;
    top: 10px;right: 10px;
    z-index: -1;
}
section#profile::after{
    content: "";
    box-sizing: border-box;
    display: block;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 1px solid #936C1B;
    position: absolute;
    bottom: 10px;left: 10px;
    z-index: -1;
}
.profile-cont{
    width: 900px;
    height: auto;
    margin: 0 auto;
    padding: 50px 0;
}
.profile-cont p{
    font-size: 14px;
    line-height: 1.4;
}

.profile-cont img{
    display: block;
    width: 350px;
    height: 525px;
    margin: 0 auto;
}
.profile-namae{
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    align-items: center;
}
.profile-namae h5{
    font-size: 20px;
    font-weight: normal;
    margin: 10px 0;
}
.profile-namae h5 span{
    margin: 0 0 0 10px;
    font-size: 16px;
}
.profile-namae p{
    display: inline-block;
    margin: 0 0 0 10px;
    padding: 3px 0 3px 8px;
    font-size: 12px;
    color: #fff;
    background: #9F2218;
}
.sm-br{
    display: none;
}
.profile-table{
    width: 100%;
    display: inline-block;
    font-size: 12px;
    line-height: 1.4;
}
.profile-table td:nth-last-child(1){
    display: inline-block;
    margin: 0 10px 0 0 ;
}
.biog{
    max-width: 900px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.biog tbody{
    width: 90%;
}
.biog tbody tr{
    margin: 10px 0;
    display: flex;
    align-items: top;
}
.biog tbody tr td{
    width: 100%;
    display: inline-block;
    font-size: 12px;
    line-height: 1.4;
}
.biog tbody tr td:nth-child(1){
    width: 60px;
    margin: 0 5px 0 0;
}
.profile-cont h6{
    font-size: 24px;
    margin: 20px 0;
}
.txt-hide{
    display: none;
}
button.more {
    width: 120px;
    margin: 20px auto;
    display: block;
    padding:10px 15px;
    border: none;
    outline: 0;
    transition: .5s;
    -erbkit-transition: .5s;
    cursor: pointer;
}
button.more::after {
    content: "もっと見る";
    transition: .2s;
    -erbkit-transition: .2s;
}
button.more.on-click::after{
    content: "閉じる";
}
button.more::after {
    content: "もっと見る";
    transition: .2s;
    -erbkit-transition: .2s;
}
button.more.on-click::after{
    content: "閉じる";
}

/* contact */
section#contact{
    padding: 50px 0 0 0;
    text-align: center;
    background: #430E0A;
}
section#contact div{
    display: inline-block;
    padding: 5vh;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
section#contact div h5{
    font-weight: normal;
}
section#contact div p:nth-child(2){
    font-size: 1.2vw;
    padding: 3vh 0 0 0;
}
.sm-br{
	display: none;
}

@media screen and (max-width: 1400px) {
    .slogan div p span::after{
        width: 13px;
        height: 13px;
        font-size: 13px;
    }
    #footer::after{
        width: 800px;
        height: 800px;
    }
}
@media screen and (max-width: 1200px) {
    h4{
        font-size: 24px;
    }
    h4 span{
        font-size: 18px;
    }
    h5{
        font-size: 20px;
    }
    .loading div p.italiana-regular{
        font-size: 80px;
    }
    .loading div img{
        width: 150px;
    }
    .hamburger {
        width: 70px;
        height: 70px;
    }
    .hamburger span:nth-child(3) {
        font-size: 20px;
    }
    .top-cont{
        width: 55%;
    }
    .top-cont h2 p.kiwi-maru-medium{
        margin-bottom: 10px;
        font-size: 5vw;
        color: #73B8E2;
    }
    .slogan div:nth-child(3){
        width: 30%;
    }
    .slogan div p span::after{
        width: 11px;
        height: 11px;
        font-size: 11px;
    }
    .policy-cont{
        background-image: url(../img/policy-visual-lg.png);
    }
    .policy-cont ul{
        width: 800px;
    }
    .policy-cont ul li a{
        font-size: 16px;
    }
    .policy-cont ul li:nth-child(13) a:nth-child(1),
    .policy-cont ul li:nth-child(13) a{
        font-size: 16px;
    }
    section#profile{
        background-position-x: 90%;
        background-position-y: 90%;
        background-size: 30vh;
    }
    .profile-cont{
        width: 750px;
        height: auto;
    }
    .profile-cont p{
        font-size: 14px;
        line-height: 24px;
    }
    .profile-cont img{
        width: 250px;
        height: 375px;
    }
    .profile-cont p:nth-child(2){
        font-size: 12px;
        line-height: 18px;
    }
    .profile-namae h5{
        font-size: 18px;
    }
    .profile-namae h5 span{
        font-size: 14px;
    }
    .profile-namae p{
        font-size: 10px;
        padding: 0 0 0 4px;
    }
    #footer::after{
        width: 500px;
        height: 500px;
    }
	.maps{
        width: 960px;
        padding: 10px;
    }
    .map-item{
        width: 460px;
    }
    .map-item div h5{
        font-size: 20px;
    }
    .map-item div p{
        font-size: 16px;
        line-height: 24px;
    }
    .map-item div span{
        font-size: 12px;
    }
}
@media screen and (max-width: 992px) {
    .g-title{
        font-size: 24px;
    }
    h4{
        font-size: 20px;
    }
    h4 span{
        font-size: 16px;
    }
    h5{
        font-size: 18px;
    }
    .loading div p.italiana-regular{
        font-size: 60px;
    }
    .loading div img{
        width: 120px;
    }
    .hamburger {
        width: 60px;
        height: 60px;
    }
    .hamburger span:nth-child(3) {
        font-size: 18px;
    }
    section#top{
        width: 100vw;
        padding: 0;
        background-size: 70vh, 70vh;
        background-position-x: left, 120%;
    }
    .top-cont{
        width: 60%;
        height: 60vh;
        margin: 100px 0 0 0;
    }
    .slogan div p span::after{
        width: 10px;
        height: 10px;
        font-size: 10px;
    }
    .policy-cont{
        background-image: url(../img/policy-visual-md.png);
        background-size: 100% 900px;
    }
    .policy-cont ul{
        width: 700px;
    }
    .policy-cont ul li a{
        font-size: 14px;
    }
    .policy-cont ul li:nth-child(13) a:nth-child(1),
    .policy-cont ul li:nth-child(13) a{
        font-size: 14px;
    }
    main.policy h2{
        font-size: 22px;
    }
    main.policy h3 {
        font-size: 22px;
    }
    .well-being h4{
        font-size: 22px;
    }
    .profile-cont{
        width: 100%;
        height: auto;
        padding: 30px 50px;
        align-items: center;
    }
    .profile-cont p{
        font-size: 14px;
    }
    #footer::after{
        width: 600px;
        height: 600px;
    }
    .profile-namae p{
        font-size: 10px;
    }
    #footer-nav ul{
        width: 100%;
        display: block;
    }
    #footer-nav ul li.d-none{
        display: none;
    }
    #footer-nav ul li{
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid #e2b14e;
    }
    #footer-nav ul li:nth-child(1){
        border-top: 1px solid #e2b14e;
    }
	.maps{
        flex-direction: column;
        width: 550px;
        height: 400px;
    }
    .map-item{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .g-title{
        font-size: 20px;
    }
    #footer{
        padding: 30px 0 0 0;
    }
    .loading div p.italiana-regular{
        font-size: 40px;
    }
    .loading div img{
        width: 100px;
    }
    .hamburger {
        width: 50px;
        height: 50px;
        margin: 0 10px 0 0;
    }
    .hamburger span:nth-child(3) {
        font-size: 15px;
    }
    main.policy h2{
        padding: 30px 0;
    }
    main.policy h2{
        font-size: 18px;
    }
    main.policy h3 {
        font-size: 18px;
    }
    .well-being h4{
        font-size: 18px;
    }
    .policy-item h5 strong{
        font-size: 16px;
        line-height: 1.4;
    }
    .policy-item p{
        font-size: 14px;
    }
    .policy-item p a{
        font-size: 14px;
    }
    .biog{
        display: block;
    }
    section#top{
        width: 100vw;
        height: calc(100vh - 100px);
        background-image: url(../img/main-visual-sm-left.png), url(../img/main-visual-right.png);
        background-size: 48vh, 60vh;
        background-position-x: center, center;
        background-position-y: bottom, top;
    }
    .top-cont{
        width: 120vw;
        height: 73vh;
        margin: 0;
        justify-content: space-between;
        top: 40px;left: -10vw;
    }
    .top-cont h2{
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
    .top-cont h2 p.kiwi-maru-medium{
        font-size: 30px;
    }
    .top-cont h2 p.italiana-regular{
        font-size: 32px;
    }
    .name{
        display: none;
    }
    .slogan{
        width: 300px;
        margin: 0 auto;
    }
    .slogan div{
        width: 80px;
        height: 180px;
        margin: 0;
        display: flex;
        position: relative;
    }
    .slogan div:nth-child(1){
        width: 80px;
    }
    .slogan div:nth-child(2){
        width: 80px;
    }
    .slogan div:nth-child(3){
        width: 80px;
    }
    .slogan div:nth-child(4){
        display: none;
    }
    .slogan div p{
        display: block;
    }
    .slogan div p:nth-child(1){
        font-size: 22px;
        position: absolute;
        top: 0;right: 10px;
    }
    .slogan div p:nth-child(2){
        font-size: 14px;
        position: absolute;
        bottom: 0;left: 10px;
    }
    .slogan div:nth-child(3) p:nth-child(1){
        right: 18px;
    }
    .slogan div p span{
        font-size: 40px;
    }
    .slogan div p span::after{
        content: "●";
        width: 10px;
        height: 10px;
        font-size: 10px;
        text-align: center;
        color: #936C1B;
        margin: auto;
        position: absolute;
        top: -10px;right: 0;left: 0;
    }
    .slogan div:nth-child(3)::after{
        font-size: 14px;
        top: 5px;right: 5px;
        writing-mode: vertical-rl;
    }
    .vertical {
        writing-mode: vertical-rl;
    }
    .top-sns{
        max-width: 100vw;
        width: 100vw;
		height: 60px;
        padding: 10px;
        justify-content: center;
        border-radius: 0;
        bottom: 0;left: 0;
    }
    .top-sns li{
        width: 10%;
		height: 60px;
        margin: 0 20px;
    }
    .top-sns li a img{
		width: 40px;
		height: 40px;
    }
	section#youtube iframe{
		width: 300px;
		height: 169px;
	}
	.gallery-animation div:nth-child(1) {
		top: 15%;
		left: 50%;
	}
    .gallery-animation div:nth-child(1) img{
        width: 20vh;
    }
    .gallery-animation div:nth-child(2) img{
        width: 10vh;
    }
    .gallery-animation div:nth-child(4) img{
        width: 18vh;
    }
    .gallery-animation div:nth-child(6){
        bottom: 60%;
    }
    .gallery-animation div:nth-child(6) img{
        width: 15vh;
    }
    .gallery-animation div:nth-child(7){
        left: 10%;
    }
    .gallery-animation div:nth-child(7) img{
        width: 8vh;
    }
    .gallery-animation div:nth-child(8){
        top: 20%;
    }
    .gallery-animation div:nth-child(8) img{
        width: 20vh;
    }
	.gallery-animation div:nth-child(9) {
		right: 15%;
		top: 5%;
	}
    .gallery-animation div:nth-child(9) img{
        width: 9vh;
    }
    .gallery-animation div:nth-child(10) img{
        width: 10vh;
    }
    .gallery-animation div:nth-child(11){
        bottom: 5%;
    }
    .gallery-animation div:nth-child(11) img{
        width: 17vh;
    }
    .gallery-animation div:nth-child(12) img{
        width: 10vh;
    }
    .gallery-animation div:nth-child(13){
        left: 60%;
        bottom: 20%;
    }
    .gallery-animation div:nth-child(13) img{
        width: 15vh;
    }
    .gallery-animation div:nth-child(14) img{
        width: 5vh;
    }
    .gallery-animation div:nth-child(15) img{
        width: 8vh;
    }
    .gallery-animation div:nth-child(16) img{
        width: 10vh;
    }
    .gallery-animation div:nth-child(17) img{
        width: 12vh;
    }
    .gallery-animation div:nth-child(18) img{
        width: 9vh;
    }
	.gallery-animation div:nth-child(19) {
		left: 75%;
		bottom: 10%;
	}
    .gallery-animation div:nth-child(19) img{
        width: 9vh;
    }
    .gallery-animation div:nth-child(20) img{
        width: 9vh;
    }
    .gallery-animation div:nth-child(21) img{
        width: 9vh;
    }
    .gallery-animation div:nth-child(3){
        display: none;
    }
    .gallery-animation div:nth-child(5){
        display: none;
    }
    .gallery-animation div:nth-child(10){
        display: none;
    }
    .gallery-animation div:nth-child(12){
        display: none;
    }
    .gallery-animation div:nth-child(17){
        display: none;
    }
    .policy-detail p{
        width: 100%;
        padding: 0 10px;
        font-size: 12px;
    }
    .policy-cont{
        background-image: url(../img/policy-visual-sm.png);
        background-size: 100% 900px;
    }
    .policy-cont ul{
        width: 100%;
        padding: 0 10px;
    }
    .policy-cont ul li a{
        font-size: 14px;
    }
    .policy-cont ul li:nth-child(13) a:nth-child(1),
    .policy-cont ul li:nth-child(13) a{
        font-size: 14px;
    }
    .profile-cont{
        flex-direction: column;
        padding: 50px 30px;
    }
    .profile-cont p{
        font-size: 12px;
        line-height: 20px;
    }
    .profile-cont h6{
        font-size: 14px;
    }
    .map-item{
		padding: 10px;
	}
    .map-item:nth-child(1){
        margin-bottom: 20px;
    }
	.map-item div h5{
		font-size: 16px;
	}
	.map-item div p{
		font-size: 14px;
		line-height: 20px;
	}
	.map-item div span{
		font-size: 12px;
		line-height: 20px;
	}
    section#contact{
		box-sizing: border-box;
		padding: 30px 10px 0px 10px;
	}
    section#contact div h5{
        font-weight: normal;
        font-size: 20px;
    }
    section#contact div p:nth-child(2){
        font-size: 15px;
		padding: 10px 0;
    }
    section#contact div p:nth-child(3){
        font-size: 20px;
    }
}
@media screen and (max-width: 576px) {
    .sm-br{
        display: block;
    }
    .g-title{
        font-size: 18px;
    }
	.sm-br{
		display: block;
	}
    .loading div p.italiana-regular{
        font-size: 32px;
    }
    .loading div img{
        width: 100px;
    }
	header{
		height: 60px;
	}  
    body{
        padding: 60px 0 0 0;
    }
    h1{
        font-size: 32px;
    }
	.header-Tagline{
		font-size: 12px;
	}
    h1 a span{
        font-size: 12px;
    }
    .hamburger {
        width: 40px;
        height: 40px;
    }
	.hamburger span:nth-child(1) {
		height: 2px;
		border-radius: 1px;
	}
	.hamburger span:nth-child(2) {
		height: 2px;
		border-radius: 1px;
	}
	.hamburger span:nth-child(3) {
		letter-spacing: 1px;
		font-size: 12px;
	}
    section#top{
        width: 100vw;
        height: calc(100vh - 60px);
        background-image: url(../img/main-visual-sm-left.png), url(../img/main-visual-right.png);
        background-size: 52vh, 60vh;
        background-position-x: center, center;
    }
    .top-cont{
        width: 120vw;
        height: 78vh;
        justify-content: space-between;
        top: 30px;left: -10vw;
    }
    .top-cont h2{
        width: 100%;
        text-align: center;
        padding: 15px 0 10px 0;
    }
    section#youtube{
        padding: 70px 0;
    }
    .policy-cont{
        background-size: 100% 900px;
    }
    .policy-cont ul li p::before,
    .check::before{
        width: 16px;
        height: 16px;
        font-size: 14px;
        line-height: 14px;
        border: 1px solid #505050;
    }
    .policy-cont ul li:nth-child(13){
        display: block;
    }
    .policy-cont ul li:nth-child(13) a{
        display: block;
        width: 100%;
    }
    main.policy h2{
        font-size: 16px;
    }
    main.policy h3 {
        font-size: 16px;
    }
    .well-being h4{
        font-size: 16px;
    }
    .policy-item h5 strong{
        font-size: 14px;
        line-height: 1.4;
    }
    .policy-item p{
        font-size: 12px;
    }
    .policy-item p a{
        font-size: 12px;
    }
    .wp-block-group.well-being p{
        font-size: 12px;
    }
    .wellbeing-no strong{
        font-size: 14px;
    }
    .wellbeing-no::before{
        font-size: 32px;
    }
    .policy-cont ul li:nth-child(13) a:nth-child(1){
        margin: 0 0 25px 0;
    }
    .profile-namae{
        display: block;
    }
    .profile-namae h5{
        font-size: 16px;
    }
    .profile-namae h5 span{
        font-size: 12px;
    }
    .profile-namae p{
        font-size: 10px;
        margin: 20px 0 0 0;
    }
    section#contact div{
        padding: 30px 10px;
    }
    section#contact div h5{
        font-weight: normal;
        font-size: 16px;
    }
    section#contact div p:nth-child(2){
        font-size: 12px;
    }
    section#contact div p:nth-child(3){
        font-size: 18px;
    }
    #footer div p:nth-child(1){
        font-size: 20px;
    }
	.maps{
        width: 100%;
    }
    .map-item div h5 {
        font-size: 14px;
    }
    .map-item div p {
        font-size: 12px;
    }
    .map-item div span {
        font-size: 10px;
    }
    .footer-sns{
        width: 250px;
    }
    small{
        font-size: 10px;
    }
    .content-Body .has-text-align-center{
        font-size: 12px;
        line-height: 20px;
    }
    form p label{
        height: 90px;
        font-size: 14px;
        margin: 0 0 10px 0;
    }
    .req{
        font-size: 10px;
    }
    .wpcf7-text,
    .wpcf7-email,
    .wpcf7-textarea{
        font-size: 12px;
    }
    label:has(.wpcf7-textarea){
        height: 250px;
    }
    .wpcf7-submit{
        font-size: 16px;
    }
    .wpcf7-response-output{
        font-size: 12px;
    }
}
@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/* =WordPress Core
from http://codex.wordpress.org/CSS#WordPress_Generated_Classes
-------------------------------------------------------------- */