@charset "utf-8";
/* ==========================
    common
   ========================== */

html {
    font-size: 62.5%;
}

body {
    /* width: 75%; */
    font-family: 
        "Kaisei Opti",
        "Zen Maru Gothic",
        serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: #1d1d1d;    
    background-color: #fff;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================
header
======================== */
.header {
    width: 100%;
    background-color: #EAE3DB;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header__content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;  
}

.header__icon {
    width: 60px;
}

.header__icon:hover {
    opacity: 0.6;
}

.header__topic {
    display: flex;
    gap: 55px;
}

.header__btn {
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: #D04337;
    color: #fff;
    text-align: center;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 500;
}

.header__btn:hover,
.footer__btn:hover {
    background-color: #FFF574;
    color: #1d1d1d;
    transition: all 0.3s ease;
    border: 1px solid #1d1d1d;
}

/* =====================
hamburger-menu
======================== */

.hamburger {
    width: 4rem;
    height: 4rem;
    margin-top: 15px;
    display: block;
    position: relative;
}

.hamburger:hover {
    opacity: 0.6;
}

.hamburger i {
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    transition: transform .5s, opacity .5s;
    background-color: #1d1d1d;
}

.hamburger i:nth-child(1) {
    top: 0;
}

.hamburger i:nth-child(2) {
    top: 15px;
}

.hamburger i:nth-child(3) {
    top: 30px;
}

/* =====================
nav初期表示
======================== */
.nav-pc {
    display: none;
}

.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: 0.4s;
    background-color: rgba(255, 255, 255, 0.9);
}

.nav__header__content {
    width: 100%;
    background-color: #EAE3DB;
}

.nav ul {
    width: 100%;
    padding: 80px 13.3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.nav ul li {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
}

.nav ul li a:hover {
    opacity: 0.6;
}

.nav__dashed-line {
    width: 220px;
    border-top: 1px dashed #1d1d1d;
}

.batsu {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
}

.batsu::before,
.batsu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 40%;
    width: 2px;
    height: 40px;
    background-color: #1d1d1d;
}

.batsu::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
   
.batsu::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

/* hamburger-menu active */
.nav.active {
    transform: translateX(0);
}

/* =====================
TOP section1
======================== */
.section1 {
    margin-top: 100px;
}

.section1__img {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section1-img1 {
    width: 75%;
    z-index: 50;
}

.section1-img2 {
    width: 85%;
    position: absolute;
    top: 35%;
}

.section1__txt {
    margin-top: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section1__txt h1 {
    padding: 0 20px;
    text-align: center;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    font-size: 2.4rem;
}

.section1__txt img {
    width: 55px;
}

.wavy-line {
    margin-top: 100px;
}

.wavy-line1 {
    margin-top: 100px;
    width: 100%;
}

/* =====================
背景まる
======================== */

.section2,
.section4,
.section5,
.section7 {
    position: relative;
}

.back-maru {
    position: absolute;
    z-index: -1;
}

.back-maru1 {
    width: 60%;
    top: -4%;
    left: 40%;
}

.back-maru2 {
    width: 50%;
    top: 17%;
    left: 0%;
}

.back-maru3 {
    width: 50%;
    top: 64%;
    left: 45%;
}

.back-maru4 {
    width: 55%;
    top: 88%;
    left: -7%;
}

.back-maru5 {
    width: 55%;
    top: 5%;
    left: -4%;
}

.back-maru6 {
    width: 55%;
    top: 90%;
    left: 43%;
}

.back-maru7 {
    width: 55%;
    top: 0%;
    left: -5%;
}

.back-maru8 {
    width: 55%;
    top: 77%;
    left: 43%;
}

.back-maru9 {
    width: 55%;
    top: 15%;
    left: -4%;
}

.back-maru10 {
    width: 45%;
    top: 45%;
    left: 55%;
}

.back-maru11 {
    width: 45%;
    top: 78%;
    left: -3%;
}






/* =====================
はたち会とは section2
======================== */
.section2 {
    margin-top: 100px; 
}

.section2__content-border1,
.section2__content-border2 {
    margin: 0 auto  ;
    width: 90%;
    max-width: 600px;
    height: auto;
    display: flex;
    align-items: center;
    border-radius: 30px;
    background-color: #EAE3DB;
}

.section2__content1,
.section2__content2 {
    margin: 4% auto;
    width: 90%;
    height: auto;
    padding: 30px 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-radius: 40px;
    background-color: #FBF6F0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.section2__content1 img {
    width: 240px;
}

.section2__content1 p,
.section2__content2 p {
    text-align: center;
    font-family: "Zen Maru Gothic";
    line-height: 2.5;
    font-size: 1.6rem;
}

.section2__content-border2 {
    margin-top: 110px;
    height: auto;
}

.section2-img2 {
    max-width: 80%;
}

.section2__content2__txt1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section2__content2__txt1 p,
.section2__content2__txt3 p {
    text-align: left;
}

.section2__content2__txt2 {
    position: relative;
}

.section2__content2__txt2 img {
    position: absolute;
    width: 180px;
    top: 120%;
    right: 0;
}

.section2__content2__txt3 {
    margin-top: 50px;
    display: flex;
}   

.section2__content3 {
    margin: 110px auto 0;
    padding: 0 7%;
}

.section2__content3__contain {
    display: flex;
    flex-direction: column;
}

.section2__content3__contain__txt1 {
    position: relative;
    font-size: 1.8rem;
}

.section2__content3__contain__sb {
    width: 250px;
    position: absolute;
    top: 30px;
    left: 0px;
} 

.section2__content3__contain__txt1 p {
    margin-top: 130px;
    text-align: center;
    font-family: "Zen Maru Gothic";
    line-height: 2.5
}

.section2__content3__contain__txt2 {
    margin-top: 50px;
    display: flex;
    height: auto;
    padding: 10px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 1px dashed #D04337;
    background-color: #FBF6F0;
}

.section2__content3__contain__txt2 p {
    font-family: "Zen Maru Gothic";
    line-height: 2; 
    font-size: 1.8rem;
}

/* =====================
太極拳を始めるメリット section3
======================== */
.section3 {
    margin-top: 100px;
}   

.section3__img1-pc {
    display: none;
}

.section3__img1 {
    margin: 0 auto;
    text-align: center;
    width: 280px;
}

.section3__content1 {
    margin: 100px 8.6% 0;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    border-radius: 30px;
    background: #EAE3DB;
}

.section3__content1__item {
    display: flex;
    padding: 30px 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;                                                                                                              
    border-radius: 30px;
    background-color: #FBF6F0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.section3__content1__item-circle {
    display: flex;
    width: 200px;
    height: 200px;
    justify-content: center;
    gap: 10px;
    align-items: center;
    border-radius: 300px;
    border: 1px solid #FFF;
    background-color: #96705C;
    position: relative;
}

.section3__content1__item-circle p {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #FFF;
}

.section3__content1__item-txt {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section3__content1__item-txt p {
    font-family: "Zen Maru Gothic";
    line-height: 2.5;
    font-size: 1.6rem;
}

.section3__content1__item-circle1,
.section3__content1__item-circle3 {
    position: relative;
}

.section3__content1__item-circle1 img {
    width: 200px;
    position: absolute;
    top: -80px;
    left: -26%;
    transform: rotate(8deg);
}

.section3__content1__item-circle3 img {
    width: 260px;
    position: absolute;
    top: -60px;
    left: -27%;
    transform: rotate(3deg);
}

.section3__content2 {
    margin-top: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section3__content2__img-pc {
    display: none;
}

.section3__content2__title {
    width: 270px;
    height: 270px;
    border-radius: 300px;
    border: 1px solid #CCC;
    background-color: rgba(255, 255, 255, 0.90);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotate(-3.231deg);
    position: absolute;
    top: -60%;
}

.section3__content2__title h2 {
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 2.3;
}

/* =====================
実施種目 section4
======================== */
.section4 {
    margin-top: 100px;
}

.section4__title {
    text-align: center;
}

.section4__img1 {
    width: 215px;
}

.section4__content {
    margin-top: 50px;
    padding: 0 4%;
}

.section4__content h2 {
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 2.8rem;
    line-height: 2.3;
}

.section4__content__item {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.section4__content__item dl {
    padding: 80px 20px 50px 20px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #000;
    background: #FBF6F0;
    position: relative;
}

.section4__content__item-title {
    padding: 15px 20px;
    width: 270px;
    display: flex;
    justify-content: center;
    border-radius: 30px;
    background: #96705C;
    color: #FFF;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
    font-family: "Zen Maru Gothic";
    font-size: 2.4rem;
    font-weight: 500;
    position: absolute;
    top: -10%;
}

.section4__content__item__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 30px;
}

.section4__content__item dl dd p {
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
}

.section4__content__img {
    margin-top: 80px;
    text-align: center;
}

.section4__img2 {
    width: 100%;
}

/* =====================
無料体験について section5
======================== */
.section5 {
    margin-top: 100px;
}

.section5__title {
    text-align: center;
}

.section5__title img {
    width: 330px;
}

.section5__content {
    margin: 100px 8.9% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.section5__content__item {
    display: flex;
    padding: 30px 20px;
    flex-direction: column;
    gap: 80px;
    border-radius: 30px;
    border: 1px solid #CCC;
    background: #FBF6F0;
}

.section5__content__item__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section5__content__item__img img {
    max-width: 120px;
}

.section5__content__item__list dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.section5__content__item__list dl dt {
    font-family: "Zen Maru Gothic";
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
}

.section5__content__item__list dl dd {
    font-size: 1.8rem;
}

.section5__content__text1 p {
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 500;
}

.section5__content__text2 {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section5__content__text2__item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.section5__content__text2__item img {
    width: 60px;
}

.section5__content__text2__item p {
    font-family: "Zen Maru Gothic";
    font-size: 2.4rem;
    font-weight: 700;
}

.section5__content__btn {
    padding: 20px 20px;
    border-radius: 30px;
    border: 1px solid #fff;
    background: #D04337;
    text-align: center;
}

.section5__content__btn a {
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 2px 3px 1px rgba(0, 0, 0, 0.25);
}

.section5__content__btn:hover {
    background-color: #FFF574;
    transition: all 0.3s ease;
    border: 1px solid #1d1d1d;
}

.section5__content__btn a:hover {
    color: #1D1D1D;
    transition: all 0.3s ease;
}

/* =====================
料金・日時 section6
======================== */
.section6 {
    margin-top: 100px;
}

.section6__content {
    margin: 0 6.6%;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 30px;
    background: #FBF6F0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.section6__content__item {
    margin: 0 auto;
}


.section6__content__item h2 {
    color: #D04337;
    text-align: center;
    font-size: 3.4rem;
    font-weight: 700;
    position: relative;
}

.section6__content__item__list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    font-family: "Zen Maru Gothic";
}

.section6__content__item__list li {
    font-size: 1.6rem;
}

.section6__content__item__list1 {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding-left: 10px;
    gap: 20px;
}

.section6__content__item h2::after {
    border-bottom: 2px dashed #1d1d1d;
    display: block;
    width: 250px;
    content: "";
    position: absolute;
    left: calc(50% - 120px);
    bottom: -15px;
}

.section6-circle {
    position: relative;
}

.section6-circle::before {
    position: absolute;
    width: 20px;
    height: 20px;
    content: "";
    background-color: #1d1d1d;
    top: 5px;
    left: -30px;
    border-radius: 50%;
}

.section6-margin {
    margin-left: -32px;
}

/* =====================
アクセス section7
======================== */
.section7-map-pc {
    display: none;
}

.section7 {
    margin: 100px auto 0;
    padding: 0 5.3%;
    
}

.section7__title {
    text-align: center;
}

.section7__title img {
    width: 230px;
}

.section7__content__item {
    width: 300px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.section7__content__item__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    font-size: 1.6rem;
}

.section7__content__item__list-title {
    width: 120px;
    height: 120px;
    border-radius: 200px;
    background-color: #96705C;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 700;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.25);
}

.section7__content__item__list-item {
    padding: 0 25px;
    width: 300px;
    line-height: 2;  
    font-family: "Zen Maru Gothic";
} 

.section7-access {
    margin-top: 50px;
    text-align: center;
}

.section7-access iframe {
    width: 100%;
    border-radius: 40px;
    aspect-ratio: 16/9;
}

/* =====================
footer
======================== */
.footer {
    padding: 30px;
    margin-top: 150px;
    width: 100%;
    height: auto;
    background-color: #EAE3DB;
}

.footer__content {
    max-width: 1280px;
    height: auto;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;  
}


.footer__icon {
    width: 79px;
}

.footer__icon:hover {
    opacity: 0.6;
}

.footer__topic {
    display: flex;
    gap: 55px;
}

.footer__btn {
    max-width: 105px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: #D04337;
    color: #fff;
    text-align: center;
    text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 500;
}

.footer__nav-pc {
    display: block;
}

.footer__nav-pc ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer__nav-pc ul li a {
    font-size: 1.6rem;
}

.footer__nav-pc ul li a:hover {
    opacity: 0.6;
}

.footer__content__item {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}

.footer__nav__dashed-line-pc {
    margin-top: 5px;
    width: 170px;
    border-top: 1px dashed #1d1d1d;
}

.footer-br {
    display: none;
}

.footer__btn {
    max-width: 140px;
}

.footer__copy {
    margin-top: 20px;
    font-size: 1.4rem;
    text-align: center;
}

/* =====================
contact
======================== */
.section {
    margin-top: 150px;
}

.contact-back-maru1,
.contact-back-maru2 {
    display: none;
}

.contact__title {
    text-align: center;
}

.contact__title img {
    width: 300px;
}

.form {
    display: flex;
    flex-direction: column;
}

.form__content {
    max-width: 375px;
    margin: 80px auto 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.form__item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.form__item__list {
    display: flex;  
    gap: 10px;
    align-items: center;
}

.form__item__list__title {
    font-family: "Zen Maru Gothic";
    font-weight: 400;
    font-size: 1.8rem;
}

.form__item__list__must {
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 1.2rem;
    font-weight: 400;
    padding: 4px 5px;
    text-align: center;
    border-radius: 10px;
    background: #D04337;
    display: flex;
    align-items: center;
}

.form__item__content {
    padding: 5px 10px;
    width: 180px;
    border-radius: 10px;
    background: #D9D9D9; 
    font-size: 1.4rem; 
    font-family: "Zen Maru Gothic";  
}


.form__item1 {
    flex-direction: column;
    gap: 10px;
}

.form__item__div {
    margin-left: auto;
}

.form__item__content1 {
    width: 300px;
    padding: 5px 10px;  
}

.form__item__content2 {
    width: 160px;
}

.form__item__content3 {
    width: 300px;
    height: 100px;
}

.send {
    margin: 80px auto 0;
    padding: 10px 20px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.30);
    background: #FFF574;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-weight: 500;
    font-size: 1.8rem;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}

.send:hover {
    background-color: #D04337;
    border: 1px solid #FFF;
    color: #FFF;
    transition: all 0.3s ease ;
}

/* =====================
application
======================== */
.application-back-maru1,
.application-back-maru2 {
    display: none;
}

.freeactive__title {
    text-align: center;
}

.freeactive__title-sp {
    width: 250px;
}

.freeactive__title-pc {
    display: none;
    width: 450px;
}

.form__item__content3 {
    width: 330px;
}

.freeactive__item {
    align-items: flex-start;
}

.freeactive__item__content {
    height: 90px;
}

.freeactive__txt {
    margin-top: 15px;
    font-size: 1.6rem;
    font-family: "Zen Maru Gothic";
}


/* =====================
contact確認画面
======================== */
.contact-check-back-maru1,
.contact-check-back-maru2 {
    display: none;
}

.contact__title-check {
    text-align: center;
}

.contact__title-check img {
    margin-top: 150px;
    width: 300px;
}

.contact-check__p {
    margin-top: 80px;
    text-align: center;
    font-family: "Kaisei Opti";
    font-size: 2rem;
}

.contact-check__form {
    flex-wrap: wrap;
    font-size: 1.8rem;
}

.contact-check__btn {
    margin: 80px auto 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-check__back-send {
    padding: 10px 20px;
    width: 130px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.30);
    background-color: #96705C;
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-weight: 500;
    text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.25);
    white-space: pre-wrap;
    font-size: 1.8rem;
}

.contact-check__send {
    padding: 10px 20px;
    width: 140px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.30);
    background: #FFF574;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-weight: 500;
    font-size: 1.8rem;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}

.contact-check__back-send:hover {
    background-color: #fff;
    border: 1px solid #1d1d1d;
    color: #96705C;
    transition: all 0.3s ease;
}

.contact-check__send:hover {
    background-color: #D04337;
    border: 1px solid #FFF;
    color: #FFF;
    transition: all 0.3s ease;
}

/* =====================
application確認画面
======================== */
.application-check-back-maru1,
.application-check-back-maru2 {
    display: none;
}

.application__title {
    margin-top: 180px;
}

.application__title-check {
    text-align: center;
}

.application__title-check img {
    margin-top: 150px;
    width: 250px;
}

/* =====================
送信完了画面
======================== */
.error,
.send-ok {
    margin-top: 100px;
    padding: 0 5%;
    text-align: center;
}

.error-back,
.send-ok-back {
    margin-top: 150px;
    padding: 30px;
    background-color: #FBF6F0;
    border-radius: 40px;
}

.error-back h4,
.send-ok-back h4 {
    margin-bottom: 50px;
}

.error-btn,
.send-ok-topback {
    padding: 5px 10px;
    background-color: #96705C;
    border-radius: 40px;
    color: #fff;
    font-size: 2rem;
    font-family: "Zen Maru Gothic";
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}

/* =====================
js
======================== */
.js-fadein {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}

.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.section1-img1,
.section1-img2,
.section1__txt img,
.section1__txt h1 {
    display: none;
}

.contact {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}
.contact.load {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/*申込画面レイアウト調整*/
.cantact-check__btn {
    margin: 80px auto;
}

@media screen and (min-width:900px) {
/* pc-header */
    .nav,
    .hamburger {
        display: none;
    }

    .header__content {
        padding: 10px 30px;
        justify-content: space-around;
        gap: 30px;
    }

    .header__icon {
        width: 70px;
    }

    .nav-pc {
        display: flex;
    }

    .nav-pc ul {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
    }

    .nav-pc ul li {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-pc ul li a {
        text-align: center;
        font-size: 1.8rem;
    }

    .nav-pc ul li a:hover {
        opacity: 0.6;
    }

    .nav__dashed-line-pc {
        width: 0;
        height: 70px;
        border-top: none;
        border-right: 1px dashed #1d1d1d;
    }

    .header__btn {
        padding: 5px 20px;
        border: 2px solid #FFF;
        font-size: 1.8rem;
    }

}

/* =====================
min-width 767px 
======================== */

@media screen and (min-width:767px) {
    .back-maru1 {
        width: 30%;
        top: -10%;
        left: 55%;
    }
    
    .back-maru2 {
        width: 40%;
        top: 32%;
        left: 10%;
    }
    
    .back-maru3 {
        width: 35%;
        top: 66%;
        left: 55%;
    }
    
    .back-maru4 {
        display: none;
    }
    
    .back-maru5 {
        width: 38%;
        top: 0%;
        left: 5%;
    }
    
    .back-maru6 {
        width: 37%;
        top: 65%;
        left: 53%;
    }
    
    .back-maru7 {
        width: 40%;
        top: 0%;
        left: 4%;
    }
    
    .back-maru8 {
        width: 38%;
        top: 55%;
        left: 55%;
    }
    
    .back-maru9 {
        width: 35%;
        top: 0%;
        left: 10%;
    }
    
    .back-maru10 {
        width: 30%;
        top: 60%;
        left: 58%;
    }
    
    .back-maru11 {
        display: none;
    }
    
    /* pc-section1 TOP */
    .section1 {
        margin-top: 130px;
    }

    .section1__img {
        margin: 0 auto;
        max-width: 1280px;
        padding: 0 3.5%;
        flex-direction: row;
    }

    .section1-img1 {
        padding-left: 50px;
        width: 50%;
    }

    .section1-img2 {
        width: 50%;
        top: 0;
        left: 43%;
    }

    .section1__txt {
        position: absolute;
        top: -65%;
        left: 12%;
        
    }

    .section1__txt h1 {
        font-size: 3rem;
        line-height: 1.5;
    }

    .section1__txt img {
        width: 80px;
    }

    .wavy-line {
        width: 100%;
        margin-top: 150px;
    }

    .wavy-line1 {
        margin-top: 230px;
    }

    /* pc-section2 はたち会とは */
    .section2 {
        margin-top: 150px;
    }
    
    .section2__content-border1 {
        max-width: 700px;
        height: auto;
    }

    .section2__content1 {
        margin: 3% auto;
        width: 93%;
        height: auto;
        gap: 35px;
    }

    .section2__content1 img {
        width: 300px;
    }

    .section2-br {
        display: none;
    }

    
    .section2__content1 p {
        font-size: 2rem;
        line-height: 2.5;
    }

    .section2__content-pc {
        margin: 150px auto 0;
        padding: 0 3.5%;
        max-width: 1340px;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        gap: 100px;
        flex-wrap: wrap;
    }

   

    .section2__content-border2 {
        margin: 0;
        max-width: 450px;
        height: 620px;
    }

    .section2__content2 p {
        line-height: 1.5;
    }

    .section2__content2__txt1 {
        gap: 15px;
    }
    
    .section2__content2__txt1 p,
    .section2__content2__txt3 p {
        line-height: 2.5;
    }
    
    .section2__content2__txt2 img {
        width: 200px;
        top: 100%;
        left: 52%;
        transform: rotate(-3deg);
    }

    .section2__content2__txt3 {
        margin-top: 30px;
    }
    
    .section2__content3 {
        margin: 0;
        padding: 0;
        width: 350px;
    }

    .section2__content3__contain {
        max-width: 350px;
    }
    
    .section2__content3__contain__sb {
        width: 230px;
        position: absolute;
        top: 40px;
    } 

    .section2__content3__contain__txt1 p {
        margin-top: 130px;
        line-height: 2;
        font-size: 2rem;
    }

    .section2__content3__contain__txt2 {
        margin-top: 50px;
        padding: 20px;
        max-width: 472px;
        border: 2px dashed #D04337;
    }
    
    .section2__content3__contain__txt2 p {
        font-size: 2rem;
        line-height: 1.5; 
    }

    /* pc-section3 太極拳を始めるメリット */
    .section3 {
        margin: 0 auto;
        padding: 0 7%;
        max-width: 1280px;
    }

    .section3__img1 {
        margin-top: 150px;
        width: 700px;
    }

    .section3__img1-sp {
        display: none;
    }

    .section3__img1-pc {
        display: block;
        margin: 0 auto;
    }

    .section3__content1 {
        max-width: 900px;
        margin: 100px auto 0;
        padding: 40px;
        display: flex;
        flex-direction: column;
        gap: 80px;
        border-radius: 40px;
    }
    
    .section3__content1__item {
        display: flex;
        flex-wrap: wrap;
        padding: 25px;
        flex-direction: row;
        justify-content: space-around;
    }   
    
    .section3__content1__item-txt {
        max-width: 470px;
    }

    .section3__content1__item-txt p {
        font-size: 2rem;
        line-height: 2;
    }
    
    .section3__content1__item-circle1 img {
        width: 320px;
        top: -70px; 
        left: -30%;
        transform: rotate(-1deg);
    }
    
    .section3__content1__item-circle3 img {
        width: 320px;
        top: -25%;
        left: -30%;
        transform: rotate(-2deg);
    }
    
    .section3__content2 {
        flex-direction: row;
        margin: 150px 5% 0;
    }

    .section3__content2__img-sp {
        display: none;
    }

    .section3__content2__img-pc {
        width: 900px;
        display: block;
        margin: 0 auto;
    }

    .section3__content2__title {
        display: none;
    }

    /* pc-section4 実施種目 */
    .section4 {
        margin: 150px auto 0;
        max-width: 1280px;
    }
    
    .section4__img1 {
        width: 350px;
    }

    .section4-br {
        display: none;
    }

    .section4__content h2 {
        font-size: 3rem;
    }

    .section4__content__item {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section4__content__item dl {
        padding: 90px 60px 50px 60px;
        width: 350px;
        height: 300px;
    }
    
    .section4__content__item-title {
        width: 270px;
        padding: 10px;
        font-size: 2.8rem;
    }
    
    .section4__content__item__text {
        gap: 25px;
    }
    
    .section4__content__item dl dd p {
        font-size: 2rem;
    }

    .section4__content__img {
        margin-top: 120px;
    }

    .section4__img2 {
        width: 70%;
    }


    /* pc-section5 無料体験について */
    .section5 {
        margin: 150px auto 0;
        max-width: 1280px;
    }

    .section5__title img {
        width: 600px;
    }

    .section5__content {
        margin: 100px 18% 0;
        gap: 100px;
    }

    .section5__content__item {
        padding: 30px 50px;
        gap: 50px;
        border-radius: 40px;
    }

    .section5__content__item__list {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
    }
    
    .section5__content__item__list dl {
        gap: 20px;
        align-items: flex-start;
    }

    .section5-br {
        display: none;
    }
    
    .section5__content__item__list dl dt {
        font-size: 3rem;
    }

    .section5__content__item__list dl dd {
        font-size: 2rem;
    }
    
    .section5__content__text1 p {
        font-size: 3rem;
    }

    .section5__content__text2__item {
        gap: 40px;
    }
    
    .section5__content__text2__item p {
        font-family: "Zen Maru Gothic";
        font-size: 3.6rem;
        font-weight: 500;
        text-align: center;
    }
    
    .section5__content__btn {
        margin: 0 auto;
        padding: 20px 50px;
        border: 3px solid #fff;
    }
    
    .section5__content__btn a {
        font-size: 3.6rem;
        text-shadow: 4px 3px 1px rgba(0, 0, 0, 0.25);
    }

    /* pc-section6 料金・日時 */
    .section6-br {
        display: none;
    }
    
    .section6 {
        margin: 150px auto 0;
        padding: 0 5%;
        max-width: 1280px;
    }

    .section6__content {
        margin: 0 30px;
    }

    .section6-border {
        margin: 0 auto;
        max-width: 900px;
        padding: 30px 0;
        border-radius: 40px;
        border: 1px solid rgba(29, 29, 29, 0.10);
        background: #EAE3DB;
    }

    .section6__content {
        flex-direction: row;
        border-radius: 40px;
        gap: 80px;
    }
    
    .section6__content__item h2 {
        font-size: 5rem;
    }
    
    .section6__content__item__list {
        margin-top: 60px;
        gap: 40px;
        font-size: 3rem;
    }

    .section6__content__item__list1 {
        margin-top: 10px;
        gap: 10px;
    }

    .section6__content__item__list li {
        font-size: 2rem;
    }
    
    .section6__content__item h2::after {
        border-bottom: 2px dashed #1d1d1d;
        display: block;
        width: 250px;
        content: "";
        position: absolute;
        left: calc(50% - 120px);
        bottom: -15px;
    }
    
    .section6-circle::before {
        width: 23px;
        height: 23px;
        top: 4px;
        left: -35px;
    }
    
    .section6__content__item-line::before {
        display: none;
    }

    .section6-line {
        margin-left: -20px;
        width: 1px;
        height: 400px;
        border-right: 1px dashed #1d1d1d;
    }

    .section6__item-pc {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    }

    /* section7 アクセス */
    .section7-access {
        display: none;
    }

    .section7-map-pc {
        display: block;
    }

    .section7 {
        margin-top: 150px;
        padding: 0 5%;
    }

    .section7__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section7__title img {
        width: 320px;
    }
    
    .section7__content__item {
        width: auto;
        margin: 100px auto 0;
        align-items: flex-start;
        gap: 50px;
    }
    
    .section7__content__item__list-pc {
        width: 100%;
        display: flex; 
        flex-wrap: wrap;
        gap: 70px;
    }

    .section7__content__item__list {
        display: flex;
        flex-direction: row;
    }
 
    .section7__content__item__list-title {
        width: 120px;
        height: 120px;
        font-size: 2.4rem;
    }
    
    .section7__content__item__list-item {
        line-height: 2.3;   
        width: auto;
        font-size: 2rem;
    } 

    .section7-map-pc iframe {
        width: 350px;
        height: 330px;
        border-radius: 40px;
        aspect-ratio: 16/9;
    }

    /* footer-pc */
    .footer {
        padding: 10px;
    }

    .footer-br {
        display: block;
    }

    .footer__content {
        padding: 10px 30px;
        justify-content: space-around;
        gap: 50px;
    }

    .footer__content__item {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 120px;
        justify-content: center;
    }

    .footer__nav-pc {
        display: flex;
    }

    .footer__icon {
        width: 70px;
    }

    .footer__nav-pc ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 28px;
    }

    .footer__nav-pc ul li {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .footer__nav-pc ul li a {
        text-align: center;
        font-size: 1.8rem;
    }

    .footer__nav__dashed-line-pc {
        margin-top: 0;
        width: 0;
        height: 70px;
        border-top: none;
        border-right: 1px dashed #1d1d1d;
    }

    .footer__nav__dashed-line-pc-line {
        display: none;
    }

    .footer__btn {
        max-width: 156px;
        padding: 5px 20px;
        border: 2px solid #FFF;
        font-size: 1.8rem;
    }

    .footer__copy {
        margin-top: 10px;
    }
   
    /* contact-pc */
    .section {
        margin-top: 180px;
    }

    .contact {
        position: relative;
    }

    .contact__title-check img {
        margin-top: 180px;
    }

    .contact-back-maru1 {
        display: block;
        position: absolute;
        z-index: -1;
        width: 55%;
        top: -5%;
        left: 0;
    }

    .contact-back-maru2 {
        display: block;
        position: absolute;
        z-index: -1;
        width: 50%;
        top: 70%;
        left: 50%;
    }

    .contact {
        padding: 0 5%;
    }

    .contact__title img {
        width: 450px;
    }

    .form {
        margin: 0 auto;
        max-width: 1280px;
        padding: 0 5%;
        gap: 80px;
    }
    
    .form__content {
        padding: 40px;
        max-width: 900px;
        gap: 50px;
        border-radius: 40px;
        border: 1px solid #C0C0C0;
        background: #FBF6F0;
    }
    
    .form__item,
    .form__item1 {
        flex-direction: row;
        align-items: center;
    }
    
    .form__item__list {
        width: 300px;
        display: flex;  
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .form__item__list__title {
        font-size: 2.6rem;
    }
    
    .form__item__list__must {
        font-size: 2rem;
        padding: 1px 8px;
    }
    
    .form__item__content,
    .form__item__content1,
    .form__item__content2,
    .form__item__content3 {
        width: 450px;
        padding: 10px 20px;
        height: auto;
        border-radius: 20px;
        font-size: 2rem; 
        border: 1px solid #A2A2A2;
    }
    
    .form__item__div {
        margin-left: 0px;
    }
    
    .send {
        margin: 0 auto;
        padding: 15px 30px;
        font-size: 2.6rem;
    }

    /* application-pc */
    .contact {
        position: relative;
    }

    .application__title-check img {
        margin-top: 180px;
    }

    .application-back-maru1 {
        display: block;
        position: absolute;
        z-index: -1;
        width: 55%;
        top: -5%;
        left: 0;
    }

    .application-back-maru2 {
        display: block;
        position: absolute;
        z-index: -1;
        width: 50%;
        top: 70%;
        left: 50%;
    }

    .freeactive__txt {
        font-size: 1.8rem;
    }

    .freeactive-br {
        display: none;
    }

    .freeactive__title {
        text-align: center;
    }

    .freeactive__title-sp {
        display: none;
    }

    .freeactive__title-pc {
        display: block;
        margin: 0 auto;
    }

    /* contact-check */
    .contact-check-back {
        position: relative;
    }

    .contact-check-back-maru1 {
        display: block;
        position: absolute;
        z-index: -1;
        width: 45%;
        top: 4%;
        left: 0
    }

    .contact-check-back-maru2 {
        display: block;
        position: absolute;
        z-index: -1;
        width: 40%;
        top: 75%;
        left: 60%;
    }
    

    .contact__title-check img {
        width: 370px;
    }

    .contact__title img {
        width: 370px;
    }

    .contact-check-br {
        display: none;
    }

    .contact-check__p {
        margin: 100px auto 0;
        font-size: 2.6rem;
    }

    .contact-check__btn {
        margin: 0 auto;
        gap: 60px;
    }

    .contact-check__back-send {
        width: 250px;
        font-size: 2.6rem;
    }

    .contact-check__send {
        width: 205px;
        font-size: 2.6rem;
    } 

    .contact-check__form {
        font-size: 2rem;
        width: 450px;
    }

    /* application-check-pc */
    .application-check-back {
        position: relative;
    }

    .application-check-back-maru1 {
        display: block;
        position: absolute;
        z-index: -1;
        width: 45%;
        top: 0%;
        left: 0;    
    }

    .application-check-back-maru2 {
        display: block;
        position: absolute;
        z-index: -1;
        width: 40%;
        top: 64%;
        left: 60%;
    }


    .freeactive__title-pc{
        width: 450px;
    }

    .application__title-check img {
        width: 370px;
    }

    /* エラー画面 */
    .error-back,
    .send-ok-back {
        margin-top: 200px;
    }
    

}

