@charset "utf-8";

/*========================
リセットCSS
=========================*/
html, body, div, span, object, iframe,
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 {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
p, dd {
    font-size: 14px;
    line-height:1.8;
}
li {
    font-size: 14px;
    line-height:1.8;
    list-style: none;
}
.list-style li {
    list-style: disc;
}
.list-style {
    padding-left :1rem;
    margin-bottom: 20px;
}

/*================================================
共通
=================================================*/
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family:
    'YuMincho',  /* Mac用 */
	'Yu Mincho', /* Windows用 */
    'Times New Roman',
     Times,
     serif;
     margin: 0;
     letter-spacing: 0.1em;
     background-color: #ffffff;
     background-image: url("https://www.transparenttextures.com/patterns/otis-redding.png");
     overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}
.mv_area {
    text-align:center;
    margin: 0 auto;
    overflow: hidden;
}
.mv_text {
    width: 100px;
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0.9;
}
h2 {
    position: relative;
    text-align: center;
    font-weight: 500;
    margin-top: 100px;
    margin-bottom: 50px;
}
h2::after {
    background-image: url(../images/common/ttl_bg.webp);
    background-size: 16%;
    background-repeat:no-repeat;
    content: '';
    display: inline-block;
    position: absolute;
    z-index: -1;
    width: 150px;
    height: 14px;
    top: 35px;
    left: 43%;
    animation: bg 1.2s cubic-bezier(0.83, 0, 0.17, 1) forwards;
    transition: transform ;
    transform-origin: left center;
}
@keyframes bg {
    0% {
      width: 0%
    }
    100% {
      width: 100%;
    }
  }
h2.bf_area::after {
    background-image: url(../images/common/ttl_bg_big.webp);
    background-size: 20%;
    left: 40%;
}
h3 {
    text-align: center;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 50px;
}
h4 {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 50px;
}
.section_h2 {
    margin-top: 150px;
}
.section_h3 {
    margin-top: 150px; 
}
.section_h3:first-of-type {
    margin-top: 100px;
}
.section_h4 {
    margin-top: 100px;
}
@media screen and (max-width: 767px) {
    h2 {
        margin-top: 40px;
    }
    .mv_area {
        height: 100vh;
    }
    h3 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    h3.h3-m-no {
        margin-top: 30px;
    }
    .section_h2 {
        margin-top: 0px;
    }
    h2::after {
        background-size: 110px;
        width: 110px;
        height: 12px;
        top: 35px;
        left: 36%;
    }
    h2.bf_area::after  {
        background-size: 50%;
        left: 25%;
    }
    .section_h3 {
        margin-top: 100px; 
    }
    .section_h3:first-of-type {
        margin-top: 50px;
    }
    .section_h4 {
        margin-top: 100px;
    }
}
.text {
    width:780px; 
    margin: 0 auto;
    line-height: 2;
}
a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
a:visited {
    color: #000;
}
a:hover::after {
    transform: scale(1,1);
}
a.txt-white {
    color: #fff;
}
.txt_link {
    padding-bottom: 10px; /* テキストと下線の間隔 */
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
    transition: background-size 0.3s;
}
.txt_link:hover {
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 1px; /* 下線の横幅を100%にする */
}
.all {
    width: 80%;
    max-width: 980px;
    margin:0 auto;
    margin-bottom: 100px;
}
.notice {
    font-size: 12px;
}
.gmap_iframe {
    width: 100%;
}
/*ローディング画面*/
#loading {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
}
.spinner {
    width: 40px;
    height: 40px; 
    position: relative;
    margin: 100px auto;
}
.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}
.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bounce {
    0%, 100% { 
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% { 
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
}
.loaded {
    opacity: 0;
    visibility: hidden;
}

/*========================
Flex類
========================*/
.flex_box,
.flex_box-smt {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.flex_box.col-2, 
.flex_box.col-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.col-2 .flex-item,
.col-2-smt .flex-item-smt {
    width: 48%;
}
.col-3 .flex-item,
.col-3-smt .flex-item-smt {
    width: 31%;
}
.col-2 .flex-item:nth-child(n+3),
.col-3 .flex-item:nth-child(n+4),
.col-2-smt .flex-item-smt:nth-child(n+3),
.col-3-smt .flex-item-smt:nth-child(n+4)  {
    margin-top: 80px;
}
.flex-item {
    width: 48%;
}
.kigan_box {
    display: flex;
}
.kigan_box_left {
    margin-right: 50px;
    width: 50%;
}
.kigan_box_right {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .col-2,
    .col-3,
    .col-3-2 {
        width: 100%;
        margin: 0 auto 0;
    }
    .flex_box.col-2 {
        display: block;
    }
    .col-2 .flex-item,
    .col-3 .flex-item {
        width: 100%;
    }
    .text {
        width:100%;
    }
    .flex_box {
        display: block;
    }
    .flex-item {
        width: 100%;
    }
    .flex-item:nth-child(n+2) {
        margin-top: 50px;
    }
    .kigan_box {
        display: block;
    }
    .kigan_box_left,
    .kigan_box_right {
        margin-right: 50px;
        width: 100%;
    }
}

/*========================
ヘッダー／フッター
=========================*/
/* ヘッダーエリア*/
.header_logo {
    width: 100px;
} 
.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #031900;
    padding: 5px 25px 0px 50px;
} 
@media screen and (max-width: 800px) {
    .header_wrapper {
        padding: 5px 25px 0px 25px;
    }
}
.nav_wrapper {
    display: flex; 
}
.nav_box {
    display: flex;
}
.nav_box a {
    color: #fff;
}
.nav_box_right {
    margin-top: -15px;
}
.tel {
    color: #000;
    background-color: #DECD3A;
    border: solid 1px #DECD3A;
    border-radius: 30px;
    padding: 3px 10px 0;
    margin-right: 10px;
}
.tel .tel-txt {
    font-size: 10px;
}
.nav__item a {
    display: block;
    padding: 1.5rem 1rem; 
}
.insta_txt {
    font-size: 10px;
    color: #fff;
    padding-bottom: 4px;
    text-align: center;
    margin-left: 12px;
}
.slash {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.slash::before,
.slash::after {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #fff;
    margin: 0px 5px 0px 0px;
}
.slash::before {
    transform: rotate(60deg);
}
.slash::after {
    transform: rotate(-60deg);
}
/* ハンバーガーメニュー*/
@media (max-width: 768px) {
    .nav_smt {
    background-color: #031900;
    display: block;
    position: fixed;
    top: 0;
    left: -80%;
    bottom: 0;
    width: 80%;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
    }
    .open .nav_smt {
    left: 0;
    opacity: 1;
    }
    .nav_smt .inner {
    padding: 35px 25px;
    }
    .nav_smt .inner_top {
    width: 50%;
    margin-bottom: 30px;
    }
    .nav_smt .inner_btm {
    display: flex;
    position: absolute;
    bottom: 10%;
    }
    .nav_smt .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }
    .nav_smt .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #fff;
    }
    .nav_smt .inner ul li a {
    display: block;
    color: #fff;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
    }
    .nav_smt .inner ul li a:hover {
    background: #333;
    opacity: 0.7;
    }
    /*============
    .toggle_btn
    =============*/
    .toggle_btn {
    display: block;
    position: fixed;
    top: 2%;
    right: 4%;
    width: 45px;
    height: 45px;
    transition: all .5s;
    cursor: pointer;
    z-index: 100;
    background-color: #031900;
    border-radius: 30px;
    }
    .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .5s;
    }
    .toggle_btn span:nth-child(1) {
    top: 29%;
    left: 22%;
    }
    .toggle_btn span:nth-child(2) {
    top: 49%;
    left: 22%;
    }
    .toggle_btn span:nth-child(3) {
    top: 68%;
    left: 22%
    }
    .open .toggle_btn span {
    background-color: #fff;
    }
    .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(8px) rotate(-315deg);
    }
    .open .toggle_btn span:nth-child(2) {
    opacity: 0;
    }
    .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
    }
      /*============
      #mask
      =============*/
      #mask {
        display: none;
        transition: all .5s;
      }
      .open #mask {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .8;
        z-index: 2;
        cursor: pointer;
      }
}
/*フッターエリア*/
footer {
    background-color: #031900;
    padding: 100px 50px 30px;
    /*border-top:solid #642205 4px;*/
}
footer p,
footer address {
    color: #DECD3A;
    font-style: normal;
}
footer .footer_inner {
    max-width: 980px;
    margin: 0 auto;
}
footer .footer_logo {
    display: block;
    width: 300px;
    margin: 0 auto;
}
footer .footer_btm {
    margin-top: 50px;
}
footer .footer_btm .footer_btm_r {
    min-width: 25%;
}
footer .flex_box.flex_box_icon {
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 10px;
}
footer .flex_box.flex_box_icon img {
    margin: 0;
}
.copyright {
    text-align: right;
}
@media (max-width: 768px) {
    footer .footer_logo {
        display: block;
        width: 60%;
        margin: 0 auto;
    }
    footer .footer_btm {
        margin: 50px auto 0;
        text-align: center;
    }
    footer .footer_btm .footer_btm_r {
        width: 100%;
    }
    footer .flex_box.flex_box_icon {
        display: flex;
        justify-content: space-between;  
        width: 130px;
        margin: 20px auto 80px;
    }
    .copyright {
        text-align: center;
    }
}

/*=======================================
TOPページ
========================================*/
.mv_area {
    position: relative;
    font-size: 0;
}
.mv_movie {
    width: 100vw;
}
.mv_logo {
    position: absolute;
    width: 300px;
    bottom: 20%;
    left: 10vw;
}
@media (max-width: 768px) {
    .mv_movie {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }
    .mv_logo {
        width: 50vw;
        bottom: 20%;
        left: 26vw;
    }
}
.scroll {
    align-items: center;
    color: #fff;
    display: flex;
    gap: 16px;
    left: 95%;
    bottom: 70px;
    line-height: 1;
    mix-blend-mode: lighten;
    position: absolute;
    transform: rotate(90deg) translate(-50%);
    transform-origin: 0 0;
    z-index: 10;
    font-size: 14px;
}
.scroll:after {
    background: currentColor;
    content: "";
    display: block;
    flex: 0 0 auto;
    height: 1px;
    width: 95px;
    animation: bg 1.5s infinite;
}
/*バナーエリア*/
.img_bnr_box {
    background: #111;
    overflow: hidden;
}
.img_bnr_img {
    transform: scale(1,1);
    transition: 1.5s;
}
.img_bnr_box:hover .img_bnr_img {
    opacity: 0.5;
    transform: scale(1.1,1.1);
    transition: 1.5s;
}
.bnr_box {
    position: relative;
}
.bnr_txt {
    position: absolute;
    color: #fff;
    font-size: 25px;
    top:41%;
    right: 0;
    left: 0;
    text-align: center;
}
.bnr_txt.bnr_txt_insta {
    top: 33%;
}
.sub_txt {
    font-size: 12px;
}
/*他ページ*/
.bnr_area {
    width: 80%;
    max-width: 980px;
    margin: 0 auto 200px;
    position: relative;
}

/*------------------------------------------
ABOUTエリア
------------------------------------------*/
.about_txt {
    margin-bottom: 50px;
}
.about_me_box {
    width: 80%;
    margin: 0 auto;
    position: relative;
    text-align: center;
}
.name_box {
    position: absolute;
    top:50%;
    left: 24%;
    transform: translate(-50%,-50%);
    width: 40%;
    padding-left: 30px;
}
.name_jp {
    color: #fff;
    font-size: 20px;
}
.name_en {
    color: #FFE92F;
    font-size: 50px;
    line-height: 1;
    font-family: "Abril Fatface", serif;
}
.name_about {
    color: #fff;
    margin-top: 20px;
}
/*後でクラス名変えて整える*/
.dlBlock {
    position: relative;
}
.dlBlock:before {
    position: absolute;
    display: block;
    content: "";
    background: #ccc;
    width: 1px;
    height: 100%;
    z-index: -1;
    top: 12px;
    left: 66px;
}
.dlBlock .dlInner {
    display: flex;
    align-items: flex-start;/*なくても問題ない？？*/
    padding-bottom: 40px;
}
.dlBlock dt {
    position: relative;
    color: #1b2680;
    line-height: 1;
    box-sizing: border-box;
    word-break: break-all;
    width: 70px;
    padding-right: 15px;
    font-size: 18px;
}
.dlBlock dt:before {
    position: absolute;
    display: block;
    content: "";
    top: .5em;
    right: 0;
    width: 7px;
    height: 7px;
    background: #1b2680;
    border-radius: 50%;
    transform: translateY(-50%);
}
.dlBlock dd {
    line-height: 1.5;
    flex: 1;
    margin-left: 50px;
}
@media (max-width: 768px) {
    .about_me_box {
        width: 100%;
    }
    .about_me_box .name_box .name_jp {
        color: #fff;
        font-size: 15px;
    }
    .about_me_box .name_box .name_en {
        color: #FFE92F;
        font-size: 35px;
        line-height: 1.2;
    }
    .about_me_box .name_box .name_about {
        display: none;
    }
    .timeline_box {
        margin-top: 30px;
    }
}
/*------------------------------------------
menuエリア
------------------------------------------*/
.menu_area .kigan_box {
    display: flex;
    margin-bottom: 20px;
}
.kigan_box_left {
    margin-right: 50px;
    width: 50%;
}
.kigan_box_right {
    width: 50%;
}
@media screen and (max-width: 768px) {
    .menu_area h4 {
        margin-top: 25px;
        margin-bottom: 30px;
    }
    .menu_area .kigan_box {
        display: block;
        margin-bottom: 50px;
    }
    .kigan_box_left,
    .kigan_box_right {
        margin-right: 50px;
        width: 100%;
    }
    .kigan_box_right {
        margin-bottom: 80px;
    }
}

/*------------------------------------------
before_afterエリア
------------------------------------------*/
.hover_mask_box {
    position: relative;
}
.hover_mask {
    opacity: 0;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; 
    text-align: center;
    transition:all 0.6s ease; 
}
.hover_mask:hover {
    opacity: 1;  //この切替で表示非表示（表示状態）
}
.tap_item {
    display: none;
}
@media (max-width: 768px) {
    .bf_area {
        margin-bottom: 80px;
    }
    .tap_item {
        display: block;
        text-align: center;
        position: absolute;
        top: -6%;
        left: 43%;
        animation: updown 3s ease-in-out infinite;
    }
    @keyframes updown {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20%);
        }
        100% {
            transform: translateY(0);
        }
    }
}

/*ここからモーダル*/
/*モーダルを開くボタン*/
.modal-open {
	cursor: pointer;
    position: relative;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}
.modal-img {
    width: 50%;
    margin-bottom: 30px;
}
.modal-txt{
    width:90%;
    text-align: center;
    margin: 0 auto 50px;
}
.js-modal-close {
    display: block;
    text-align: center;
}
@media (max-width: 768px) {
    .modal-img {
        width: 100%;
    }
}

/*============
汎用CSS
=============*/
.inline {
    display: inline !important;
}
.only_smt {
    display:none!important;
}

@media (max-width: 768px) {
    .only_pc {
        display: none;
    }
    .only_smt {
        display: block!important;
    }
}

/*text-align*/
.ta-l {
    text-align: left;
}
.ta-c {
    text-align: center;
}
.ta-r {
    text-align: right;
}

/*マージン*/
.mt-20 { 
    margin-top: 20px;
}
.mt-30 { 
    margin-top: 30px;
}
.mt-40 { 
    margin-top: 40px;
}
.mt-80 { 
    margin-top: 80px !important;
}
.mt-pc100-smt40 {
    margin-top: 100px;
}
.mt-pc40-smt20 {
    margin-top: 40px;
}
.mt-pc80-smt40 {
    margin-top: 80px;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-80 {
    margin-bottom: 80px !important;
}
.mb-150 {
    margin-bottom: 150px;
}
.mr-10 {
    margin-right: 10px !important;
}
.mr-15 {
    margin-right: 15px !important;
}
.mr-20 {
    margin-right: 20px !important;
}
@media screen and (max-width: 767px) {
    .mt-pc40-smt20 {
        margin-top: 20px !important;
    }
    .mt-pc80-smt40 {
        margin-top: 5% !important;
    }
    .mt-smt80 {
        margin-top: 80px !important;
    }
    .mt-pc100-smt40 {
        margin-top: 40px !important;
    }
    
  }

