body {
    background-color: #ffffff;
    font-size: 1.8rem;
    font-family:'Roboto','Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
}

h1 {
    font-size: 2.6rem;
    letter-spacing: 1px;
}

h1 .subtitle {
    font-size: 1.8rem;
}

.home h2 {
    font-size: 2.4rem;
    color: #000000;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    margin: 15px auto;
    width: 96%;
    background-image : linear-gradient(to right, #000, #000 2px, transparent 2px, transparent 8px);  /* 幅2の線を作る */
    background-size: 8px 2px;          /* グラデーションの幅・高さを指定 */
    background-position: left bottom;  /* 背景の開始位置を指定 */
    background-repeat: repeat-x;       /* 横向きにのみ繰り返す */
}

a {
    color: #e23601;
    text-decoration: none;
}

a:visited {
    color: #e23601;
}

a:hover {
    color: #e23601;
    text-decoration: underline;
}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* ヘッダー */
header {
    width: 100%;
    background-color: #ffe9d5;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.header-title {
    margin-top: 30px;
    margin-bottom: 10px;
    width: 400px;
    text-align: left;
}

.header-menu {
    width: 600px;
    text-align: right;
}

.header-menu ul {
    margin-top: 35px;
    list-style: none;
    display: flex;
    align-items: end;
    justify-content: flex-end;
}

.header-menu ul li {
    font-size: 2rem;
    margin-left: 10px;
    font-weight: bold;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    height: 50px;
    width: 600px;
    text-align: right;
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #ffe9d5;
    border: 1px solid #cb5656;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #cb5656;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #ffe9d5;
    transition: all 0.5s;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #cb5656;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1.8rem;
    box-sizing: border-box;
    color:#cb5656;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;

    top: 16px;
}

/* トップ画像etc */
.wrapper-about {
    width: 100%;
    height: 600px;
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 50px;
}

.top-photo {
    width: 350px;
}

.about {
    width: 600px;
    vertical-align: bottom;
}

.catch {
    font-size: 3.2rem;
    font-weight: bold;
}

.profile {
    font-size: 1.8rem;
    margin-top: 35px;
    text-align: justify;
}

.sns {
    display: flex;
    margin-top: 10px;
    width: 100%;
    justify-content: flex-end;
}

/* youtube info SNS(twitter facebook) */
.wrapper-main {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.left {
    width: 640px;
}

.youtube {
    width: 100%;
    height: auto;
} 

.info {
    border: #b35a5a 1px solid;
    background-color: #fff8f0;
    width: 100%;
    height: 430px;
    margin-top: 20px;
}

.info p {
    width: 94%;
    font-size: 2.2rem;
    font-weight: 1.5;
    margin: 20px auto;
}

.right {
    width: 400px;
}

.fb-page {
    margin-top: 20px;
}

/* footer */
.footer {
    background-color: #fff2d9;
    font-size: 1.6rem;
    margin-top: 150px;
    width: 100%;
    padding-top: 50px;
}

.address {
    margin: 0px auto;
    width: 450px;
    height: 125px;
}

.address li {
    font-size: 1.4rem;
    list-style-type: none;
}

p {
    line-height: 1.5;
    text-align: justify;
}

.wrapper-960 {
    width: 90%;
    max-width: 960px;
    margin: 40px auto;
}

/* 政策ページ */
.policy h2 {
    font-size: 3.8rem;
    letter-spacing: 5px;
    text-align: center;
}

.policy h3 {
    font-size: 2.8rem;
    margin-top: 20px;
    padding: 18px 0px 10px 15px;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 1px 0px 0px #000000, 1px -1px #000000, 0px -1px #000000, -1px 1px #000000, -1px 0px #000000, -1px 1px #000000, 0px 1px #000000;
}

.policy h4 {
    font-size: 2.2rem;
    margin-top: 15px;
}

.policy h5 {
    font-size: 1.8rem;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 5px 10px 3px 10px;
    border: 2px solid #000000;
    display: inline-block;   
}

@media screen and (max-width: 480px) {

img{
    max-width: 100%;
    height: auto;
    width : auto;
    margin: 0px auto;
}

.header-title {
    width: 100%;
}

.header-menu {
    display: none;
}

.hamburger-menu {
    display: block;
}

.wrapper-about {
    height: auto;
    width: 100%;
    display: block;
}

.top-photo {
    width: 100%;
    text-align: center;
}

.about {
    width: 100%;
}

.catch {
    width: 80%;
    font-size: 1.6rem;
    margin: 0px auto;
}

.profile {
    width: 90%;
    margin: 0px auto;
}

.sns {
    width: 100%;
}

.wrapper-main {
    display: block;
    width: 90%;
    margin: 0px auto;
}

.left {
    width: 100%;
}

.youtube {
    width: 100%;
    margin: 0px auto;
}

.info {
    width: 100%;
}

.right {
    width: 100%;
}

.address {
    width: 100%;
}

}