@charset "utf-8";

/* 変数 */
:root {
    --color-base: #221835;
    --color-pink: #ff4b9f;
    --color-blue: #38A1DB;
    --color-yellow: #F5E92E;
    --fontfamily-en: "orbitron", "zen-kaku-gothic-new", sans-serif;
    --fontfamily-en-sdw: "vdl-megag-pop-shadow", "zen-kaku-gothic-new", sans-serif;
    --fontfamily-zen-kaku-gothic: "zen-kaku-gothic-new", sans-serif;
    --fontfamily-din: "ff-din-paneuropean", "zen-kaku-gothic-new", sans-serif;
}


body {
    width: 100%;
    background-color: var(--color-base);
    font-family: var(--fontfamily-zen-kaku-gothic);
    color: white;

}

img {
    max-width: 100%;
    height: auto;
    width: 100%;
}
video {
    max-width: 100%;
    height: auto;
    width: 100%;
}

li {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}


/* 共通 */
.wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.sec_ttl {
    font-weight: bold;
}

@media (max-width: 1024px) {
    .wrapper {
        width: 85%;
    }
}

/* ヘッダー */
.hd {
    display: flex;
    justify-content: center;
}

.hd .wrapper {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
    z-index: 9999 ;
    background: color-mix(in srgb, var(--color-base) 50%, transparent);
}

.hd_logo img {
    width: 200px;
}

.nav {
    display: flex;
    align-items: center;
    font-family: var(--fontfamily-en);
    font-weight: 600;
    font-size: 18px;
}

.nav nav ul {
    display: flex;
    gap: 50px;
    
}

.nav nav ul li {
    text-align: center;
    padding: .25em .8em;
}

.home_icon::before {
    content:'\f015';
    font-family: 'Font Awesome 5 Free';
    color: #fff;
    font-size: 24px;
}
.home_btn:hover,
.home_icon:hover::before {
    color: var(--color-pink);
    transition: all .5s;
}


.under_line {
    display: inline-block;
    position: relative;
    padding-bottom: .3em;
}

.under_line::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #fff;
    bottom: 0px;
    left: 20%;
    transition: .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
.under_line:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}


.home_btn small {
    font-family: var(--fontfamily-en);
}

.news_btn {
    color: var(--color-yellow);
}

.about_btn {
    color: var(--color-blue)    ;
}

.con_btn {
    color: var(--color-pink);
}


/* .nav nav ul li:hover {
    color: var(--color-base);
    background-color: var(--color-blue);
    transition: all .5s;
} */

.nav nav ul li small {
    font-family: var(--fontfamily-zen-kaku-gothic);
    font-size: 12px;
}

.hd_con {
    margin-left: 80px;
    text-align: center;
}

.hd_con_inner {
    background-color: var(--color-pink);
    border-radius: 10px;
}

.hd_con_btn {
    display: inline-block;
    padding: 10px 30px;
}

.hd_con_btn:hover {
    transition: all .5s;
    color: var(--color-pink);
    background-color: #fff;
    border-radius: 10px;
}

#header.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

#header.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ハンバーガーナビ */
.hamburger_box {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
}
.hamburger {
    width: 55px;
    height: 55px;
    cursor: pointer;
    position: relative;
}
.hamburger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 28px;
    cursor: pointer;
    z-index: 30;
    background: transparent;
    border: 2px solid #ff2d95;
    border-radius: 4px;
    padding: 8px;
    box-shadow: 0 0 12px rgba(255, 45, 149, 0.6), inset 0 0 12px rgba(255, 45, 149, 0.1);
    transition: all 0.3s;
}
.hamburger-menu:hover {
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.9), 0 0 40px rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
}
.hamburger-menu .line {
  display: block;
  position: absolute;
  width: calc(100% - 16px);
  height: 2px;
  left: 8px;
  background: linear-gradient(90deg, #ff2d95, #00ffff);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 8px rgba(255, 45, 149, 0.6);
}

.hamburger-menu .line:nth-of-type(1) { top: 25%; }
.hamburger-menu .line:nth-of-type(2) { top: 50%; transform: translateY(-50%); }
.hamburger-menu .line:nth-of-type(3) { bottom: 25%; top: auto; }

.hamburger-menu.active > .line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: #00ffff;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.8);
}

.hamburger-menu.active > .line:nth-of-type(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger-menu.active > .line:nth-of-type(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
  background: #ff2d95;
  box-shadow: 0 0 12px rgba(255, 45, 149, 0.8);
}

/* .hamburger .ham {
    transition: all .5s;
}
.hamburger .ham span {
    display: inline-block;
    background: var(--color-yellow);
    width: 50%;
    height: 2px;
    position: absolute;
    left: 14px;
    border-radius: 2px;
    transition: all .5s;
}
.hamburger span:nth-of-type(1) {
    top: 16px;
}
.hamburger span:nth-of-type(2) {
    top: 24px;
}
.hamburger span:nth-of-type(3) {
    top: 32px;
}

.hamburger.active .ham {
    transform: rotateY(-360deg);
}
.hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 35%;
}
.hamburger.active span:nth-of-type(2) {
    opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(135deg);
    width: 35%;
} */




/* スマホgnav画面 */
.sp_nav {
    position: fixed;
    top: -150%;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 90vh;
    background: var(--color-base);
    color: #ffffff;
    transition: all .6s;
}
.sp_nav.panelactive {
    top: 0;
}
.sp_nav_inner ul {
    position: absolute;
    z-index: 999;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}
.sp_nav_inner ul li {
    text-align: center;
}
.sp_nav_inner ul li a {
    margin: 30px 0;
    display: inline-block;
    letter-spacing: .1em;
    font-weight: bold;
    font-size: 18px;
    font-family: var(--fontfamily-en);
}

.sp_nav_inner ul li a small {
    font-size: 12px;
}

.spnav_ft {
    width: 100%;
    height: 100px;
    background-image: url(../images/footer_bg.jpg);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 0;
}

@media (max-width: 1024px) {
    .hd .wrapper{
        height: 55px;
        background-color: unset;
    }
    .hd_logo img {
        width: 130px;
        margin-left: 15px;
    }
    .nav nav, .hd_con {
        display: none;
    }
    .hamburger_box {
        display: block;
    }
}

/* ==========
 TOPページ 
 ============*/
.first_view {
    margin-top: 100px;
    height: calc(100vh - 100px);
}
.first_view .wrapper {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.big_ttl {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big_ttl h1 {
    font-family: var(--fontfamily-en);
    font-weight: 900;
    font-size: 50px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    margin-bottom: 1em;
}

.big_ttl h1 span {
    font-family: var(--fontfamily-en-sdw);
    font-size: 88px;
    margin-right: .1em;
}

.big_ttl h1:nth-child(1) span {
    color: var(--color-pink);
}

.big_ttl h1:nth-child(2) span {
    color: var(--color-yellow);
}

.big_ttl h1:nth-child(3) span {
    color: var(--color-blue);
}

.first_catch {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.first_catch p {
    font-size: 20px;
    font-weight: bold;
    margin: 80px 0 50px 0;
    letter-spacing: .25em;
}

.first_catch img {
    width: 150px;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left: calc(50% + 1em);
	bottom: -6em;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-family: var(--fontfamily-en);
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: calc(50% - 4px);
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:-3em;}
     100%{bottom:-5em;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom: -5em;
	left: calc(50% - 0px);
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#eee;
}

.big_mve {
    width: 40%;
    margin: auto 0 50px 0;
}

@media (max-width: 1024px) {
    .first_view {
        height: unset;
    }
    .first_view .wrapper {
        flex-direction: column-reverse;
        gap: 50px;
        justify-content: start;
    }
    .big_mve {
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .big_ttl h1 {
        font-size: 35px;
    }
    .big_ttl h1 span {
        font-size: 70px;
    }
}

@media (max-width: 470px) {
    .big_ttl h1 {
        font-size: 25px;
    }
    .big_ttl h1 span {
        font-size: 55px;
    }
}

/* 第１回演奏会 */
.firstconcert {
    margin: 200px 0;
}

.firstconcert .wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--color-pink);
    padding: 30px;
}

.firstconcert_main {
    width: 50%;
    font-weight: 600;
}

.firstconcert_ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    font-size: 36px;
}

.ttl_pop {
    display: inline-block;
    background-color: var(--color-pink);
    border-radius: 10px;
    padding: .1em .8em;
    font-size: 22px;
}

.ttl_main {
    letter-spacing: .25em;
}

.ttl_main span {
    color: var(--color-pink);
    font-size: 50px;
}

.ttl_sub {
    font-size: 32px;
    font-family: var(--fontfamily-en);
    letter-spacing: .1em;
    text-align: center;
}

.firstconcert_img {
    width: 48%;
}

.firstconcert_info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5em;
    border-top: 1px solid var(--color-pink);
    border-bottom: 1px solid var(--color-pink);
    margin: 1em 0 1em;
    font-family: var(--fontfamily-din);
}

.firstconcert_date {
    position: relative;
}

.firstconcert_date .date {
    font-size: 50px;
}

.firstconcert_date .sunday {
    display: inline-block;
    position: absolute;
    bottom: 1.5em;
    color: var(--color-pink);
    transform: rotate(-90deg);
    font-family: var(--fontfamily-en);
}

.firstconcert_bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.firstconcert_program .program {
    display: inline-block;
    border: 1px solid var(--color-pink);
    border-radius: 10px;
    padding: .2em 1em;
    font-family: var(--fontfamily-en);
}

.firstconcert_program li {
    font-size: 14px;
    margin-bottom: .5em;
}

.teket_btn {
    display: inline-block;
    color: white;
    background-color: var(--color-pink);
    border-radius: 10px;
    padding: .5em 2em .5em 1.5em;
    transition: ease .2s;
    position: relative;
}

.btnarrow::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:42%;
    right: 15px;
    /*矢印の形状*/
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.btnarrow:hover::after{
    right: 10px;
}



@media (max-width: 767px) {
    .firstconcert .wrapper {
        flex-direction: column-reverse;
        gap: 20px;
        padding: 20px;
    }
    .firstconcert_main, .firstconcert_img {
        width: 100%;
    }
    .firstconcert_ttl {
        flex-direction: column;
        gap: unset;
    }
    .ttl_sub {
        font-size: 20px;
    }
    .firstconcert_info {
        gap: 3em;
    }
    .firstconcert_bottom {
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .br_no {
        display: none;
    }
    .teket_btn {
        margin-top: 1em;
    }
}

@media (max-width: 475px) {
    .firstconcert_info {
        flex-direction: column;
        gap: unset;
        padding-bottom: 1em;
    }
    .firstconcert_date {
        font-size: 30px;
    }
    .firstconcert_date .sunday {
        font-size: 16px;
    }
    
}

/* NEWSセクション */
.top_news {
    margin-bottom: 200px;
}

.top_news .wrapper {
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

.top_news_list {
    width: 55%;
}

.top_news_list_ttl {
    display: flex;
    align-items: center;
    background-color: var(--color-base);
    position: relative;
    margin-bottom: 2em;
}

.top_news_list_ttl h1 {
    display: inline-block;
    color: var(--color-yellow);
    font-family: var(--fontfamily-en);
    font-size: 72px;
    margin-right: .5em;
}

.top_news_list_ttl .sec_ttl::after {
    content: '';
    width: 2.5em;
    display: inline-block;
    border: 1px solid var(--color-yellow);
    position: absolute;
    top: 50%;
    margin-left: 1em;
}

.top_news_list ul li {
    display: flex;
    align-items: center;
    gap: 2em;
    padding: .8em 0;
    border-bottom: 1px solid var(--color-yellow);
    font-family: var(--fontfamily-en);
}

.news_new {
    display: inline-block;
    background-color: var(--color-pink);
    border-radius: 10px;
    padding: .2em .5em;
}

@media (max-width: 767px) {
    .top_news .wrapper {
        flex-direction: column;
        gap: 80px;
        align-items: center;
        padding: 0;
    }
    .top_news_list_ttl {
        margin-bottom: 1em;
    }
    .top_news_list_ttl h1 {
        font-size: 55px;
    }
    .top_news_list {
        width: 100%;
    }
    
}
@media (max-width: 475px) {
    .top_news_list_ttl h1 {
        font-size: 40px;
    }
    .top_news_list ul li {
        flex-wrap: wrap;
        gap: 1em;
    }
}

/* aboutセクション */
.top_about {
    margin-bottom: 300px;
}

.top_about .wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 30px;
    border: 2px solid var(--color-blue);
}

.top_about_main {
    width: 50%;
    position: relative;
}

.top_about_ttl {
    display: flex;
    align-items: center;
    margin-bottom: 2em;
    position: relative;
}

.top_about_ttl h1 {
    display: inline-block;
    color: var(--color-blue);
    font-family: var(--fontfamily-en);
    font-size: 72px;
    margin-right: .5em;
}

.top_about_ttl .sec_ttl::after {
    content: '';
    width: 2.5em;
    display: inline-block;
    border: 1px solid var(--color-blue);
    position: absolute;
    top: 50%;
    margin-left: 1em;
}

.top_about_txt {
    line-height: 1.7;
}

.aboutmore_btn {
    display: inline-block;
    color: white;
    font-weight: bold;
    background-color: var(--color-blue);
    border-radius: 10px;
    padding: .5em 2em .5em 1.5em; 
    position: absolute;
    bottom: 0;
    right: 0;
}

.top_about_img {
    width: 45%;
}

@media (max-width: 767px) {
    .top_about .wrapper {
        flex-direction: column;
        gap: 2em;
        align-items: center;
        padding: 20px;
    }
    .top_about_main {
        width: unset;
    }
    .top_about_ttl {
        margin-bottom: 1em;
    }
    .top_about_ttl h1 {
        font-size: 55px;
    }
    .aboutmore_btn {
        float: right;
        bottom: -3em;
    }
    .top_about_img {
        width: 100%;
        margin-top: 3em;
    }
}
@media (max-width: 475px) {
    .top_about_ttl h1 {
        font-size: 40px;
    }
}

/* JOINセクション */
.join {
    margin: 200px 0;
    font-weight: bold;
}

.join_box {
    border: 2px solid var(--color-pink);
    padding: 60px 40px;
    position: relative;
    width: 100%;
}

.join_outttl {
    display: inline-block;
    position: absolute;
    top: -1em;
    background-color: var(--color-base);
    color: var(--color-pink);
    font-size: 26px;
    padding: 0 .5em;
}

.join_outttl::before, .join_outttl::after {
    content: "";
    display: inline-block;
    width: 2px;    
    height: 1.25em;
    background-color: var(--color-pink);
}
.join_outttl::before {
    margin-right: 1em;
    transform: rotate(-30deg);
}
.join_outttl::after {
    margin-left: 1em;
    transform: rotate(30deg);
}


.join_main {
    display: flex;
    justify-content: space-between;
}

.join_copy h1{
    color: var(--color-pink);
    display: inline-block;
    font-family: var(--fontfamily-en);
    font-size: 72px;
    margin-bottom: .25em;
}

.join_copy p {
    font-size: 22px;
}

.join_icons {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.join_icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.join_icon img {
    width: 100px;
}

@media (max-width: 1024px) {
    .join_box {
        padding: 50px 30px;
    }
    .join_icons {
        gap: 30px;
    }
    .join_icon img {
        width: 80px;
    }
}
@media (max-width: 767px) {
    .join_main {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .join_copy {
        text-align: center;
    }
    .join_copy h1 {
        margin-bottom: 0;
    }
}
@media (max-width: 600px) {
    .join_box {
        padding: 30px;
    }
    .join_outttl {
        font-size: 20px;
    }
    .join_copy h1 {
        font-size: 60px;
    }
    .join_icons {
        gap: 20px;
    }
    .join_icon span {
        font-size: 14px;
    }
    .join_icons {
        flex-wrap: wrap;
    }
}
@media (max-width: 475px) {
    .join_outttl {
        font-size: 15px;
    }
    .join_copy h1 {
        font-size: 50px;
    }
    .join_copy p {
        font-size: 18px;
    }
}



/* フッター */
.sns_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    margin-top: 180px;
}
.sns_logo a {
    width: 5%;
}
.sns_logo a:hover {
    opacity: .5;
}

.ft_coin {
    margin: 80px auto 50px;
}

.ft_chara {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.ft_chara img:nth-child(1) {
    width: 20%;
}
.ft_chara img:nth-child(2) {
    width: 50%;
}
.ft_chara img:nth-child(3) {
    width: 20%;
}

.ft_bg {
    width: 100%;
    height: 200px;
    background-image: url(../images/footer_bg.jpg);
    background-repeat: repeat-x;
    background-position: top;
    background-size: contain;
}

@media (max-width: 767px) {
    .sns_logo {
        gap: 80px;
    }
    .sns_logo a {
        width: 35px;
    }
    .ft_bg {
        height: 100px;
    }
}

@media (max-width: 475px) {

}

/* ==========
 ABOUTページ 
 ============*/

.about {
    margin-top: 200px;
}

.about_head {
    text-align: center;
    margin-bottom: 100px;
}

.h1_sub {
    display: inline-block;
    font-weight: bold;
    font-size: 20px;
    margin: 1em auto 3em;
    position: relative;
}

.h1_sub::before, .h1_sub::after {
    display: inline-block;
    content: "";
    position: absolute;
    top: 50%;
    width: 2em;
    border: 1px solid var(--color-blue);
}

.h1_sub::before {
    left: -3em;
}

.h1_sub::after {
    right: -3em;
}



.head_txt {
    width: 50%;
    margin: 0 auto;
    line-height: 2;
    text-align: left;
}

.about_head h1{
    color: var(--color-blue);
    font-size: 70px;
    font-family: var(--fontfamily-en);
    text-align: center;
}



.timeline_ttl {
    color: var(--color-yellow);
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3em;
}

.timeline {
    width: 60%;
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
}

.timeline li {
    display: flex;
    gap: 60px;
}

.timeline_date {
    letter-spacing: .2em;
    min-width: 5em  ;
}

.timeline_txt {
    border-left: 1px solid var(--color-yellow);
    padding-left: 60px;
    position: relative;
}

.born {
    padding-left: 60px;
    position: relative;
}
.born::after {
    content: "";
    width: 100%;
    height: 80%;
    border-left: 1px solid var(--color-yellow);
    position: absolute;
    left: 0;
    bottom: 0;
}

.timeline_txt::before, .born::before {
    content:'\f005';
    font-family: 'Font Awesome 5 Free';
    color: var(--color-yellow);
    position: absolute;
    left: -.59em;
}

.born, .timeline_txt {
    padding-bottom: 2.5em;
}

.future {
    color: #5e5e5e;
}

.continue_box {

}

.continue {
    display: inline-block;
    color: var(--color-yellow);
    font-family: var(--fontfamily-en);
    font-size: 18px;
    margin-left: 6em;
}

.TextTyping span {
	display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
 	content: "|";
	animation: typinganime .8s ease infinite;
}

@keyframes typinganime{
	from{opacity:0}
	to{opacity:1}
}

@media (max-width: 1024px) {
    .about, .contact {
        margin-top: 150px;
    }
    .head_txt, .timeline {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .about_head h1 {
        font-size: 55px;
    }
    .timeline {
        font-size: 16px;
    }
    .timeline li {
        gap: 30px;
    }
    .born, .timeline_txt {
        padding-left: 30px;
    }
    .continue {
        font-size: 14px;
    }
}

/* ========
お問い合わせページ
===========*/
.contact {
    margin-top: 200px;
}

.contact_head {
    text-align: center;
    margin-bottom: 100px;
}

.contact_head .h1_sub::before, .contact_head .h1_sub::after {
    border-color: var(--color-pink);
}

.contact_head h1{
    color: var(--color-pink);
    font-size: 70px;
    font-family: var(--fontfamily-en);
    text-align: center;
}

.contact_head .head_txt {
    text-align: center;
}

/* .form_body {
    width: 50%;
    margin: 0 auto;
    line-height: 2;
    font-weight: bold;
}

.form_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2em;
}

input, textarea {
    background-color: #fff;
    width: 60%;
    border-radius: 6px;
    padding: 0 .5em;
}

.submit_btn button {
    color: #fff;
    background-color: var(--color-pink);
    border-radius: 10px;
    padding: .5em 1.5em;
    float: right;
} */

.contact_body {
    text-align: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.contact_body iframe {
    width: 100%;
    height: 1000px;
}

@media (max-width: 767px) {
    .contact_head h1 {
        font-size: 55px;
    }
    .contact_body iframe {
        height: 1100px;
    }
}
