@charset "UTF-8";

/* -----------------------------
    変数定義
----------------------------- */
:root {
    /* カラー */
    --color-black: #171717;
    --color-white: #f5f5f5;
    --color-gray: #5d5d5c;
    
    /* レイアウト */
    --width-content: 1200px;
    --width-narrow: 770px;
    --space-unit: 15px;
    --space-section: 45px;
    
    /* その他 */
    --duration: 0.7s;
}

/* -----------------------------
    ベース
----------------------------- */
html {
    overflow-x: hidden;
}

body {
    font-family: "Noto sans JP", sans-serif;
    overflow-x: hidden;
    line-height: 1.75;
}

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

/* -----------------------------
    レイアウト
----------------------------- */
.wrapper {
    width: var(--width-content);
    margin: 0 auto;
    position: relative;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}

/*PC・SP表示切り替え
--------------------------------*/

.sp {display: block;}

.pc {display: none;}

@media screen and (min-width:768px) {
    .sp {display: none;}
    
    .pc {display: block;}
}

/* -----------------------------
    共通コンポーネント
----------------------------- */
.nav-link {
    font-size: 20px;
    color: var(--color-white);
    font-family: 'Times New Roman', serif;
}

h2 {
    font-size: 48px;
    color: var(--color-white);
    font-family: 'Times New Roman', serif;
    text-align: center;
    padding-top: 100px;
    padding-bottom: var(--space-section);
    border-bottom: 1px solid var(--color-white);
}

.sec02-ttl-01 {
    font-size: 48px;
    color: var(--color-black);
    font-family: 'Times New Roman', serif;
    text-align: center;
    padding-top: 100px;
    padding-bottom: var(--space-section);
    border-bottom: 1px solid var(--color-black);
}

h3 {
    font-size: 24px;
    color: var(--color-black);
    text-align: center;
    padding-bottom: var(--space-unit);
}

h4 {
    font-size: 20px;
    color: var(--color-black);
    text-align: center;
    font-family: 'Times New Roman', serif;
    padding-bottom: var(--space-section);
}

.list-ttl {
    font-size: 20px;
    color: var(--color-black);
    text-align: left;
}

.lead {
    font-size: 16px;
    color: var(--color-black);
    line-height: 1.333;
    text-align: left;
}

.text {
    padding-bottom: 30px;
}

a:hover {
    color:var(--color-black);
    opacity: .7;
}

/* ボタン共通 */
.btn {
    display: block;
    text-align: center;
    font-weight: bold;
    transition: all var(--duration);
    margin: 0 auto;
}

/* ホバー制御 */
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .pagetop a:hover {
        opacity: 0.7;
    }
}

@media (hover: none) or (pointer: coarse) {
    /* タッチデバイスでの即時反応 */
    .btn-primary:active,
    .btn-secondary:active,
    .pagetop a:hover {
        opacity: 1;
    }
}

/* -----------------------------
    ヘッダー
----------------------------- */
/* ロゴ */
.logo {
    width: 250px;
    text-align: left;
    line-height: 0;
} 

/*ナビゲーション*/
.nav-list {
    position: fixed;
    writing-mode: vertical-rl;
    display: flex;
    gap: 2.5rem;
    border-left: 1px solid var(--color-white);
    mix-blend-mode:difference;
}

.header-inner {
    display: flex;
    justify-content: space-between;
}

/* キャッチコピー */
.text-box {
    display: grid;
    place-items: center;
    height: 100vh;
    position: absolute;
    right: 50%;
}

.vertical {
    font-family: "Zen Antique Soft", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 80px;
    color: var(--color-white);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    animation-name: textanime;/*keyname*/
    animation-duration:3s;/*最大再生時間*/
    animation-fill-mode: forwards;/*表示を固定*/
}

.text-01 {
    font-size: 50px;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    animation-name: textanime;/*keyname*/
    animation-duration:5s;/*最大再生時間*/
    animation-fill-mode: forwards;/*表示を固定*/
}

.text-02 {
    font-size: 50px;
    padding-top: 80px;
    padding-left: 20px;
    animation-name: textanime;/*keyname*/
    animation-duration:5s;/*最大再生時間*/
    animation-fill-mode: forwards;/*表示を固定*/
}

.text-03 {
    font-size: 50px;
    padding-top: 110px;
    padding-left: 20px;
    animation-name: textanime;/*keyname*/
    animation-duration:5s;/*最大再生時間*/
    animation-fill-mode: forwards;/*表示を固定*/
}

@keyframes textanime{
    0%{
    opacity: 0;/* 最初は透明 */
    }

    100%{
    opacity: 1;/* 最後は完全に表示 */
    }
}

/* -----------------------------
    メインビジュアル
----------------------------- */
.header {
    background: rgba(23, 23, 23, .4);
}

/* ----- 背景用の動画ファイル ----- */
.video-section {
    position: fixed;
    z-index: -100;
}

.video-section video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* ----- 背景の上に表示させたいコンテンツ ----- */
.header-logo{
    position: relative; /*必ず必要*/
    z-index: 2; /*必ず必要*/
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* width: 100%; */
    padding-top: 45px;
}

.menu {
    position: relative; /*必ず必要*/
    z-index: 2; /*必ず必要*/
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* width: 100%; */
    padding-top: 25px;
}

.header-title{
    position: relative; /*必ず必要*/
    z-index: 2; /*必ず必要*/
    display: flex;
    justify-content:center;
    padding-top: 10%;
}

/* -----------------------------
    アバウト
----------------------------- */
.about-map {
    padding-top: 80px;
    width: 500px;
    padding-bottom: var(--space-section);
}

.about {
    font-size: 24px;
    color: var(--color-white);
    font-family:"Noto sans JP", sans-serif;
    text-align: left;
    padding-bottom: var(--space-section);
    background-color: rgba(23, 23, 23, .4);
}

.about-text {
    display: grid;
    text-align: justify;
    justify-items: center;
    padding-top: 40px;
    padding-bottom: var(--space-section);
}

.about-text p {
    max-width: 75%;
}

/* -----------------------------
    index セクション01
----------------------------- */
.container {
    display: grid;
    place-items: center;
    position: relative;
}

.container > div {
    padding-bottom: var(--space-section);
    width: 100%;
}

.index .sec-01 iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
}

.sec-01 {
    background-color: rgba(23, 23, 23, .8);
    padding-bottom: var(--space-section);
}

.sec-01 .wrapper {
    background-position: center;
    padding-bottom: var(--space-section);
}

.sec-01 .container {
    display: grid;
    grid-template-columns: repeat(3,1fr) ;
    gap: 15px;
    align-items: center;
    padding-top: 40px;
    width: 100%;
}

/* -----------------------------
    index セクション02
----------------------------- */
.sec-02 {
    background-color: rgba(255, 255, 255, .6);
    padding-bottom: var(--space-section);
}

.sec-02 .wrapper {
    background-position: center;
    padding-bottom: var(--space-section);
}

.sec-ttl-02 {
    padding-top: 40px;
    background-color: rgba(255, 255, 255, .6);
}

.sec-ttl-03 {
    background-color: rgba(255, 255, 255, .6);
}

.lead {
    display: grid;
    justify-content: space-around;
    padding-bottom: var(--space-section);
    border-bottom: 1px solid var(--color-black);
    background-color: rgba(255, 255, 255, .6);
}

.sec-02 ul {
    list-style: disc;
}

/* -----------------------------
    profile セクション
----------------------------- */
.header-profile {
    background: rgba(23, 23, 23, .4);
}

.profile-bg {
    position: fixed;
    z-index: -100;
}

.theme {
    font-size: 48px;
    color: var(--color-white);
    font-family: 'Times New Roman', serif;
    text-align: center;
    padding-top: 100px;
    padding-bottom: var(--space-section);
}

.profile {
    padding-bottom: var(--space-section);
    background: rgba(23, 23, 23, .4);
}

.profile-about {
    color: var(--color-white);
}

.profile-name {
    width: 50%;
    display: flex;
    margin-left: auto;
    padding-top: var(--space-section);
    padding-left: 45px;
    color: var(--color-white);

}

.profile-text {
    display: flex;
    margin-left: auto;
    padding: 45px;
    width: 50%;
}

.profile-item {
    width: 50%;
    display: flex;
    margin-left: auto;
    padding-left: 45px;
    padding-right: var(--space-section);
}

.footer-profile {
    padding: 45px 0 45px 0;
    background: rgba(23, 23, 23, .4);
}

body.page-id-62 .header {
    height: auto;
    background: rgba(23, 23, 23, .4);
}

/* -----------------------------
    portfolio セクション
----------------------------- */
.portfolio-about iframe {
    display: block;
    width: 100%;
    padding-bottom: var(--space-unit);
}

.header-portfolio {
    background-color: rgba(23, 23, 23, .8);
}

.portfolio {
    background-color: rgba(23, 23, 23, .8);
    padding-bottom: 100px;
}

.portfolio-about .container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    align-items: center;
    padding-top: 40px;
    width: 100%;
}

.portfolio-about .container > div {
    padding-bottom: var(--space-section);
    width: 100%;
}


.video-text {
    font-size: 20px;
    color: var(--color-white);
}

.footer-portfolio {
    padding: 45px 0 45px 0;
    background-color: rgba(23, 23, 23, .8);
}

body.page-id-11 .header {
    height: auto;
    background: rgba(23, 23, 23, .8);
}

body.page-id-11 .footer {
    height: auto;
    background: rgba(23, 23, 23, .8);
}

/* -----------------------------
    price セクション
----------------------------- */
.price {
    background: rgba(23, 23, 23, .6);
}
.price-bg {
    position: fixed;
    z-index: -100;
    
}

.header-price {
    background: rgba(23, 23, 23, .6);
}

.price-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    padding: 45px;
}

/* アイテム（囲み） */
.price-table-item {
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 1.25em 1.5em;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--color-white);
}

/* コース */
.price-table-course {
    color:var(--color-black);
    font-size: 24px;
    padding-bottom: var(--space-unit);
}

.eg-text {
    font-family: 'Times New Roman', serif; 
    padding-bottom: var(--space-section);
}

/* 価格 */
.price-table-price {
    font-family:"DIN Condensed", sans-serif;
    font-weight: 100;
    font-size: 3em;
    line-height: 1;
    padding-bottom: 15px;
}

.price-table-price > span {
    font-size: 50%;
    color: #737980;
    padding-left: 15px;
}

/* リスト */
ul.price-table-list {
    border-top: 1px solid #ddd;
    margin: 0 0 1em;
    padding: 30px 0 0;
    color: var(--color-gray);
}

ul.price-table-list li {
    padding: 0;
    list-style-type: disc;
    list-style-position: inside;
    padding-bottom: 15px;
}

span {
    color: var(--color-black);
}

/* ボタン */
.price-table-btn {
    margin-top: auto;
    margin-bottom: .5em;
    padding: 1em;
    width: 100%;
    border: none;
    border-radius: 5px;
    background-color: #b8c2cc;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

/* ボタン */
.price-table-btn:hover {
    background-color: #737980;
    cursor: pointer;
}

i {
    padding-top: 10px;
}

/* オプション */
.price-option {
    display: grid;
    padding: 0 45px 100px 45px;
}

.price-table-option {
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 1.25em 1.5em;
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
}

.footer-price {
    padding: 45px 0 45px 0;
    background: rgba(23, 23, 23, .6);
}

body.page-id-13 .header {
    height: auto;
    background: rgba(23, 23, 23, .6);
}

body.page-id-13 .footer {
    height: auto;
    background: rgba(23, 23, 23, .6);
}


/* -----------------------------
    contact セクション
----------------------------- */
.contact-bg {
    position: fixed;
    z-index: -100;
}

.header-contact {
    background: rgba(23, 23, 23, .6);
}

.contact {
    background: rgba(23, 23, 23, .6);
}

/* レイアウト用 */
.contact .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
}
.row-item {
    color: var(--color-white);
}

.contact-form-w100 {
    color: var(--color-white);
}

/* フォーム */
.contact-form {
    display: grid;
    padding: 45px 100px 100px 100px;
}

.contact-form-title {
    font-size: 1em;
    margin-bottom: 1em;
}

.contact-form p {
    color: var(--color-white);
    font-size: .9em;
}

.contact-form dl {
    margin: 0;
}

.contact-form dl dt {
    margin: 0 0 .5em;
}

.contact-form dl dd {
    margin: 0;
}

/* インプット */
.contact-form label {
    font-size: .9em;
}

.contact-submit {
    padding-bottom: 30px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    display: block;
    margin: .5em 0 1.5em;
    padding: 1em;
    width: 100%;
    background-color: #f2f6fa;
    line-height: 1.5;
    border-radius: 5px;
    color: black;
}

.contact-form textarea {
    height: 10em;
}

/* ボタン */
.contact-form input[type="submit"] {
    display: block;
    margin: 1em auto;
    padding: .75em 2em;
    border: none;
    border-radius: 5px;
    background-color: #b8c2cc;
    color: #fff;
}

.contact-form input[type="submit"]:hover {
    background-color: #737980;
    cursor: pointer;
}

/* 注意書き */
p.contact-form-caption {
    color: #737980;
    font-size: .8em;
    line-height: 1.3;
}

/* 会社情報 */
.contact-data {
    border-top: 1px solid #ddd;
    padding: 15rem 2em;
    text-align: center;
    color: white;
}

.contact-data ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-data ul li {
    display: inline;
}

.contact-data ul li:not(:last-child) {
    margin-right: .75em;
}

.footer-contact {
    padding: 45px 0 45px 0;
    background: rgba(23, 23, 23, .6);
}

body.page-id-15 .header {
    height: auto;
    background: rgba(23, 23, 23, .6);
}

body.page-id-15 .footer {
    height: auto;
    background: rgba(23, 23, 23, .6);
}


/* -----------------------------
    フッター
----------------------------- */
.footer {
    padding: 45px 0 45px 0;
    background: rgba(23, 23, 23, .4);
}

.footer-ttl {
    display: flex;
    justify-content: space-between;
}

.footer-nav-list {
    display: flex;
    text-align: center;
    color: var(--color-white);
    font-size: 2em;
}

.footer-nav ul li:not(:last-child) {
    margin-right: 1em;
}

.footer-copyright {
    display: grid;
    justify-items: center;
    width: auto;
    color: var(--color-white);
    font-size: .7em;
    padding-top: 40px;
}

/* -----------------------------
    レスポンシブ - タブレット
----------------------------- */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    /* .wrapper {
        width: 768px;
    } */

    .wrapper {
        width: 90%;
    }
    
    .video-section {
        height: 100vh;
    }
    
    .video-section video {
        height: 100vh;
    }
    
    .profile-bg img {
        height: 100vh;
    }
    
    .profile-bg {
        position: fixed;
        top: 0;
        left: -50%;
        right: -80%;
        height: 100%;
        object-fit: cover;
        z-index: -100;
    }
    
    .price-bg img {
        height: 100vh;
    }
    
    .contact-bg img {
        height: 100vh;
    }
}

/* -----------------------------
    レスポンシブ - スマートフォン
----------------------------- */
@media screen and (max-width:767px) {
.wrapper {
    width: 100%;
}

.header {
    /* height: 100vh; */
    background: rgba(23, 23, 23, .4);
}

.logo {
    width: 200px;
}

.video-section {
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -100;
}

.video-section > video {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}

/*ハンバーガーメニュー*/
/*ボタン*/
*, *:before, *:after 
{ box-sizing: border-box; }

html { font-size: 1.5rem; }

label .menu {
    position: fixed;
    right: -85px;
    top: -75px;
    z-index: 100;
    width: 200px;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

label .hamburger {
    position: absolute;
    top: 135px;
    left: 50px;
    width: 30px;
    height: 2px;
    background-color: #c7c7c7;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

label .hamburger:after {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #c7c7c7;
    bottom: -10px;
}

label .hamburger:before {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: -10px;
    background-color: #c7c7c7;
}

label input { display: none; }

label input:checked + .menu {
    box-shadow: 0 0 0 100vh var(--color-white);
}

label input:checked + .menu .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: var(--color-gray);
}

label input:checked + .menu .hamburger:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 0;
    background-color: var(--color-gray);
}

label input:checked + .menu .hamburger:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
}

label input:checked + .menu + ul {
    opacity: 1; 
    visibility: visible;
}

label ul {
    z-index: 200;
    position: absolute;
    top: 40%;
    left: 40%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
}

.nav-list {
    margin: 0;
    padding: 45px 0 0 75px;
    height: 100%;
    gap: .5rem;
    display: flex;
    writing-mode: horizontal-tb;
    flex-direction: column;
    justify-content: center;
    
    list-style-type: none;
    border-left: none;
    visibility: hidden;
}

.nav-link {
    font-size: 1.5rem;
}

/* キャッチコピー */
.header-title{
    padding-top: 30%;
}
.vertical {
    font-size: 60px;
}

.text-01 {
    font-size: 30px;
    padding-top: 50px;
    padding-left: 0;
}

.text-02 {
    font-size: 30px;
    padding-left: 0;
}

.text-03 {
    font-size: 30px;
    padding-left: 20px;
}

/* アバウト */
.about-text p {
    max-width: 75%;
    font-size: 18px;
}

/* セクション01 */
.sec-01 .container {
    grid-template-columns: repeat(2,1fr) ;
}

/* セクション02 */
.sec-02 {
    background-color: rgba(255, 255, 255, .8);
}

.sec-ttl-02,.sec-ttl-03 {
    background-color: transparent;
}

.lead {
    background-color: transparent;
    padding: 15px 15px 45px;
}

/* フッター */
.footer-nav-list {
    color: var(--color-white);
    font-size: 1.5rem;
}

.footer-nav ul li:not(:last-child) {
    margin-right: .3em;
}

.footer-copyright {
    font-size: .4em;
}

/* profile */
body.page-id-9 .header {
    height: auto;
    background: rgba(23, 23, 23, .6);
}

body.page-id-9 .footer {
    height: auto;
    background: rgba(23, 23, 23, .6);
}

.header-profile {
    background: rgba(23, 23, 23, .6);
}

.sp-profile-bg {
    
}

.theme {
    font-size: 48px;
    color: var(--color-white);
    font-family: 'Times New Roman', serif;
    text-align: center;
    padding-top: 100px;
    padding-bottom: var(--space-section);
}

.profile {
    padding-bottom: var(--space-section);
    background: rgba(23, 23, 23, .6);
}

.profile-about {
    color: var(--color-white);
}

.profile-name {
    width: 100%;
    display: block; 
    padding: 0;
    padding-top: var(--space-section);
    color: var(--color-white);
}

.profile-text, .profile-item {
    width: 100%;
    font-size: 18px;
}

.footer-profile {
    background: rgba(23, 23, 23, .6);
}


/* portfolio */
.portfolio-about .container {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 15px;
    align-items: center;
    padding-top: 40px;
    width: 100%;
}

/* price */
.price-table {
    padding: 45px 15px 15px 15px;
}

/* コース */
.price-table-course {
    padding-bottom: 0;
}

.eg-text {
    padding-bottom: var(--space-section);
}

/* 価格 */
.price-table-price {
    font-size: 1.8rem;
}

.price-table-price > span {
    font-size: 30%;
}

/* リスト */
ul.price-table-list li {
    font-size: 16px;
}

/* オプション */
.price-option {
    padding: 0 15px 45px 15px;
}

/* contact */
.contact .row {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
}
/* フォーム */
.contact-form {
    display: grid;
    padding: 45px 15px 15px 15px;
}

/* インプット */
.contact-form label {
    font-size: .7em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    display: block;
    margin: .5em 0 15px;
    padding: .5em;
}

/* 会社情報 */
.contact-data {
    font-size: .7rem;
    padding: 2em 0;
}










}


/* *,*:before,*:after {
    outline: 2px solid red!important;
} */