@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body {
	font-size: 16px;
	color: #403A8C;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	border: none;
	line-height: 1;
}
img {
	max-width: 100%;
}
header {
	background-color: rgba(0,0,0,0.8);
	position: fixed;
	width: 100%;
	height: auto;
	z-index: 100;
}
.l-header__inner {
	max-width: 1440px;
	padding: 10px 15px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
section {
    position: relative;
}
section:nth-child(odd) {
	width: 100%;
	background-color: #403A8C;
}
section:nth-child(even) {
	width: 100%;
	background-color: #fff;
}
section:nth-child(2) {
	background-color: #403A8C; 
}
section#youtube,
section:last-child {
	width: 100%;
	background-image: url(../img/bg.webp);
	background-size: 15%;
}
section.p-hero {
	width: 100%;
	background-image: url(../img/bg.webp);
	background-size: 15%;
	position: relative;
}
section#sec_b {
	width: 100%;
	background-image: url(../img/bg_02.webp);
	background-size: 15%;
	position: relative;
}
.l-container {
	max-width: 1024px;
	margin: 0 auto;
	padding: 100px 15px 150px;
    position: relative;
}
.p-hero .l-container {
	max-width: 1440px;
	background-image: url(../img/mask_group.webp);
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
	padding-bottom: 800px;
}
button,
.btn {
    display: flex;
    justify-content: center; /* 横方向の中央揃え */
    align-items: center;     /* 縦方向の中央揃え（これが効く！） */
	position: relative;
	background-color: #F87076;
	color: #fff;
	font-weight: bold;
	padding: 12px 40px;
	border-radius: 30px;
	line-height: 1;
}
.btn::after {
	position: absolute;
	content: "";
	width: 5px;
	height: 10px;
	background-image: url(../img/icon_arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}
.btn:hover {
	opacity: .7;
	transition: all 0.3s ease;
}

.p-hero__title {
	position: absolute;
	top: 380px;
	right: 5%;
}
.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.logo img {
    width: 250px;
}
.logo .books img {
    width: 150px;
    margin-left: 20px;
}
a:hover {
    opacity: .7;
    transition: all .5s ease;
}

/* ==============================================
   スライダー全体の配置
   ============================================== */
.slider {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    margin-inline: auto;
    max-width: 100%;
    width: 100%;
    /* ↓矢印が画像に被らないように調整が必要ならz-indexを入れる */
    z-index: 5; 
}
.slider .slick-list {
    /* 上下にたっぷり余白を取る（拡大率に合わせて調整） */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ==============================================
   スライド個別の設定 (★ここが拡大縮小のキモ)
   ============================================== */
.slider-img {
    margin: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    /* ★アニメーションの滑らかさ設定 */
    transition: all 0.3s ease;
    
    /* ★基本状態（真ん中以外）は少し小さくする */
    transform: scale(0.8);
}

.slider-img img {
    height: auto;
    width: 100%;
    border-radius: 20px;
    
    /* ★真ん中以外は半透明 */
    opacity: 0.5;
    /* 拡大時にボケないようにするおまじない */
    backface-visibility: hidden; 
}

/* ==============================================
   真ん中に来たスライド (★拡大設定)
   ============================================== */
/* slick-current ではなく slick-center を使うのがコツ */
.slider-img.slick-center {
    /* ★真ん中は大きくする（1.0で元サイズ、1.1ならさらに拡大） */
    transform: scale(1.1);
    
    /* 重なり順を手前に */
    position: relative;
    z-index: 10;
}

.slider-img.slick-center img {
    /* 真ん中はくっきり表示 */
    opacity: 1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ==============================================
   ドットナビゲーション
   ============================================== */
.slick-dots li button {
    position: relative;
}
.slick-dots li button:before {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    border: solid 1px #AAB5C3;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.slick-dots li.slick-active button:before {
    background-color: #F87076;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    transition: all .5s ease;
}

/* ==============================================
   矢印ナビゲーション
   ============================================== */
.slick-next, .slick-prev {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* 拡大した画像の下に潜り込まないようにz-indexを確保 */
    z-index: 20;
}
.slick-next:before, .slick-prev:before {
    width: 6px;
    height: 12px;
    content: "";
    opacity: 1;
    background-image: none;
    background-image: url(../img/icon_arrow_pk.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.slick-prev:before {
    transform: translate(-50%, -50%) rotate(180deg);
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
}

/* 矢印の位置調整 */
.slick-prev {
    left: 35%; /* 画面幅によっては微調整が必要かも */
}
.slick-next {
    right: 35%;
}
.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
    background-color: #fff;
}
h2 {
	position: relative;
	font-size: 32px;
	text-align: center;
	font-weight: 900;
	margin-bottom: 70px;
}
h2 span {
    display: inline-block;
	color: #F87076;
}
#sec_e h2 span {
    padding: 0 20px;
}
section:nth-child(odd) h2 {
	color: #fff;
}
section:last-child h2 {
	color: #403A8C;
}
section:nth-child(2) h2 {
	color: #fff;
}
section:nth-child(3) h2 {
	color: #403A8C;
}
section#sec_a h2 {
	padding-top: 100px;
}
section#sec_e h2 img {
	width: 80px;
    margin-right: 50px;
}
section#sec_e h2 {
	display: flex;
    justify-content: center;
    align-items: center;
}
h2::after {
	position: absolute;
	content: "";
	width: 50px;
	height: 2px;
	border-radius: 2px;
	background-color: #F87076;
	bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
h3 {
	color: #fff;
	font-size: 22px;
	text-align: left;
	font-weight: 900;
	margin-bottom: 10px;
	line-height: 1.5;
}
h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
h5 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}

/* ==============================================
   一重縁取りタイトル (.c-border-title)
   ============================================== */
.c-border-title {
    position: relative;
    display: inline-block;
    
    /* フォント設定（極太推奨） */
    font-weight: 900; /* デラゴシックは400でOK */
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 30px;
    
    /* 重なり順のバグ防止 */
    isolation: isolate; 
}

/* 共通設定 */
.c-border-title span {
    display: block;
    white-space: nowrap;
}

/* --- 1層目（下）：縁取り --- */
.c-border-title .layer-border {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    
    /* フチの色と太さ */
    color: #000;          /* 線の色 */
    -webkit-text-stroke: 1px #000; /* 線の太さ（出したい幅の2倍を指定） */
}

/* --- 2層目（上）：文字本体 --- */
.c-border-title .layer-main {
    position: relative;
    z-index: 2;
    
    /* 本体の色 */
    color: #fff;          /* 白文字 */
}

/* --- バリエーション例：白フチにしたい場合 --- */
/* 使い方： border_title("...", "is-white-border") */
.c-border-title.is-white-border .layer-border {
    color: #fff;
    -webkit-text-stroke: 16px #fff;
}
.c-border-title.is-white-border .layer-main {
    color: #000; /* 中身は黒 */
}

/* 親枠：サイズを確保する */
.c-special-title {
    position: relative;
    display: inline-block; /* 文字の幅に合わせる */
	font-weight: 900;
    font-size: 54px;
    line-height: 1;
}

/* 3つのレイヤー共通設定 */
.c-special-title span {
    display: block;
    white-space: nowrap; /* 改行させない */
}

/* --- 1層目：黒い縁取り（一番下） --- */
.layer-black {
    position: absolute; /* 親の左上に固定 */
    top: 0;
    left: 0;
    z-index: 1;
    
    /* 黒い太線 */
    color: #000;
    -webkit-text-stroke: 20px #000;
}

/* --- 2層目：白い縁取り（真ん中） --- */
.layer-white {
    position: absolute; /* 親の左上に固定 */
    top: 0;
    left: 0;
    z-index: 2;
    
    /* 白い中線 */
    color: #fff;
    -webkit-text-stroke: 10px #fff;
}

/* --- 3層目：グラデーション文字（一番上） --- */
.layer-main {
    position: relative; /* これを基準に親の高さが決まる */
    z-index: 3;
    
    /* グラデーション */
    background: linear-gradient(0deg, #e9450a 0%, #f19500 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.is-white .layer-main {
    position: relative; /* これを基準に親の高さが決まる */
    z-index: 3;
    
    /* グラデーション */
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.c-special-title.is-vertical {
    /* これだけで縦書きになります */
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    
    /* 英数字も横倒しにせず、まっすぐ立てる設定 */
    text-orientation: upright;
    
    /* 縦書きの時は文字間を少し開けたほうが読みやすい */
    letter-spacing: 0.1em;
    
    /* レイアウト調整（縦書きだと高さが変わるので） */
    margin-bottom: 0;
    margin-left: 20px; /* 必要に応じて調整 */
}
.c-special-title.is-blue .layer-main {
    /* 青系のグラデーションで上書き */
    background: linear-gradient(-90deg, #077078 0%, #F4ED27 90%);
    
    /* ※これらは再定義しなくても継承されますが、念のため書くなら */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.layer {
    position: absolute;
    top: 30%;
    right: -60px;
    width: 54px;
}
.layer.xp {
    right: auto;
    left: -100px;
}

/* ==============================================
   一重縁取り ＋ マーカー線 (.c-border-marker)
   ============================================== */
.c-border-marker {
    /* レイアウト: 改行・インデント対応 */
    display: inline;
    white-space: pre-wrap; /* \n や全角スペースを有効にする */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; /* 改行してもスタイルを複製する */

    /* フォント設定 */
    font-weight: 900;
    font-size: 32px;
    line-height: 1.8;
    
    /* 文字色と縁取り */
    color: #fff;
    -webkit-text-stroke: 3px #000;
    paint-order: stroke fill; /* 文字痩せ防止 */
    
    /* マーカー線（黄色） */
    background: linear-gradient(transparent 60%, rgba(248,112,118,0.8) 60%);
    
    /* 左右の余白 */
    padding: 0 4px;
}

article {
	margin-bottom: 30px;
}
.card ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.card figure {
	width: 32%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
    flex-wrap: wrap;
    min-height: 110px;
}
.card ul {
	flex-wrap: wrap;
}
.card li {
	width: 32%;
	background-color: #fff;
	border-radius: 20px;
	padding: 10px;
	margin-bottom: 20px;
}
.card li.xp {
	padding: 0;
}
.card li.xp figure {
    padding: 0;
    justify-content: center;
}
.card li.xp img {
	width: 72%;
}
.card li figure {
	width: 100%;
}
.card ul li img {
	width: 30%;
}
.card ul li figcaption {
	width: 65%;
	line-height: 1.15;
}
.p-news-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.p-news-grid article {
    margin: 0 auto;
    border:  solid 5px #000;
}
.p-news-grid article.c-card {
    margin-bottom: 50px;
}
.c-card__img {
    display: inline-block
}

/* --- レイアウト --- */
.p-faq-simple {
    padding: 60px 0;
    background: #f9f9f9;
}

/* コントローラー（タブとボタンの横並び） */
.faq-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #697884;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

/* タブボタン */
.faq-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    font-weight: 900;
    cursor: pointer;
    transition: color 0.3s;
	background-color: #fff;
	border-radius: 4px;
	transition: opacity 0.3s;
    color: #403A8C;
}
.faq-tab.active {
    color: #fff;
	background-color: #F87076;
}
.faq-tab:hover {
    opacity: .7;
}

/* 強制送りボタン（右上） */
.faq-next-btn {
    padding: 8px 8px;
    background: #fff;
    color: #F87076;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.faq-next-btn:hover {
    opacity: 0.7;
}

/* --- ページ切り替えエリア --- */
.faq-body {
    position: relative;
    width: 100%;
    min-height: 400px; /* ★重要：中身がabsoluteになるので高さを確保しておく */
}
.faq-page {
    /* 重ね合わせの設定 */
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    
    /* フェード設定 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease; /* 1.5秒かけてゆっくり変化 */
}

/* アクティブなページだけ表示 */
.faq-page.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* --- Q&Aの見た目（2列グリッド） --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列 */
    gap: 30px;
}
.faq-item {
    padding: 20px;
	border-bottom: 2px solid #697884;
}
.faq-item dt {
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.faq-item dd {
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.faq-item dd p {
    line-height: 1.5;
	font-weight: normal;
}
.faq-item p.title {
	position: relative;
	padding-left: 40px;
	margin-bottom: 30px;
	line-height: 1.5;
	font-weight: bold;
}
.faq-item p.title::after {
	position: absolute;
	content: "Q";
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #fff;
	color: #403A8C;
	font-size: 20px;
	font-weight: 900;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	text-align: center;
	line-height: 1.2;
}
.faq-item dd p.title::after {
	content: "A";
	color: #fff;
	background-color: #F87076;
}

/* ==============================================
   「もっと見る」機能（主な仕様）
   ============================================== */

/* --- PC・共通設定 --- */
/* 基本は何もしない（全部見せる） */
.spec-content {
    height: auto;
}
.spec-mask {
    display: none;
}
.spec-btn-area {
    display: none; /* PCではボタンを隠す */
}

/* --- スマホ設定 (768px以下) --- */
@media screen and (max-width: 768px) {
    
    /* 1. 高さを制限して隠す設定 */
    .spec-content {
        position: relative;
        height: 500px; /* ★ここの数値で「最初に見せる高さ」を調整 */
        overflow: hidden;
        transition: height 0.5s ease; /* ヌルっと開く */
    }

    /* 2. 下の方を白くぼかす演出 */
    .spec-mask {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom, rgba(255,255,255,0), #403A8C 90%);
        pointer-events: none; /* 下のリンクなどを邪魔しないように */
    }

    /* 3. ボタンの見た目 */
    .spec-btn-area {
        display: block;
        text-align: center;
        margin-top: 20px;
    }
    .btn-more {
        background: #fff;
        color: #403A8C;
        border: none;
        padding: 20px 40px;
        border-radius: 30px;
        font-size: 14px;
        cursor: pointer;
        margin: 0 auto;
    }

    /* 4. 開いた時の状態（JSでクラスをつける） */
    .spec-content.is-open {
        height: auto !important; /* 高さ制限解除 */
        overflow: visible;
        max-height: none;
    }
    .spec-content.is-open .spec-mask {
        display: none; /* ぼかしを消す */
    }
}

#sec_d {
    padding-top: 100px;
    padding-bottom: 150px;
}
#sec_d .l-container {
    padding: 0;
}
#sec_d ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 750px;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
#sec_d ul li.logo_img {
    width: 250px;
}
#sec_d ul li.txt p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    padding-left: 20px;
}
#sec_d .furukawa ul {
    width: 510px;
}
#sec_d .furukawa ul li.txt {
    width: 100%;
    padding: 20px 0 0 30px;
}
.furukawa {
    display: block;
}
.aizu {
    display: none;
}
.tagajo {
    display: none;
}
.map {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.map iframe {
    position: absolute;
    width: 100%;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);   
}

/* contact */
input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], textarea, select, .search-edit {
    padding: 10px;
    border: 1px solid #AAB5C3;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
}
textarea {
    min-height: 200px;
}
label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
}
label span {
    display: inline-block;
}
.label-required {
    background-color: #F87076;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 5px;
    margin-left: 5px;
    line-height: 1.2;
}
[type="submit"] {
    margin: 0 auto;
}
button[disabled], [type="button"][disabled], [type="reset"][disabled], [type="submit"][disabled] {
    cursor: not-allowed;
    background-color: #AAB5C3;
}
.p-contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.success-message {
    text-align: center;
    border: 2px solid #403A8C;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    background: #eefbff;
}
.success-message h7 {
    display: block;
    color: #403A8C;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    margin-bottom: 20px;
}
.success-message p {
    line-height: 1.5;
}
.success-message p span {
    font-size: .8em;
}

/* footer */
footer {
	background-color: #403A8C;
}
footer .l-container {
	color: #fff;
    padding: 30px 15px;
}
.form-group {
    margin-bottom: 20px;
}
footer small {
	display: block;
	padding: 10px;
	text-align: center;
    color: #fff;
}
footer ul {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
footer ul li:last-child {
    width: 200px;
}
footer ul li:last-child div {
    margin-bottom: 20px;
}
footer ul li:last-child ul {
    justify-content: center;
}
footer ul li:last-child ul li {
    width: 40px;
}
footer ul li:last-child ul li:last-child {
    width: 40px;
}
footer ul li.add {
    line-height: 1.5;
}
footer ul li.add span {
    display: inline-block;
    background-color: #F87076;
    color: #fff;
    padding: 1px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 2px;
    margin-bottom: 10px;
}
footer ul li.add p {
    padding-left: 20px;
    white-space: nowrap;
}

/* より一般的なタブレット範囲を対象にする場合（例: 768px から 1440px） */
@media only screen and (min-width: 768px) and (max-width: 1440px) {
	body {
		min-width: 1440px;
	}
}
/* スマホ対応 */
@media screen and (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr; /* スマホは1列 */
    }
    .faq-body {
        min-height: 600px; /* スマホ用に高さを調整 */
    }
    .faq-controls {
        flex-direction: column;
        gap: 10px;
        position: relative;
    }
	.logo img {
		width: 80%;
	}
	.p-hero .l-container {
		background-size: 140%;
	}
	.contact span {
		display: none;
	}
    .slider-img {
        margin: auto;
    }
    .c-special-title {
        font-size: 20px;
    }
    .layer {
        display: none;
    }
}

/* ==============================================
   ページトップへ戻るボタン
   ============================================== */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none; /* 最初は隠しておく */
}
#page-top a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background: #F87076;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    transition: opacity 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
#page-top a::after {
	position: absolute;
	content: "";
	width: 5px;
	height: 10px;
	background-image: url(../img/icon_arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	left: 50%;
	top: 10px;
	transform: translateX(-50%) rotate(-90deg);
}
#page-top a:hover {
    opacity: 0.8;
}

/* スマホでの位置調整 */
@media screen and (max-width: 768px) {
    #page-top {
        bottom: 15px;
        right: 15px;
    }
    #page-top a {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }
}

.zunda {
    width: 167px;
    position: absolute;
    bottom: -37px;
    left: 20%;
    z-index: 10;
}
.zunda.secb {
    width: 284px;
    bottom: auto;
    top: -161px;
    left: auto;
    right: 5%;
}
.zunda.secc {
    width: 151px;
    bottom: -30px;
    left: 15%;
    right: auto;
}

.c-card__body {
    display: none;
}
.footer_logo {
    max-width: 250px;
}
.footer_logo a img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .logo img {
        width: 140px;
    }
    .logo .books img {
        width: 100px;
        margin-left: 10px;
    }
    .global-nav a.btn {
        position: relative;
        padding: 12px 30px;
    }
    .global-nav a.btn::before {
        position: absolute;
        content: "";
        width: 22px;
        height: 20px;
        background-image: url(../img/contact_sp.png);
        background-size: contain;
        background-repeat: no-repeat;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
    .btn::after {
        right: 10px;
    }
    .p-hero .l-container {
        padding-bottom: 450px;
    }
    .p-hero__title {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        text-align: center;
        top: 190px;
    }
    .c-border-marker {
        font-size: 24px;
    }
    .card ul {
        display: block;
    }
    .card ul li {
        width: 100%;
    }
    #sec_d .furukawa ul {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    #sec_d ul li.logo_img {
        width: 48%;
    }
    .zunda {
        width: 90px;
        bottom: -17px;
        left: 0;
    }
    .slick-dots {
        bottom: 0;
    }
    .zunda.secb {
        width: 141px;
        top: -79px;
    }
    .zunda.secc {
        width: 75px;
        bottom: -14px;
        left: 4%;
    }
    footer .l-container {
        text-align: center;
    }
    footer .l-container > ul {
        display: block;
    }
    footer .l-container > ul > li {
        margin-bottom: 30px;
    }
    footer .l-container  ul li.add {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    footer .l-container  ul li.sns {
        width: 100%;
        max-width: 200px;
        text-align: center;
        margin: 0 auto;
    }
    #page-top a::after {
        top: 5px;
    }
    .faq-next-btn {
        position: absolute;
        bottom: 10px;
        right: 0;
    }
    section#sec_e h2 img {
        margin-right: 0;
    }
    footer .l-container ul li  {
        width: 100%;
    }
    footer ul li.add p {
        white-space: wrap;
    }
    .footer_logo {
        max-width: 80%;
        margin: 0 auto;
    } 
}
.youtube-in {
	position: relative;
	padding-top: 56.25%; /* 16:9 アスペクト比 */
	height: 0;
}
.youtube-in iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}