﻿@charset "utf-8";

/* スマホ小（〜479px） */
@media screen and (max-width: 479px) {}

/* スマホ中（480〜767px） */
@media screen and (min-width: 480px) and (max-width: 767px) {}

html, body {
    overflow-x: hidden;
}
/* =========================================================
共通
========================================================= */
article {
	background-color: #ffffff;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-style: normal;
	font-size: clamp(1rem, 0.554rem + 0.93vw, 1.25rem);
	line-height: 2em;
	letter-spacing: 0.03em;
	text-align: justify;
	color: #222;
	overflow-wrap: break-word;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
	margin: 0;
}

.top-main-image-caption,
.image-caption,
.image-caption2 {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 14px;
}

.top-main-image-caption{
    position: absolute;
    bottom: -35px;   /* 画像の少し下に出す */
    right: 0;        /* ← 右端に合わせる */
    font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 14px;
    text-align: right;
}
.image-caption { text-align: left; }

ruby { ruby-align: center; }
rt { font-size: 50%; }

.note{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 14px;
}

@media screen and (max-width: 479px) {

/* 共通 */
article {
	font-size: 14px;
	line-height: 1.8em;
}
.top-main-image-caption,
.image-caption,
.image-caption2 {
	font-size: 10px;
	font-weight: normal;
    padding-right: 2%;
}
.note{
	font-size: 10px;
	font-weight: normal;
}

}
@media screen and (min-width: 480px) and (max-width: 767px) {
article  {
	font-size: 16px;
}
}


/* =========================================================
メインビジュアル
wrapperの制限を受けず画面いっぱいに広げる
========================================================= */
.sec-top-image{
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	position: relative;
	height: 1000px;
	margin-bottom: 80px;
	overflow: hidden; /* はみ出し防止 */
}

/* タイトル */
.top-title {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 37%;
	max-width: 460px;
	z-index: 100;
}

/* メイン画像切り替え */
.top-main-pc{
	display: block;
}
.top-main-sp{
	display: none;
}

/* メイン画像 */
.top-main-image{
	position: absolute;
	top: 150px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1140px;
	z-index: 90;
}

.top-main-image img{
	width: 100%;
	height: auto;
	display: block;
}


/* 背景（画面基準で自然縮小） */
.top-background-left{
	position: absolute;
	top: 60px;
	left: 0;
	width: 30vw;
	max-width: 500px;
	z-index: 50;
}
.top-background-right{
	position: absolute;
	top: 560px;
	right: 0;
	width: 30vw;
	max-width: 500px;
	z-index: 50;
}

/* =========================================================
スマホ（〜480px）
========================================================= */
@media screen and (max-width: 479px){

.sec-top-image{
    height: 600px;
    margin-bottom: 20px;
}

  /* PC画像非表示、SP画像表示 */
.top-main-pc{
	display: none;
}

.top-main-sp{
    display: block;
    width: 95%;      /* 画面幅の90%にして左右5%ずつ余白 */
    margin: 0 auto;  /* 中央寄せ */
}

.top-title{
	width: 80%;
}

/* メイン画像位置 */
.top-main-image{
    top: 110px;
    width: 95%;       /* 左右余白確保 */
    max-width: none;  /* 小さい画面で1140px制限を外す */
    left: 50%;
    transform: translateX(-50%);
}

.top-background-left{
	top:50px;
	left:-10vw;
	width:60vw;
}

.top-background-right{
    display: none;
}
}

/* =========================================================
タブレット縦（481〜768px）
========================================================= */
@media screen and (min-width: 481px) and (max-width: 768px){

.sec-top-image{
	height: 660px;
}

.top-title{
	width: 50%;
}

/* メイン画像：左右余白確保 */
.top-main-image{
    width: 95%;       /* 画面幅に応じて可変 */
    max-width: none;  /* 1140px制限を外す */
    left: 50%;
    transform: translateX(-50%);
    top: 140px;
}

.top-background-left{
	top:20px;
	width:35vw;
}

.top-background-right{
	top:500px;
	width:35vw;
}
}

/* =========================================================
タブレット横（769〜1024px）
========================================================= */
@media screen and (min-width: 769px) and (max-width: 1024px){

    .sec-top-image{
        height: 780px;
    }

    /* メイン画像を幅95%で左右に余白 */
    .top-main-image{
        width: 95%;
        max-width: none;      /* PC固定幅を解除 */
        left: 50%;
        transform: translateX(-50%);
    }

    /* 背景画像調整（必要に応じて） */
    .top-background-left{
        top: 30px;
        width: 40vw;
    }
    .top-background-right{
        top: 550px;
        width: 40vw;
    }
}


/*--- リード ----*/
.sec-lead{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #F1EEF2;
}

.main-lead{
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 100px;
    padding-top: 40px;
    padding-bottom: 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
}

@media screen and (max-width: 479px) {
.main-lead{
    margin: 0 auto 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 16px;
    line-height: 1.8em;

}
}


/* =========================================================
共通タイトル装飾
========================================================= */
.title-frame{
    position: relative;
    width: fit-content;
    padding: 28px 80px;
    margin: 0 auto 30px;
}

.title-frame3 {
    position: relative;
    width: fit-content;
    padding: 28px 80px;
    margin: 0 0 40px;
}

.title-frame__text,
.title-frame3__text {
    margin: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}

.title-frame::before,
.title-frame3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 44px;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    border-top-left-radius: 14px;
}

.title-frame::after,
.title-frame3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 120px;
    height: 44px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    border-bottom-right-radius: 14px;
}


/* =========================================================
本文レイアウト
========================================================= */
.sec-content1{
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

/* 左側背景波 */
.content-bg-left{
    position: absolute;
    top: 450px;
    left: 0;
    width: 25vw;
    max-width: 500px;
    z-index: 0;
}
.content-bg-left img{
    width: 100%;
    height: auto;
    display: block;
}

/* コンテンツを前面に出す 
.sec-content1 > *:not(.content-bg-left){
    position: relative;
    z-index: 10;
}*/

/* 右側の波背景 */
.content-bg-right {
    position: absolute;
    top: 1090px; /* inner-3 の開始位置に合わせる */
    right: calc(50% - 50vw); /* 右端をブラウザ幅に応じて可変 */
    width: 25vw; /* 左波と同じように可変 */
    max-width: 600px;
    z-index: 0;
}
/* inner-3 を relative にして波が追従するように */
.inner-3 {
    position: relative;
}

.content-bg-right img {
    width: 100%;
    height: auto;
    display: block;
}
.sec-content{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
}

/* 左側背景波 */
.content2-bg-left{
    position: absolute;
    top: -110px;
    left: 0;
    width: 22vw;
    max-width: 500px;
    z-index: 0;
}
.content2-bg-left img{
    width: 100%;
    height: auto;
    display: block;
}

/* コンテンツ2の右側の波背景 */
.content2-bg-right {
    position: absolute;
    top: 620px; /* inner-3 の開始位置に合わせる */
    right: calc(50% - 50vw); /* 右端をブラウザ幅に応じて可変 */
    width: 25vw; /* 左波と同じように可変 */
    max-width: 600px;
    z-index: 0;
}
/* inner-4 を relative にして波が追従するように */
.inner-4 {
    position: relative;
}

.content2-bg-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* -------------------------
共通設定（inner共通）
------------------------- */
/* wrapperの代わりに内側コンテナ */
.sec-content1-inner{
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.inner-1,
.inner-3,
.inner-5 {
    width: 86%;
    max-width: 1140px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px auto 80px;
}

.inner-1-text,
.inner-3-text,
.inner-5-text {
    width: 58%;
    margin-top: 20px;
    font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
}

.inner-1-img,
.inner-3-img,
.inner-5-img {
    width: 35%;
    margin-top: 20px;
}

.inner-1-img img,
.inner-3-img img,
.inner-4-img img,
.inner-5-img img {
    width: 100%;
}



/* -------------------------
inner-2
------------------------- */
.inner-2 {
    position: relative;
    width: 100%;
}

.inner-2-text {
    width: 86%;
    max-width: 1140px;
    margin: 40px auto 80px;
    font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
}

/* -------------------------
inner-4
------------------------- */
.inner-4 {
    position: relative;
    width: 100%;
    margin-bottom: 120px;
}

.inner-4-img {
    width: 50%;
    margin: 0 auto;
}



/* 見出し */
.title-headline{
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 34px;
    letter-spacing: 0.1em;
    color: #7B5480;
    line-height: 1.4;
}


/* タブレット */
@media screen and (min-width:480px) and (max-width:767px) {
    .title-frame,
    .title-frame3 { 
        padding: 20px 40px; 
    }

    .title-frame__text,
    .title-frame3__text { 
        font-size: 24px; 
    }

    .inner-3 .title-frame3 { 
        margin-left: auto;
        margin-right: auto;
        display: table;
    }

    .title-headline { 
        font-size: 28px; 
    }
}

/* スマホ */
@media screen and (max-width:479px) {
    .title-frame { 
        padding: 16px 30px; 
        margin-bottom: 20px; 
    }
    .inner-4 .title-frame { 
        padding: 16px 14px; 
        margin-bottom: 20px; 
    }

    .title-frame3 { 
        padding: 16px 30px; 
        margin-bottom: 30px; 
    }

    .inner-3 .title-frame3 { 
        margin-left: auto;
        margin-right: auto;
        display: table;
    }

    .title-frame__text,
    .title-frame3__text { 
        font-size: 20px; 
    }

    .title-headline { 
        font-size: 20px; 
        letter-spacing: -0.05em; 
    }
}

/* =========================================================
コンテンツ内　背景波模様
========================================================= */
/* タブレット */
@media screen and (max-width: 768px){
    .content-bg-left,
    .content-bg-right,
    .content2-bg-left,
    .content2-bg-right{
        display: none;
    }
}

/* スマホ */
@media screen and (max-width: 479px){
    .content-bg-left,
    .content-bg-right,
    .content2-bg-left,
    .content2-bg-right{
        display: none;
    }
}



/* =========================================================
inner-1
========================================================= */

/* タブレット */
@media screen and (min-width:480px) and (max-width:767px) {
    .inner-1 { 
        flex-direction: column; 
        width: 90%; 
        margin: 60px auto; 
    }

    .inner-1-text { 
        width: 100%; 
        margin-top: 20px; 
    }

    .inner-1-img { 
        width: 100%; 
        margin: 20px 0 0; 
    }
}

/* スマホ */
@media screen and (max-width:479px) {
    .inner-1 { 
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    }

    .inner-1-text { 
        width: 100%; 
        margin-top: 10px;
    }

    .inner-1-img {
        width: 95%; 
        margin-top: 20px; 
    }
}



/* =========================================================
inner-2
========================================================= */

/* タブレット */
@media screen and (min-width:480px) and (max-width:767px) {
    .inner-2-text {
        width: 100%;
        margin: 0px auto;
    }
}

/* スマホ */
@media screen and (max-width:479px) {
    .inner-2-text { 
        width: 100%;
        margin: 20px auto; 
    }
}



/* =========================================================
inner-3
========================================================= */

/* タブレット */
@media screen and (min-width:480px) and (max-width:767px) {
    .inner-3 { 
        flex-direction: column; 
        width: 90%; 
        margin: 60px auto; 
    }

    .inner-3-text { 
        width: 100%; 
        margin-top: 20px; 
    }

    .inner-3-img { 
        width: 100%; 
        margin: 20px 0 0; 
    }
}

/* スマホ */
@media screen and (max-width:479px) {
    .inner-3 { 
        width: 100%; 
        margin: 20px auto 50px; 
    }

    .inner-3-text { 
        width: 100%; 
        margin-top: 10px;
    }

    .inner-3-img {
        width: 100%; 
        margin-top: 0;
        margin-bottom: 20px;
    }
}



/* =========================================================
inner-4
========================================================= */

/* タブレット */
@media screen and (min-width:480px) and (max-width:767px) {
    .inner-4-img {
        width: 100%;
        margin-top: 20px;
    }

    .inner-4-text { 
        width: 100%; 
        margin-top: 20px; 
    }
}

/* スマホ */
@media screen and (max-width:479px) {
    .inner-4 { 
        width: 100%; 
        margin: 20px auto 50px; 
    }

    .inner-4-text { 
        width: 100%; 
        margin-top: 10px;
    }

    .inner-4-img { 
        width: 90%; 
        margin-top: 15px; 
    }
}



/* =========================================================
inner-5（テキスト先・画像後）
========================================================= */

/* タブレット */
@media screen and (min-width:480px) and (max-width:767px) {
    .inner-5 { 
        flex-direction: column; 
        width: 90%; 
        margin: 60px auto; 
        display: flex;
    }

    .inner-5-text { 
        width: 100%; 
        margin-top: 20px; 
        order: 1;
    }

    .inner-5-img { 
        width: 100%; 
        margin: 20px 0 0; 
        order: 2;
    }
}

/* スマホ */
@media screen and (max-width:479px) {
    .inner-5 { 
        width: 100%; 
        margin: 20px auto 50px; 
        display: flex;
        flex-direction: column;
    }

    .inner-5-text { 
        width: 100%; 
        margin-top: 10px;
        order: 1;
    }

    .inner-5-img {
        width: 100%; 
        margin-top: 15px;
        order: 2;
    }
}



/* =========================================================
content2（カード）
========================================================= */
.sec-content2{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #e6dfe8;
}

.content2-inner{
    width: 80%;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 80px 0;
    font-family: "Noto Sans JP", sans-serif;
}

.content2-title {
    background: #7c5a83;
    color: #fff;
    text-align: center;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 50px;
    width: 100%;
    box-sizing: border-box;
}

.content2-grid {
    display: flex;
    gap: 40px;
}

.content2-card { 
    flex: 1; 
}

.content2-card img {
    width: 100%;
    display: block;
    margin-bottom: 16px;
}

.content2-card h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.content2-card p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: clamp(0.813rem, 0.688rem + 0.42vw, 1rem);
}

/* 情報 */
.info {
    font-size: clamp(0.75rem, 0.667rem + 0.28vw, 0.875rem);
    line-height: 1.6;
}

.info-address,
.info-tel,
.info-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.info-address::before,
.info-tel::before,
.info-map::before {
    content: "";
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
}

.info-address::before { 
    background-image: url("../images/access-icon.svg"); 
}
.info-tel::before { 
    background-image: url("../images/tel-icon.svg"); 
}
.info-map::before { 
    background-image: url("../images/map-icon.svg"); 
}


/* ---------- タブレット ---------- */
@media screen and (min-width:480px) and (max-width:767px) {

    .content2-inner { 
        width: 90%; 
        padding: 60px 0; 
    }

    .content2-grid { 
        flex-direction: column; 
        gap: 30px; 
    }

    .content2-title { 
        font-size: 24px; 
        padding: 12px 16px; 
        margin-bottom: 40px; 
    }
}


/* ---------- スマホ ---------- */
@media screen and (max-width:479px) {
    .sec-content2{
        overflow: hidden;
    }
    .content2-inner { 
        width: 85%; 
        padding: 40px 0; 
        margin-bottom: 0px;
    }

    .content2-grid { 
        flex-direction: column; 
        gap: 24px; 
    }

    .content2-title { 
        font-size: 20px; 
        padding: 10px 14px; 
        margin-bottom: 30px; 
    }

    .content2-card h3 {
        font-size: 18px;
    }


}

/* =========================================================
content3（技術者セクション）
========================================================= */
.sec-content3{
    position: relative;
    width: 86%;
    max-width: 1140px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 100px auto;
    background: #FDEEED;
    border: 6px solid #EC6D65;
    border-radius: 24px;
    font-family: "Noto Sans JP", sans-serif;
}

.content3-inner{
    padding: 50px 40px;
}

.content3-title {
    text-align: center;
    color: #EC6D65;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.content3-top {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.content3-illust img { 
    width: 100%; 
    display: block; 
}
.content3-text{
    font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
} 

/* ---------- タブレット ---------- */
@media screen and (min-width:480px) and (max-width:767px) {

    .sec-content3 { 
        flex-direction: column; 
        width: 95%; 
        margin: 60px auto; 
        border-width: 4px; 
        border-radius: 16px; 
    }

    .content3-inner { 
        padding: 30px 20px; 
    }

    .content3-title { 
        font-size: 24px; 
        margin-bottom: 30px; 
    }

    .content3-top { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
}


/* ---------- スマホ ---------- */
@media screen and (max-width:479px) {

    .sec-content3 {
        flex-direction: column;
        width: 95%;
        margin: 0 auto 50px;
        border-radius: 14px;
        border: 3px solid #EC6D65;
        margin-top: 60px;

    }

    .content3-inner { 
        padding: 24px 25px;
    }

    .content3-title { 
        font-size: 20px; 
        margin-bottom: 24px; 
    }

    .content3-top { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    }
}

/* タブレット（768〜1024px）はスマホと同じ縦並び */
@media screen and (min-width:768px) and (max-width:1024px){

.inner-1,
.inner-3,
.inner-5 {
    width: 90%;
    margin: 40px auto 60px;
    display: flex;
    flex-direction: column;
}

.inner-1-text,
.inner-3-text,
.inner-5-text {
    width: 100%;
    margin-top: 20px;
    order: 1;
}

.inner-1-img,
.inner-3-img,
.inner-5-img {
    width: 100%;
    margin-top: 20px;
    order: 2;
}

}

/* タブレットはスマホと同じ縦並び */
@media screen and (max-width:1024px){

.content3-top {
    grid-template-columns: 1fr;
    gap: 30px;
}

.content3-illust {
    width: 70%;
    margin: 0 auto;
}

.content3-text {
    width: 100%;
}

}

/* =========================================================
年表
========================================================= */
.sec-history{
	margin: 180px auto 150px;
}

.history-background{
	width: 100%;
}
.history-background img{
    display: block;
    width: 100%;
    height: auto;
}

.history-block{
	background-color: #e6dfe8;
	padding-top: 60px;
	padding-bottom: 20px;
}

.history-title{
	width: 86%;
	max-width: 1000px;
	margin: 0 auto;
	background-color: #7B5480;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 28px;
	text-align: center;
	padding: 10px;
}

.history-table table{
	width: 86%;
	max-width: 1000px;
	margin: 40px auto;
	border-collapse: collapse;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
}

.history-table th{
	width: 28%;
	background: #F6F6EA;
	padding: 16px 24px;
	text-align: left;
	font-weight: 600;
	vertical-align: top;
}

.history-table td{
	background: #fff;
	padding: 16px 24px;
	line-height: 1.8;
}

.history-table tr{
	border-bottom: 1px solid #B0B0B0;
}

/* =========================================================
レスポンシブ（スマホ：479px以下）年表
========================================================= */
@media screen and (max-width: 479px) {
		.sec-history{
			margin: 100px auto 80px;
		}

    .history-block {
        padding: 20px 15px; /* 上下少し狭く、左右10px余白 */

    }

    .history-title {
        width: 95%;
        font-size: 20px;
        padding: 6px;
    }

    .history-table table {
        width: 100%;
        margin: 20px auto;
        font-size: 12px;
        display: block;
        overflow-x: auto;
    }

    .history-table th,
    .history-table td {
        padding: 8px 12px;
        display: table-cell;
    }

    .history-table th {
        width: 40%;
    }

    .history-table td {
        width: 60%;
        line-height: 1.5;
    }
}








/* =========================================================
インタビュー
========================================================= */
.sec-interview{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #f4e9db;
    padding-top: 60px;
    padding-bottom: 10px;
    margin-bottom: 80px;
}

/* タイトル */
.interview-title-block{
	width: 80%;
	max-width: 600px;
	margin: 60px auto;
}

.interview-title-text{
    background-color: #fff;
    text-align: center;
    padding: 20px;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 36px;
}

.interview-title-img img{
	display: block;
	width: 100%;
	height: auto;
}

/* プロフィール */
.interview-profile{
    width: 86%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end; 
    margin: 0 auto;
}

.interview-profile-img{
	width: 50%;
}

.interview-profile-img img{
	width: 100%;
	height: auto;
	display: block;
}

.interview-profile-text{
    width: 45%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8em;
}
.br-pc{
	display: block;
}

.interview-profile-name{
    font-size: 24px;
    font-weight: 700;
    line-height: 2em;
}

/* 本文 */
.interview-inner{
	width: 86%;
	max-width: 1000px;
	margin: 60px auto;
	padding-top: 40px;
	padding-bottom: 30px;
	font-family: "Noto Sans JP", sans-serif;
}

.interview-lead{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    padding: 10px;
}

.interview-question{
	color: #754c24;
	font-weight: bold;
	font-size: 22px;
	margin-top: 40px;
	padding: 10px;
}

.interview-answer{
    font-size: 18px;
    line-height: 1.8em;
    font-weight: 400;
    padding: 10px;
    padding-bottom: 40px;
}

.interview-line{
	border: solid 1px #754c24;
	opacity: 0.5;
}


@media screen and (min-width: 480px) and (max-width: 767px){

.sec-interview{
    padding-top: 50px;
    padding-bottom: 40px;
}

.interview-title-block{
    width: 90%;
    margin: 40px auto;
}

.interview-title-text{
    font-size: 24px;
    padding: 16px;
}

/* プロフィール縦並び */
.interview-profile{
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.interview-profile-img{
    width: 70%;
    margin-bottom: 20px;
}

.interview-profile-text{
    width: 100%;
}

.interview-inner{
    width: 92%;
    margin: 40px auto;
}

.interview-question{
    font-size: 18px;
}

.interview-answer{
    font-size: 16px;
    padding-bottom: 30px;
}

}

@media screen and (max-width: 479px){

.sec-interview{
    padding-top: 40px;
    padding-bottom: 0px;
    margin-bottom: 60px;
}

.interview-title-text{
    font-size: 20px;
    padding: 14px;
}

.interview-title-block{
    width: 90%;
    margin: 30px auto;
}

.interview-profile-img{
    width: 85%;
    margin: 0 auto;
}

.interview-profile-text{
    width: 85%;
    margin: 0 auto;
    font-size: 14px;
    margin-top: 20px;
}

.br-pc{
    display: none;
}

.interview-profile-name{
    font-size: 20px;
}

.interview-inner{
    width: 90%;
    margin: 30px auto;
    padding-top: 20px;
}

.interview-question{
    font-size: 16px;
    margin-top: 30px;
}

.interview-answer{
    font-size: 14px;
    line-height: 1.7em;
}

}

ul.spotdata_r li.address,
ul.spotdata_r li.tel {
    background-position: left;
}

.omiashi {
    letter-spacing: 8px;
    padding-left: 10px;
}

ul.spotdata_r li {
    margin: 0;
    padding: 0 0 0 30px;
    font-size: 1rem;
}
