/* 共通 */
html {
    scroll-behavior: smooth;
}



body {
    font-family: "uddigikyokasho-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
}

ruby rt {
    font-size: 50%;
    transform: translateY(-5px);
}

/* アコーディオン 代表の声 */
.readmore {
    position: relative;
    margin: 1em auto;
    display: block;
    color: #666;
    border: none;
    outline: 0;
    cursor: pointer;
    background: none;
    font-size: 16px;
    letter-spacing: 2px;
    color: black;
    padding: 0px 30px 8px 30px;
    /* line-height: 40px; */
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    background: #f4d221;
}

.readmore:before {
    content: "";
    width: 50px;
    /* height: 50px; */
    text-align: center;
    border-radius: 50%;
    display: block;
    margin: 0 auto .5em;
    background: url(../img/arrow.png) no-repeat center / 20px #fff;
    transition: .3s;
}

.readmore.on-click:before {
    transform: rotate(180deg);
}

.readmore .open {
    display: block;
}

.readmore.on-click .open {
    display: none;
}

.readmore .close {
    display: none;
}

.readmore.on-click .close {
    display: block;
}

.acordionMargin {
    padding-top: 30px;
}

/* アコーディオン */
/*ベース*/

.accordion {
    position: relative;
}

.toggle {
    display: none;
}

.Label {
    /*タイトル*/
    padding: 1em;
    display: block;
    color: rgb(22, 22, 22);
    background: #f3eacb;
    border-radius: 5px;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    padding-left: 30px;
    padding-right: 50px;
}


/* .Label::before{		
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid rgb(0, 0, 0);
	border-right: 2px solid rgb(0, 0, 0);
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
} */

.Label,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.content {
    height: 0;
    margin-bottom: 10px;
    padding: 0 20px;
    overflow: hidden;
}

.toggle:checked+.Label+.content {
    height: auto;
    padding: 20px;
    transition: all .3s;
}

.toggle:checked+.Label::before {
    transform: rotate(-45deg) !important;
}

.tapicon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}

.tapicon img {
    width: 20px;
}

/* ---------- ---------- header ----------  ----------*/

header {
    width: 99vw;
    max-width: 780px;
    height: 100px;
    /* min-height: 100vh; */
    right: 0;
    left: 0;
    margin: auto;
    font-family: sans-serif;
    position: sticky;
    top: 0;
    padding-top: 10px;
    background: rgba(255, 255, 255, 0.957);
    z-index: 1;
    /* border: 1px solid rgb(185, 185, 185); */
}

/* メニュー*/
/* ハンバーガー */
.nav-hidden {
    display: none;
}

#menu-btn {
    display: block;
    width: 30px;
    height: 20px;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 3;
}

#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
    content: "";
    height: 2px;
    width: 100%;
    border-radius: 3px;
    background: #040404;
    position: absolute;
    transition: 0.2s;
}

#menu-btn span {
    top: 0;
}

#menu-btn span::before {
    top: 8px;
}

#menu-btn span::after {
    top: 16px;
}

#nav-input:checked~#menu-btn span {
    top: 8px;
    transform: rotate(45deg);
}

#nav-input:checked~#menu-btn span::before {
    opacity: 0;
}

#nav-input:checked~#menu-btn span::after {
    top: 0px;
    transform: rotate(-90deg);
}


.headerContainer {
    display: fixed;
    top: 10px;
    right: 0%;
}

nav.topNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 200px;
    height: 100vh;
    z-index: 2;
    opacity: 0.2;
    visibility: hidden;
    transition: 0.5s;
    /* background: #272727f0; */
    background: linear-gradient(30deg, #118077, #1db0a4);

    /* border: 3px solid rgb(22, 22, 220); */
}

#nav-input:checked~nav.topNav {
    position: fixed;
    top: 0;
    right: 0%;
    opacity: 1;
    visibility: visible;
}


nav.topNav ul.item {
    display: block;
    padding: 4rem 2rem;
    width: 100%;
    /* border: 1px solid rgb(223, 18, 18); */
}

nav.topNav ul.item {
    display: block;
    padding: 4rem 1rem;
}

nav.topNav ul.item li.list {
    padding-left: 0;
    padding-bottom: 1rem;
    font-size: 16px;
    color: rgb(249, 249, 249);
    font-weight: 600;
    text-align: center;
}


nav.topNav ul.item li.contact a {
    display: inline-block;
    background: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 0px;
    padding: 0;
}

/* ヘッダー ロゴ */
.topLogo {
    position: relative;
    width: 100%;
    /* max-width: 400px; */
    height: 50px;
    padding-top: 5px;
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    /* border: 1px solid rgb(185, 185, 185); */
}

#headerIcon {
    height: 40px;
    padding-left: 10px;
    /* border: 1px solid rgb(185, 185, 185); */
}

.kokyaku {
    width: 100%;
    height: 30px;
    margin-top: 5px;
    /* border: 1px solid rgb(185, 185, 185); */
}

.gnavArea {
    /* border: 1px solid rgb(185, 185, 185); */
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    /* transform: translateY(-5px); */
}

.gnavArea .gnav {
    /* border: 1px solid rgb(185, 185, 185); */
    background-color: rgb(253, 223, 122);
    border-radius: 5px;
    text-align: center;
    padding: 5px 8px 5px 8px;
    margin: 3px;
    font-size: 14px;
    letter-spacing: 1px;
}



.gnavArea .gnav:hover {
    background-color: rgb(82, 17, 34);
    color: white;
}


#headwerBtn {
    height: 40px;
    margin-left: 10px;
    /* border: 1px solid rgb(185, 185, 185); */
}

/* ---------- ---------- main ----------  ----------*/
main {
    width: 99vw;
    max-width: 780px;
    min-height: 100vh;
    right: 0;
    left: 0;
    margin: auto;
}

#topMovie {
    width: 100%;
    height: 350px;
}

/* コンテンツボックス-共通 */
.contentBox {
    width: 100%;
    /* min-height: 300px; */
    padding: 20px;
    padding-bottom: 40px;
    position: relative;
    /* background-color: yellow; */
    /* border: 1px solid rgb(185, 185, 185); */
}

.subTitle {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 20px;
    line-height: 30px;
}

.caption {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.2px;
    line-height: 26px;
    padding-bottom: 15px;
}

.boxlink {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    position: absolute;
    bottom: 10px;
    right: 0px;
    letter-spacing: 1px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    margin-right: 20px;
    color: rgb(0, 0, 0);
    background-color: #f4d221;
    border: 1px solid #000000;

}

.sewTabele {
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(185, 185, 185);
}


.sewTabele th {
    text-align: center;
    background-color: black;
    color: white;
    border: 1px solid rgb(185, 185, 185);
}

.sewTabele tr {
    line-height: 30px;
    font-size: 16px;
    border-bottom: 1px solid rgb(185, 185, 185);
}

.sewTabele td:first-child {
    padding-left: 10px;
    width: 150px;
    vertical-align: middle;
    letter-spacing: 0px;
    text-align: center;
    padding-right: 10px;
}

.sewTabele td:nth-child(2) {
    padding-left: 10px;
    border: 1px solid rgb(185, 185, 185);
    vertical-align: middle;
    padding-right: 8px;
}

.katagaki {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 5px;
    letter-spacing: 1.5px;
}

.blue {
    color: rgb(0, 0, 0);
}

.koushi {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding-bottom: 10px;
    letter-spacing: 2px;
    padding-left: 10px;
}

.jikosyoukai {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 22px;
    color: rgb(56, 56, 56);
}

.voiceP {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0;
}


#slogan {
    text-align: center;
    font-size: 1.2em;
    line-height: 35px;
    letter-spacing: 4px;
    margin-top: 30px;
    padding-bottom: 50px;

}

.sewPic {
    width: 90vw;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 10px;
}

.sewPic img {
    width: 100%;
}

.picMain {
    padding-bottom: 100px;
    padding-top: 50px;
}

/* ---------- ---------- footer ----------  ----------*/
footer {
    /* position: absolute; */
    bottom: 0px;
    width: 100vw;
    height: 400px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    /* background-color: #1db0a4; */
    background-color: #202020;
}

.x_bunner {
    width: 200px;
    padding-top: 50px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.x_bunner img {
    width: 100%;
}

.copyright {
    display: inline-block;
    width: 100vw;
    padding: 50px;
    letter-spacing: 1px;
    text-align: center;
    color: white;
}

#infoicon {
    width: 100px;
    padding: 20px;
    position: fixed;
    bottom: 10px;
    right: 0px;
}


#infoicon img {
    widows: 100%;
}

/* お申し込みボタン */
#omoushikomi {
    width: 100px;
    height: 100px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    padding: 15px;

    z-index: 2;
}

#omoushikomi img {
    width: 100%;
}

.red {
    font-size: 20px;
    color: red;
}