@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*ここまでreset.css*/

*, *::before, *::after{
    box-sizing: border-box;
}

html {
    font-size: 1.6161616vw; /**** 16px(文字) / 990px(解像度) ****/
}

@media only screen and (min-width: 61.875em ) {
    /**** 990px(解像度) / 16px(文字) ****/
    html {
        font-size: 100%;
    }
}

body {
    position: relative;
    width: 100%;
    font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
    color: #fff;
    background-color: #3A2823;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*ここまで全体の設定*/

/****************
index.html装飾
*****************/

/*header装飾*/
.header{
}
/*ヘッダーは画面上部に常に固定*/
.header-pc {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.4);
}

.header-pc-inner {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 820px;
    width: calc(820em / 16);
    margin: 0 auto;
    
}

.gNav{
    display: flex;
}

.gNav_item{
    margin: 20px 0;
    margin-top: calc(20em / 16);
    margin-bottom: calc(20em / 16);
}

.gNav_item a{
    display: block;
    color:#fff;
    font-size: 17px;
    font-size: calc(17em / 16);
    text-align:center;
    text-decoration:none;
    padding:5px 10px;
    padding-top: calc(5em / 17);
    padding-right: calc(10em /17);
    padding-bottom: calc(5em / 17);
    padding-left: calc(10em / 17);
    transition: all 0.5s ease;
    }

.gNav_item:not(:last-of-type) a {
    border-right:solid #fff 1px;
    border-width: calc(1em / 17);
}

.gNav_item a:hover {
    color: #c9a978;
}

.gNav_span{
    font-size: 12px;
    font-size: calc(12em / 17);
}

.snsNav{
    display: flex;
    justify-content: space-between;
}

.snsNav_item{
    margin: 0 2px;
    margin-left: calc(2em / 16);
    margin-right: calc(2em / 16);
    width: 23px;
}

.lNav_item{
    width: 100%;
    margin-bottom: 5px;
    margin-bottom: calc(5em / 16);
}

.lNav_item a{
    display:block;
    width:100px;
    width: calc(100em / 12);
    height:18px;
    height: calc(18em / 12);
    line-height: 18px;
    line-height: calc(18em / 12);
    text-decoration: none;
    background:none;
    text-align:center;
    border:1px solid #FFFFFF;
    color:#FFFFFF;
    font-size: 12px;
    border-radius: 39px;
    border-radius: calc(39em / 12);
    transition: all 0.5s ease;
}

.lNav_item a:hover{
    background:#c9a978;
    color:#3A2823;
    margin-left:0px;
    margin-top:0px;
    border:1px solid #c9a978;
    box-shadow:none;
}

/*header-sp装飾*/
/*pc時にはspが出ない*/
.header-sp {
        display: none;
}

/*768pxをブレイクポイントとし、以下ではハンバーガーメニュー*/

@media screen and (max-width: 768px) {
    .header-pc {
        display: none;
    }
    .header-sp {
        display: block;
    }
}

.gNav-sp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    color: #C9A978;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    background-color: #3A2823;
}

.navlist-sp {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    width: 100%;
    height: 320px;
}

.navlist-sp_item {
    display: block;
    font-size: 18px;
    width: 100%;
    height: 32px;
    line-height: 32px;
    list-style-type: none;
    transition: all 0.5s ease;
}

.navlist-sp_item a {
    position: relative;
    display: inline-block;
    color: #C9A978;
    text-decoration: none;
}

/*中央から横広がりに線が広がるものに変更*/
.navlist-sp_item a::before,
.navlist-sp_item a::after {
     position: absolute;
    top: 26px;
    content: "";
    display: inline-block;
    width: 0;
    height: 1px; 
    background: #C9A978;
    transition: 0.3s;
}

.navlist-sp_item a::before {
    left: 50%;
}

.navlist-sp_item a::after {
    right: 50%;
}

.navlist-sp_item a:hover::before,
.navlist-sp_item a:hover::after {
    width: 50%;
}

.sp_span {
    font-size: 14px;
}

/* このクラスを、jQueryで付与・削除する */
.gNav-sp.active {
    position: fixed;
    transform: translateY(0%);
}

/*ハンバーガーメニュー*/
/*レスポンシブ時の型崩れが起こらないように、サイズは固定にしました*/
.toggle {
    display: block;
    position: fixed;
    right: 15px;
    top: 20px;
    width: 60px;
    height: 55px;
    cursor: pointer;
    z-index: 1000;
    background: #3A2823;
    border-radius: 9px;
    text-align: center;
}
 
.toggle span {
    display: block;
    position: absolute; 
    width: 40px;
    left: 10px;
}

.toggle .line {
    height: 4px;
    background: #C9A978;
    border-radius: 3px;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
 
.toggle .line:nth-child(1) {
    top: 9px;
}
 
.toggle .line:nth-child(2) {
    top: 19px;
}
 
.toggle .line:nth-child(3) {
    top: 29px;
}
 
.toggle .text {
    display: block;
    color: #C9A978;
    font-size: 16px;
    top: 36px;
}

/*ハンバーガーメニュークリック時のアニメーション*/
.toggle.active .line:nth-child(1) {
    top: 18px;
    left: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
.toggle.active .line:nth-child(2),
.toggle.active .line:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*slideshow部分*/

#slideshow {
    position: relative;
}
#slideshow img {
    position: absolute;
    width: 100%; /* 画像の横幅に合わせて記述 */
    height: 525px; /* 画像の高さに合わせて記述 */
    height: calc(525em / 16);
    object-fit: cover; /* これで横幅を変更しても比率がおかしくならない */
    top: 0;
    left:0;
    z-index: -12;
    opacity: 0.0;
}
#slideshow img.active {
    z-index: -10;
    opacity: 1.0;
}
#slideshow img.last-active {
    z-index: -11;
}

@media screen and (max-width: 768px) {
    #slideshow img {
        height: 300px;
    }
}

/*index-logo部分*/
.index-logo {
    position: absolute;
    top: 200px;
    top: calc(200em / 16);
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    text-align: center;
}

/*960px以下では背景画像の下に飛び出ないように位置を上に移動*/
@media screen and (max-width: 960px) {
    .index-logo {
    top: 135px;
    top: calc(135em / 16);
        
    }
}

.index-logo_img {
    width: 127px;
    width: calc(127em / 16);
    height: 121px;
    height: calc(121em / 16);
}

.index-logo_upper {
    font-size: 23px;
    font-size: calc(23em / 16);
    padding-top: 20px;
    padding-top: calc(20em / 23);
}

.index-logo_h1 {
    font-size:36px;
    font-size: calc(36em / 16);
    padding-top: 10px;
    padding-top: calc(10em / 36);
}

.index-logo_lower {
    font-size: 18px;
    font-size: calc(18em / 16);
    padding-top: 10px;
    padding-top: calc(10em / 18);
}
/*sp時はロゴのサイズ固定*/
@media screen and (max-width: 768px) {
    .index-logo_h1 {
        font-size: 24px;
    }
    .index-logo_upper {
        font-size: 16px;
    }
    .index-logo_lower {
        font-size: 12px;
    }
}

/*main装飾*/

.main {
    width: 820px;
    width: calc(820em / 16);
    padding-top: 525px;
    padding-top: calc(525em / 16);
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .main {
        width: 90%;
        padding-top: 300px;
    }
}

.theme_p{
    display:block;
    width:700px;
    width: calc(700em / 17);
    font-size: 17px;
    font-size: calc(17em / 16);
    color: #fff;
    text-align:center;
    line-height: 1.8;
    padding-top: 60px;
    padding-top: calc(60em / 17);
    margin: 0 auto;
}
/*sp用のテーマテキストを用意、pc時は隠す*/
.theme-sp_p {
    display: none;
}

@media screen and (max-width: 768px) {
    .theme_p {
        width: auto;
        display: none;
    }
    .theme-sp_p {
        display:block;
        width: 90%;
        font-size: 15px;
        color: #fff;
        text-align:center;
        line-height: 1.8;
        padding-top: 60px;
        padding-top: calc(60em / 17);
        margin: 0 auto;
    }
    .theme-sp_p_span {
        font-size: 12px;
    }
}

/*PHILOSOPHYとITEMSのボタンが収まっています*/
/*
.index-btn-container{
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-top: calc(60em / 16);
}
*/

.index-btn-container-2 {
    display: flex;
    justify-content: space-between;
    width: 596px;width: calc(596em / 16);
    margin: 60px auto 0;
}

@media screen and (max-width: 768px){
    .index-btn-container-2 {
        width: 425px;
    }
}

@media screen and (max-width: 500px){
    .index-btn-container-2 {
        display: block;
        width: 100%;
    }
}

.index-btn-2 {
    display: block;
    width: 280px;
    width: calc(280em / 16);
    height: 80px;
    height: calc(80em / 16);
    color: #C9A978;
    text-decoration: none;
    text-align: center;
    border: 1px solid #C9A978;
    border-radius: 39px;
    border-radius: calc(39em / 16);
    transition: all 0.5s ease;
}

.index-btn-2:hover {
    background-color: #C9A978;
    color: #3A2823;
}

@media screen and (max-width: 768px){
    .index-btn-2 {
        margin: 0 20px;
        width: 200px;
        height: 57px;
        border-radius: 27px;
    }
}

@media screen and (max-width: 500px){
    .index-btn-2 {
        margin: 20px auto;
    }
}

.index-btn-upper {
    font-size: 30px;
    font-size: calc(30em / 16);
    padding-top: 18px;
    padding-top: calc(18em / 30);
}

.index-btn-lower {
    font-size: 16px;
    font-size: calc(16em / 16);
    padding-top: 2px;
    padding-top: calc(2em / 16);
}

@media screen and (max-width: 768px){
    .index-btn-upper {
        font-size: 21px;
        padding-top: 11px;
    }
    .index-btn-lower {
        font-size: 11px;
    }
}


/*sp時にボタンが近づきすぎないようにしました*/
@media screen and (max-width: 768px) {
    .index-btn {
        width: 200px;
        font-size: 16px;
    }
    .index-btn_span {
        font-size: 10px;
    }
}

/*index_news装飾*/
.index-news {
    display: block;
    padding-top: 100px;
    padding-top: calc(100em / 16);
    margin-bottom: 50px;
    margin-bottom: calc(50em / 16);
}


/*フォントはデフォルトのままです*/
.index-news_h1 {
    display: block;
    width: 660px;
    font-size: 36px;
    color: #C9A978;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .index-news_h1 {
        font-size: 31px;
        width: 100%;
        text-align: center;
    }
}

.index-news-container {
    display: flex;
    justify-content: space-between;
    width: 660px;
    padding-top: 32px;
    padding-top: calc(32em / 16);
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .index-news-container {
        width: 100%;
        text-align: center;
    }
}

.index-news-item {
    width: 300px;
}

.index-news-bar {
    width: 1px;
    height: 496px;
    background-color: #fff;
}


/*ブレイクポイント以下ではfacebookとinstagramが縦並びに*/
@media screen and (max-width: 768px) {
    .index-news-container {
        display: block;
    }
    .index-news-item {
        width: 300px;
        margin: 0 auto;
    }
    .index-news-item iframe {
        width: 100%;
    }
    
    .index-news-item:first-of-type {
        border-right: none;
    }
    .index-news-bar {
        display: block;
        content: '';
        width: 300px;
        height: 1px;
        background-color: #fff;
        margin-top: 40px;
        margin-right: auto;
        margin-bottom: 40px;
        margin-left: auto
    }
}

/*footer装飾*/
.footer {
    width: 100%;
    background: url(image/bg_01.png);
    background-size: cover;
    padding-top: 36px;
    padding-top: calc(36em / 16);
    margin: 200px auto 0;
    margin-top: calc(200em / 16);
}

.f-snsNav {
    display: flex;
    justify-content: center;
}

/*デザイン上はアイコンサイズが23pxだったので23px指定*/
.f-snsNav_item {
    display: block;
    width: 23px;
    margin: 0 3px;
    margin-left: calc(3em / 16);
    margin-right: calc(3em / 16);
}

/*sp時はアイコンサイズを46pxに拡大、paddingを左右5pxで固定*/
@media screen and (max-width: 768px) {
    .f-snsNav_item {
        width: 46px;
        margin: 0 10px;
    }
}
/*pc時とsp時では改行などが異なるため、
sp専用のfooter-containerを用意しました*/
.footer-address {
    font-size: 13px;
    font-size: calc(13em / 16);
    font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    text-align: center;
    padding-top: 22px;
    padding-top: calc(22em / 13);
}

.copyright {
    font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 10px;
    font-size: calc(10em / 16);
    text-align: center;
    line-height: 1.5;
    padding-top: 60px;
    padding-top: calc(60em / 10);
    padding-bottom: 20px;
    padding-bottom: calc(20em / 10);
    color: #fff;
    text-decoration: none;
}

.footer-tel a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .footer-address {
        font-size: 13px;
        line-height: 1.4;
    }
    .copyright {
        font-size: 12px;
        line-height: 1.2;
        padding-top: 30px;
    }
}

.footer-container-sp {
    display: none;
}

@media screen and (max-width: 500px) {
    .footer-container-pc {
        display: none;
    }
    .footer-container-sp {
        display: block;
    }
}

/****************
workshop.html装飾
*****************/
/*index.htmlではスライドにしていた部分を固定の画像で表示*/
.bg_img {
    position: absolute;
    width: 100%; /* 画像の横幅に合わせて記述 */
    height: 525px; /* 画像の高さに合わせて記述 */
    height: calc(525em / 16);
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .bg_img {
        height: 300px;
    }
}

/*contact-btn装飾*/

.contact-btn a{
    font-size: 30px;
    font-size: calc(30em / 16);
    display:block;
    width:820px;
    width: calc(820em / 30);
    height:60px;
    height: calc(60em / 30);
    color: #C9A978;
    text-decoration: none;
    text-align:center;
    line-height: 60px;
    line-height: calc(60em / 30);
    border:1px solid #C9A978;
    border-radius: 39px;
    border-radius: calc(39em / 30);
    margin: 60px auto 0;
    margin-top: calc(60em / 30);
    transition: all 0.5s ease;
}

.contact-btn a:hover{
    background-color: #C9A978;
    color: #3A2823;
    border: 1px solid #C9A978;
    border: calc(1em / 30) solid #C9A978;
}

@media screen and (max-width: 768px) {
    .contact-btn a {
        width: 90%;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
    }
}
/*contact-textもsp用を作成しました*/
.contact-text {
    display:block;
    color: #C9A978;
    font-size: 18px;
    font-size: calc(18em / 16);
    line-height: 1.8;
    text-align:center;
    padding-top: 26px;
    padding-top: calc(26em / 18);
    margin-bottom: 60px;
    margin-bottom: calc(60em / 18);
}

.contact-text-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .contact-text {
        display: none;
    }
    .contact-text-sp {
        display: block;
        color: #C9A978;
        font-size: 12px;
        line-height: 1.5;
        text-align:center;
        padding-top: 26px;
        margin-bottom: 60px;
    }
}

/*workshopのコンテンツです。
背景画像が文字の後ろに行くように調整しました。*/
.ws-contents {
    position: relative;
    background-size: 425px;
    background-size: calc(425em / 16);
    margin-top: 60px;
    margin-top: calc(60em / 16);
}

/*項目01、02、03の画像をz-indexで後ろに回しました*/
.ws-bg {
    position: absolute;
    z-index: -1;
    top: 30px;
    top: calc(30em / 16);
    right: 0;
    width: 510px;
    width: calc(510em / 16);
}

@media screen and (max-width: 600px) {
    .ws-bg {
        top: 0;
        height: 200px;
        width: auto;
/*
        width: 300px;
        width: calc(300em / 16);
*/
    }
}


/*1020px以上の場合要素があふれないのでデザインデータ通り画面端に
いくようにしました*/
@media screen and (min-width: 1020px){
    .ws-bg {
        right: -85px;
    }
}

/*workshopのナンバーです。webフォントや画像で代用する可能性ありです。*/
.ws-number {
    font-size: 60px;
    font-size: calc(60em / 16);
    color: #C9A978;
}

.ws_h1_upper {
    font-size: 34px;
    font-size: calc(34em / 16);
    color: #C9A978;
    line-height: 1.4;
}

.ws_h1 {
    font-size: 50px;
    font-size: calc(50em / 16);
    color: #C9A978;
}

.br-sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .ws-number {
        font-size: 37px;
    }
    .ws_h1_upper {
        font-size: 21px;
    }
    .ws_h1 {
        font-size: 31px;
        line-height: 1.2;
    }
}
@media screen and (max-width: 600px) {
        .br-sp {
        display: block;
    }
}

/*見出し下の５本線を表現*/
.ws-line-container {
    width: 455px;
    width: calc(355em / 16);
    padding-top: 20px;
    padding-top: calc(20em / 16);
    padding-bottom: 20px;
    padding-bottom: calc(20em / 16);
}
@media screen and (max-width: 600px){
    .ws-line-container {
        padding: 0px;
    }
}

.ws-line {
    content: '';
    display: block;
    width: 455px;
    width: calc(455em / 16);
    height: 1px;
    background-color: #C9A978;
    margin-bottom: 7px;
}

@media screen and (max-width: 600px) {
    .ws-line {
        width: 320px;
        width: calc(320em / 16);
        margin-bottom: 5px;
    }
}


@media screen and (max-width: 600px) {
    .ws-text-container {
        margin-top: 25px;
    }
}

.ws-text {
    width: 455px;
    width: calc(455em / 16);
    line-height: 1.8;
}
@media screen and (max-width: 768px){
    .ws-text {
        font-size: 15px;
    }
}

@media screen and (max-width: 600px){
    .ws-text {
        display: block;
        width: 100%;
    }
}

/*詳細説明の白いボックスです*/
.ws-attention_p {
    width: 353px;
    width: calc(353em / 13);
/*    height: 243px;
    height: calc(243em / 13);*/
    font-size: 13px;
    font-size: calc(13em / 16);
    line-height: 1.538461;
    padding-top: 24px;
    padding-top: calc(24em / 13);
    padding-bottom: 24px;
    padding-bottom: calc(24em / 13);
    padding-left: 10px;
    padding-left: calc(10em / 13);
    padding-right: 10px;
    padding-right: calc(10em / 13);
    border: 1px solid #fff;
    border-width: calc(1em / 13);
    margin-top: 30px;
    margin-top: calc(30em / 13);
}

.ws-attention_p a{
    color:#ff80b3;
    text-align:right;
        display: block;
    }

@media screen and (max-width: 768px) {
    .ws-attention_p {
        width: 325px;
        height: auto;
        font-size: 12px;
        padding: 20px 5px;
    }
}
@media screen and (max-width: 600px) {
    .ws-attention_p {
        font-size: 11px;
        width: 300px;
        padding: 15px 2px;
    }
}

/*コンテンツの下に来る工程の画像です*/
.ws-under_img {
    display: block;
    padding-top: 40px;
    padding-top: calc(40em / 16);
    padding-bottom: 80px;
    padding-bottom: calc(80em / 16);
}

/*最後の項目の下だけ、区切りがないようにしました。
記述的には、最後以外には区切りがあるという形です*/
.ws-under_img:not(:last-of-type) {
    border-bottom: 1px solid #fff;
    border-width: calc(1em / 16);
}

/****************
special.html装飾
*****************/
/*special-about（最初の番号２つ並びのところです）*/
.special-about-container {
    display: flex;
    justify-content: space-between;
    padding-top: 100px;
    padding-top: calc(100em / 16);
}

/*spでは縦並び*/
@media screen and (max-width: 768px){
    .special-about-container {
        display: block;
    }
}

.special-about-box {
    width: 380px;
    width: calc(380em / 16);
}

@media screen and (max-width: 768px) {
    .special-about-box {
        width: 90%;
        padding-bottom: 50px;
        margin: 0 auto 50px;
    }
    
/*    01と02の間に白線追加*/
    .special-about-box:first-of-type {
        border-bottom: 1px solid #fff;
    }
}

.special-about-number {
    font-size: 60px;
    font-size: calc(60em / 16);
    color: #C9A978;
}

.special-about_h1 {
    font-size: 40px;
    font-size: calc(40em / 16);
    line-height: 1.2;
    color: #C9A978;
}

.special-about_h1_span {
    font-size: 20px;
    font-size: calc(20em / 40);
}

/*sp時はフォントサイズ固定*/
@media screen and (max-width: 768px) {
    .special-about-number {
        font-size: 45px;
    }
    .special-about_h1 {
        font-size: 31px;
    }
    .special-about_h1_span {
        font-size: 16px;
    }
}


/*見出し下の５本線の記述です。*/
.special-about-line-container {
    width: 380px;
    width: calc(380em / 16);
    padding-top: 20px;
    padding-top: calc(20em / 16);
    padding-bottom: 20px;
    padding-bottom: calc(20em / 16;)
}

.special-about-line {
    content: '';
    display: block;
    height: 1px;
    background-color: #C9A978;
    margin-bottom: 7px;
    margin-bottom: calc(7em / 16);
}

.special-about_p {
    display: block;
    height: 280px;
    height: calc(280em / 16);
    line-height: 1.875;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
    .special-about_p {
        font-size: 15px;
        height: auto;
        padding-bottom: 20px;
    }
}

.special-about_img {
    display: block;
    width: 380px;
/*    width: calc(380em / 16);*/
}

@media screen and (max-width: 768px) {
    .special-about_img {
        width: 100%;
        margin: 0 auto;
    }
}

/*画像下の注釈テキストです。sp版作りました*/
.special-about_sub {
    font-size: 13px;
    font-size: calc(13em / 16);
    padding-top: 13px;
    padding-top: calc(13em / 13);
}
.special-about_sub-sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .special-about_sub {
        display: none;
    }
    .special-about_sub-sp {
        display: block;
        font-size: 12px;
        text-align: center;
        padding-top: 13px;
        line-height: 1.4;
    }
}

/*special-flow（受注の流れの部分です）*/
.special-flow {
    padding-top: 80px;
    padding-top: calc(80em / 16);
}

@media screen and (max-width:768px) {
    .special-flow-text {
        display: flex;
        justify-content: center;
    }
}

.special-flow_h1 {
    display: block;
    float: left;
    font-size: 36px;
    font-size: calc(36em / 16);
    color: #C9A978;
}

.special-flow_p {
    display: block;
    float: left;
    font-size: 16px;
    font-size: calc(16em / 16);
    line-height: 36px;
    line-height: calc(36em / 16);
    padding-left: 20px;
    padding-left: calc(20em / 16);
}

@media screen and (max-width: 768px) {
    .special-flow_h1 {
        font-size: 20px;
    }
    .special-flow_p {
        font-size: 15px;
        line-height: 1.5;
    }
}

/*工程の表です。sp時は2段にしたかったので、別途用意しました*/
.special-flow-container {
    display: flex;
    justify-content: space-between;
    padding-top: 26px;
    padding-top: calc(26em / 16);
}

.special-flow-container-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .special-flow-container {
        display: none;
    }
    .special-flow-container-sp {
        display: flex;
        justify-content: space-between;
        padding-top: 26px;
        width: 300px;
        margin: 0 auto;
    }
}

/*最初はline-height使ったのですが、calcで変な形になったので、padding-topで位置調整しました*/
.special-flow-item {
    display: block;
    width: 100px;
    width: calc(100em / 20);
    height: 74px;
    height: calc(74em / 20);
    font-size: 20px;
    font-size: calc(20em / 16);
    text-align: center;
    border: 1px solid #fff;
    padding-top: 27px;
    padding-top: calc(27em / 20);
}
@media screen and (max-width: 768px) {
    .special-flow-item {
    width: 80px;
    height: 60px;
    font-size: 16px;
    padding-top: 22px;
    }
}

/*偶数版は▶なので、ボーダーなくして幅もなくしました*/
.special-flow-item:nth-of-type(2n) {
    border: none;
    width: 0;
}

/*２つ目と３つ目のボックスの中は２行なのでクラスにheavyを追加しました*/
.special-flow-item.heavy {
    padding-top: 9px;
    padding-top: calc(9em / 20);
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .special-flow-item.heavy {
        padding-top: 9px;
    }
}

/*ボタンが二つ並んでいるコンテナの装飾*/
.special-btn-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.special-btn-item {
    position: relative;
    width: 380px;
    width: calc(380em / 16);
}

.special-btn-image-off {
    z-index: 0;
    transition: all 0.5s ease;
}
.special-btn-image-off:hover {
    opacity: 0;
}

/*hover時に0ff画像が消えて、隠れていたon画像が出てくるようにしました*/
.special-btn-image-on {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .special-btn-container {
        display: block;
    }
    .special-btn-item {
        width: 300px;
        margin: 0 auto;
    }
    .special-btn-item:nth-of-type(2) {
        margin-top: 40px;
        margin-top: calc(40em / 16);
    }
}

/*LUMINOUS WALL MATERIAL部分*/
.special-contents-header {
    padding-top: 110px;
    padding-top: calc(110em / 16);
    display: flex;
    justify-content: space-between;
}

.special-contents_h1 {
    display: inline-block;
    font-size: 35px;
    font-size: calc(35em / 16);
    color: #C9A978;
    padding-top: 2px;
    padding-top: calc(2em / 16);
}

.special-4-line {

}

.special-4-line span {
    display: block;
    width: 140px;
    width: calc(140em / 16);
    height: 1px;
    background-color: #C9A978;
    margin-top: 7px;
    margin-top: calc(7em / 16);
}
/*ILLUMINATIONの部分の長さは変更*/
.special-4-line.ILM-line span {
    width: 230px;
    width: calc(230em / 16);
}

/*sp時、ライン装飾は削除しました*/
@media screen and (max-width: 768px) {
    .special-contents_h1 {
        font-size: 22px;
        margin: 0 auto;
    }
    .special-4-line {
        display: none;
    }
}

/*special-contents*/
.special-contents {
    padding-top: 90px;
    padding-top: calc(90em / 16);
    padding-bottom: 70px;
    padding-bottom: calc(70em / 16);
}

/*最後のコンテンツ以外は下線を入れます*/
.special-contents{
    border-bottom: 1px solid #fff;
}
.special-contents.no-border{
    border: none;
}


.special-contents_h2 {
    font-size: 25px;
    font-size: calc(25em / 16);
    color: #C9A978;
}
@media screen and (max-width: 768px) {
    .special-contents_h2 {
        font-size: 20px;
    }
}

.special-contents_h3 {
    font-size: 25px;
    font-size: calc(25em / 16);
    padding-top: 10px;
    padding-top: calc(10em / 25);
    line-height: 1.44;
}
@media screen and (max-width: 768px) {
    .special-contents_h3 {
        font-size: 20px;
    }
}

.special-contents_p {
    font-size: 16px;
    font-size: calc(16em / 16);
    line-height: 1.875;
    padding-top: 20px;
    padding-top: calc(20em / 16);
}
.special-contents_p-sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .special-contents_p {
        display: none;
    }
    .special-contents_p-sp {
        display: block;
        font-size: 14px;
        line-height: 1.875;
        padding-top: 20px;
    }
}

.special-contents_img {
    width: 100%;
    padding-top: 20px;
    padding-top: calc(20em / 16);
}

.special-contents_sub {
    font-size: 13px;
    font-size: calc(13em / 16);
    line-height: 1.53846;
    padding-top: 10px;
    padding-top: calc(10em / 13);
}
@media screen and (max-width: 768px) {
    .special-contents_sub {
        font-size: 11px;
    }
}

/***************
PHILOSOPHY.html
****************/
/*このinterview項目がある分、全体的に下に移動するので、
positionのtopの数値がふえています*/
.interview {
    position: absolute;
    top: 525px;
    top: calc(525em / 16);
    display: flex;
    align-items: center;
    height: 100px;
    height: calc(100em / 16);
    width: 100%;
    margin: 0 auto;
    background: url(image/bg_01.png);
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .interview {
        top: 300px;
        height: 100px;
    }
}

.interview-text {
    width: 820px;
    width: calc(820em / 16);
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .interview-text {
        width: 80%;
    }
}

.interview_h1 {
    font-size: 22px;
    font-size: calc(22em / 16);
    line-height: 1.636363636;
}

@media screen and (max-width: 768px) {
    .interview_h1 {
        font-size: 20px;
    }
}

/*philosophyのメイン部分（インタビューの部分があるのでpadding-topが増えています）*/
.main.philosophy {
    padding-top: 625px;
    padding-top: calc(625em / 16);
}

@media screen and (max-width:768px) {
    .main.philosophy {
        padding-top: 400px;
        width: 80%;
    }
}

/*philo-1*/
/*philo-1はテキストが左側、philo-2は地図が左側、philo-3はテキスト2列です。*/
.philo-1 {
    position: relative;
    padding-top: 72px;
}

.philo-1_text{
    width: 384px;
}

@media screen and (max-width: 768px) {
    .philo-1_text {
        width: 100%;
    }
}

.philo_h1 {
    font-size: 25px;
    line-height: 1.44;
}

@media screen and (max-width: 768px) {
    .philo_h1 {
        font-size: 24px;
    }
}

.philo_p {
    line-height: 1.875;
    padding-top: 26px;
}

@media screen and (max-width: 768px) {
    .philo_p {
        font-size: 15px;
    }
}

/*画像ですが、縮小時に2段になってしまう現象があったので、position属性に変更しました*/
.philo-1_img {
    position: absolute;
    top: 72px;
    right: 0;
    z-index: -1;
    width: 383px;
    width: calc(383em / 16);

}

@media screen and (max-width: 768px) {
    .philo-1_img {
        position: static;
        width: 383px;
        display: block;
        margin: 20px auto 0;
    }
}

/*philo-2*/
.philo-2 {
    position: relative;
    padding-top: 72px;
}

.philo-2_text {
    float: right;
    width: 384px;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .philo-2_text {
        float: none;
        width: 100%;
        margin: 0 auto;
    }
}

/*奈良の地図画像です。デザインでは若干左に飛び出していたのでそれを反映しました*/
.philo-2_img {
    position: absolute;
    top: 72px;
    left: -18px;
    display: block;
    width: 439px;
    width: calc(439em / 16);
    z-index: -1; 
}

@media screen and (max-width: 768px) {
    .philo-2_img {
        position: static;
        display: block;
        width: 439px;
        margin: 20px auto 0;
    }
}

/*philo-3*/
.philo-3 {
    padding-top: 72px;
}

.philo-3_text {
    display: flex;
    justify-content: space-between;
}

.philo-3_p {
    display: block;
    width: 390px;
    width: calc(390em / 16);
    line-height: 1.875;
    padding-top: 26px;
    padding-top: calc(26em / 16);
}

/*sp時に2枠のテキストを1枠に切り替える*/
.philo-3_text-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .philo-3_text {
        display: none;
    }
    .philo-3_text-sp {
        display: block;
    }
    .philo-3_p-sp {
        font-size: 15px;
        line-height: 1.85;
        padding-top: 26px;
    }
}


/*philo-middle_img*/
.philo-middle_img {
    width: 100%;
    padding-top: 50px;
    padding-top: calc(50em / 16);
}

/*philo-border*/
.philo-border {
    width: 100%;
    padding-top: 126px;
    padding-top: calc(126em / 16);
}

/*carrer-container*/
.carrer-container {
    display: flex;
    justify-content: space-between;
    padding-top: 93px;
    padding-top: calc(93em / 16);
}

@media screen and (max-width:768px) {
    .carrer-container {
        display: block;
    }
}
/*アスペクト比がずれるのを回避するためにimgをdiv内に*/
.carrer-box {
    width: 384px;
    width: calc(384em / 16);
}

.carrer_img {
    display: block;
    width: 384px;
    width: calc(384em / 16);
    margin-top: 60px;
    margin-top: calc(60em / 16);
}

@media screen and (max-width: 768px) {
    .carrer_img {
        display: block;
        width: 384px;
        margin: 0 auto;
    }
}

/*sp時縦並びに*/
@media screen and (max-width: 768px) {
    .carrer-box {
        width: 100%;
    }
}

.carrer_h1 {
    font-size: 25px;
    font-size: calc(25em / 16);
}

@media screen and (max-width: 768px) {
    .carrer_h1 {
        font-size: 25px;
        padding-top: 30px;
        text-align: center;
    }
}

.carrer_p {
    line-height: 1.875;
    padding-top: 18px;
    padding-top: calc(18em / 16);
}

@media screen and (max-width: 768px) {
    .carrer_p {
        font-size: 15px;
        text-align: center;
    }
}

.carrer_table {
    margin-top: 18px;
}

@media screen and (max-width: 768px){
    .carrer_table {
        margin-top: 30px;
    }
}

.carrer_table tr th {
    width: 60px;
    width: calc(60em / 16);
    border-right: 1px solid #fff;
    text-align: left;
}


.carrer_table tr td {
    padding-left: 27px;
    padding-left: calc(27em / 16);
    line-height: 1.875
}

@media screen and (max-width: 768px) {
    .carrer_table tr th, .carrer_table tr td {
        font-size: 15px;
    }
}
/****************
ITEMS.html装飾
*****************/
@media screen and (max-width: 768px){
    .main.items {
        width: 80%;
    }
}

/*01～03の見出し項目の装飾です*/
.items-about-container {
    position: relative;
    padding-top: 90px;
    padding-top: calc(90em / 16);
}


/*背景画像です。1020px以上の場合要素があふれないのでデザインデータ通り画面端にいくようにし、それ以下の場合右に要素があふれないようにしました*/
.items-about-bg {
    position: absolute;
    z-index: -1;
    top: 90px;
    top: calc(90em / 16);
    right: 0;
    width: 508px;
    width: calc(508em / 16);
}
@media screen and (min-width: 1020px){
    .items-about-bg {
        right: -85px;
    }
}
@media screen and (max-width: 768px){
    .items-about-bg {
        position: static;
        display: block;
        width: 100%;
        margin: 20px auto 0;
    }
}


.items-about_number {
    font-size: 60px;
    font-size: calc(60em / 16);
    color: #c9a978;
}

@media screen and (max-width: 768px){
    .items-about_number {
        font-size: 37px;
    }
}

.items-about_h1 {
    font-size: 65px;
    font-size: calc(65em / 16);
    color: #c9a978;
}

@media screen and (max-width: 768px){
    .items-about_h1 {
        font-size: 31px;
    }
}

/*小見出しの部分です。デザインが安定するのでテーブル表記にしました*/
.items-about_table {
    color: #c9a978;
    font-size: 35px;
    font-size: calc(35em / 16);
}

@media screen and (max-width: 768px){
    .items-about_table {
        font-size: 20px;
    }
}

.items-about_table tr th {
    width: 64px;
    width: calc(64em / 35);
}

.items-about_p {
    width: 455px;
    width: calc(455em / 17);
    font-size: 17px;
    font-size: calc(17em / 16);
    line-height: 1.82352941;
    color: #c9a978;
    padding-top: 16px;
    padding-top: calc(16em / 17);
}

@media screen and (max-width: 768px){
    .items-about_p {
        font-size: 15px;
        width: 100%;
    }
}

/*縦長の文章のコンテナですsp時は縦並びに代わります*/
.items-essay-container {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .items-essay-container {
        display: block;
        width: 100%;
    }
}

.items-essay-box {
    width: 378px;
    width: calc(378em / 16);
    margin-top: 142px;
    margin-top: calc(142em / 16);
}
@media screen and (max-width: 768px) {
    .items-essay-box {
        width: 100%;
    }
}

/*本来は35pxなのですが、下のほうと同じく行が増えてしまいました。
全体のフォントサイズを合わせるという意味も含めて30pxに設定しました。*/
.items-essay_h1 {
    display: block;
    font-size: 30px;
    font-size: calc(30em / 16);
    color: #c9a978;
    text-align: center;
    padding-bottom: 30px;
    padding-bottom: calc(30em / 30);
    border-bottom: 1px solid #c9a978;
}

@media screen and (max-width: 768px) {
    .items-essay_h1 {
        font-size: 20px;
    }
}

.items-essay_h2 {
    font-size: 25px;
    font-size: calc(25em / 16);
    line-height: 1.44;
    letter-spacing: 0.05em;
    margin-top: 24px;
    margin-top: calc(24em / 25);
}

@media screen and (max-width: 768px) {
    .items-essay_h2 {
        font-size: 18px;
        text-align: center;
    }
}

.items-essay_p {
    margin-top: 35px;
    margin-top: calc(35em / 16);
    line-height: 1.875;
}

@media screen and (max-width: 768px) {
    .items-essay_p {
        font-size: 15px;
    }
}

.items-essay_img {
    width: 378px;
    width: calc(378em / 16);
    margin: 28px 0 72px;
    margin-top: calc(28em / 16);
    margin-bottom: calc(72em / 16);
}

@media screen and (max-width: 768px) {
    .items-essay_img {
        display: block;
        width: 100%;
        margin: 20px auto;
    }
}

/*craftsman、職人紹介項目です*/
.craftsman-container {
}

@media screen and (max-width: 768px){
    .craftsman-container {
        width: 60%;
        margin: 0 auto;
    }
}

.craftsman-name-box {
    float: left;
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    .craftsman-name-box {
        float: none;
        margin-bottom: 20px;
    }
}

.craftsman-name {
    display: block;
    font-size: 21px;
    font-size: calc(21em / 16);
    line-height: 1.42857;
    width: 176px;
    width: calc(176em / 21);
    padding: 6px 0;
    padding-top: calc(6em / 21);
    padding-bottom: calc(6em /21);
}
.craftsman-name:first-of-type {
    border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
    .craftsman-name {
        display: block;
        font-size: 15px;
        text-align: center;
        margin: 0 auto;
    }
}

.craftsman_img {
    float: right;
    width: 174px;
    width: calc(174em / 16);
}

@media screen and (max-width: 768px) {
    .craftsman_img {
        float: none;
        display: block;
        width: 174px;
        margin: 0 auto;
    }
}

.craftsman_p {
    clear: both;
    font-size: 13px;
    font-size: calc(13em / 16);
    line-height: 1.5384615;
    padding-top: 18px;
    padding-top: calc(18em / 13);
}

@media screen and (max-width: 768px) {
    .craftsman_p {
        font-size: 12px;
    }
}

/*01~04のライトの紹介の横並び部分です。*/
.items-light-container {
    display: flex;
    justify-content: space-between;
    padding-top: 100px;
    padding-top: calc(100em / 16);
}

@media screen and (max-width: 768px) {
    .items-light-container {
        display: block;
    }
}

.items-light-box {
    width: 175px;
    width: calc(175em / 16);
    color: #c9a978;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .items-light-box {
        width: auto;
        margin-top: 30px;
    }
}

.items-light_number {
    font-size: 35px;
    font-size: calc(35em / 16);
}

@media screen and (max-width: 768px) {
    .items-light_number {
        font-size: 30px;
    }
}

/*Aiのデータでは35pxですが、文字があふれるため30pxにしました。
また、sp時は文字の改行をなくすものに入れ替わります*/
.items-light_h1 {
    font-size: 30px;
    font-size: calc(30em / 16);
    padding: 18px 0 30px;
    padding-top: calc(18em / 30);
    padding-bottom: calc(30em / 30);
    border-bottom: 1px solid #c9a978;
}

.items-light_h1-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .items-light_h1 {
        display: none;
    }
    .items-light_h1-sp {
        display: block;
        width: 260px;
        font-size: 20px;
        padding: 20px 0 5px;
        border-bottom: 1px solid #c9a978;
        margin: 0 auto;
    }
}

.items-light_img {
    padding-top: 56px;
    padding-top: calc(56em / 16);
    width: 175px;
    width: calc(175em / 16);
}

/*「オンラインショップへ」ボタン装飾です。*/
.btn-read-more a{
    font-size: 29px;
    font-size: calc(29em / 16);
    display:block;
    width:807px;
    width: calc(807em / 29);
    height:60px;
    height: calc(60em / 29);
    color: #C9A978;
    text-decoration: none;
    text-align:center;
    line-height: 60px;
    line-height: calc(60em / 29);
    border:1px solid #C9A978;
    border-radius: 39px;
    border-radius: calc(39em / 29);
    margin: 90px auto 0;
    margin-top: calc(90em / 29);
    transition: all 0.5s ease;
}

.btn-read-more a:hover{
    background-color: #C9A978;
    color: #3A2823;
    border: 1px solid #C9A978;
}

@media screen and (max-width: 768px) {
    .btn-read-more a {
        width: 100%;
        height: 40px;
        font-size: 20px;
    }
}

/*03 ABOUT DESIGN部分の横並びコンテナです。
02とは若干違うので別表記にしました。*/
.items-design-container {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

@media screen and (max-width: 768px) {
    .items-design-container {
        display: block;
    }
}

.items-design-box {
    width: 232px;
    color: #c9a978;
    text-align: center;
}
/*sp時の縦並びです。*/
@media screen and (max-width: 768px) {
    .items-design-box {
        margin: 0 auto;
    }
    .items-design-box:not(:first-of-type) {
        margin-top: 50px;
    }
}

.items-design_number {
    font-size: 35px;
    font-size: calc(35em / 16);
}

@media screen and (max-width: 768px){
    .items-design_number {
        font-size: 30px;
    }
}

/*Aiのデータでは35pxですが、文字があふれるため30pxにしました*/
.items-design_h1 {
    display: block;
    font-size: 30px;
    font-size: calc(30em / 16);
    padding: 20px 0 34px;
    padding-top: calc(20em / 30);
    padding-bottom: calc(34em / 30);
    border-bottom: 1px solid #c9a978;
}

@media screen and (max-width: 768px){
    .items-design_h1 {
        font-size: 20px;
    }
}

.items-design_img {
    padding-top: 28px;
    padding-top: calc(28em / 16);
    width: 232px;
    width: calc(232em / 16);
}

@media screen and (max-width: 768px) {
    .items-design_img {
        width: 100%;
    }
}

.items-design_p {
    color: #fff;
    line-height: 1.875;
    text-align: left;
    padding-top: 6px;
    padding-top: calc(6em / 16);
}

@media screen and (max-width: 768px){
    .items-design_p {
        font-size: 15px;
    }
}

/****************
STORE.html装飾
*****************/
/*お店情報のテーマ部に追加された電話番号です*/
.store-tel {
    display: flex;
}

.store-tel_p {
    font-size: calc(16em / 16);
    text-align: center;
    padding: 10px 32px;
    padding-top: calc(10em / 16);
    padding-right: calc(32em / 16);
    padding-bottom: calc(10em / 16);
    padding-left: calc(32em / 16);
    border: 1px solid #fff;
    margin: 16px auto 0;
}
.store-tel_num a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 768px){
    .store-tel_p {
        font-size: 15px;
    }
}

/*テーマ下の三つのえの画像です。*/

.store_img {
    width: 100%;
    padding-top: 62px;
    padding-top: calc(62em / 16);
}

/*access部分（グーグルマップ、地図画像）装飾*/
.access-container {
    margin-top: 110px;
    margin-top: calc(110em / 16);
}

.access_h1 {
    font-size: 36px;
    font-size: calc(36em / 16);
    letter-spacing: 0.14em;
}

@media screen and (max-width: 768px){
    .access_h1 {
        font-size: 31px;
        text-align: center;
    }
}

/*グーグルマップ（レスポンシブサイズ変更に対応させました）*/
.google_map{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 34.5%; /* 283px/820px 高さ調節*/
    margin-top: 37px;
    margin-top: calc(37em / 16);
}
.google_map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .google_map {
        padding-top: 60%;
    }
}

/*グーグルマップ下文章*/
.access_p_upper {
    font-size: 17px;
    font-size: calc(17em / 16);
    padding-top: 24px;
    padding-top: calc(24em / 17);
}

.access_p_lower {
    font-size: 16px;
    font-size: calc(16em / 16);
    padding-top: 16px;
    padding-top: calc(16em / 16);
}

@media screen and (max-width: 768px) {
    .access_p_upper, .access_p_lower {
        font-size: 12px;
        text-align: center;
    }
}

/*詳細地図のコンテナ*/
.detail-container {
    margin-top: 82px;
    margin-top: calc(82em / 16);
}

.detail-box-left {
    display: inline-block;
    float: left;
}

@media screen and (max-width: 768px) {
    .detail-box-left {
        display: block;
        float: none;
    }
}

.detail_h1 {
    font-size: 20px;
    font-size: calc(20em / 16);
}

@media screen and (max-width: 768px){
    .detail_h1 {
        font-size: 20px;
        text-align: center;
    }
}

.detail-map {
    width: 398px;
    width: calc(398em / 16);
    margin-top: 42px;
    margin-top: calc(42em / 16);
}

@media screen and (max-width: 768px){
    .detail-map {
        display: block;
        width: 398px;
        margin: 20px auto 0;
    }
}

.detail-box-right {
    float: right;
}

@media screen and (max-width: 768px){
    .detail-box-right {
        float: none;
        margin-top: 40px;
    }
}

.detail_img {
    display: block;
    width: 370px;
    width: calc(370em / 16);
    margin-bottom: 25px;
    margin-bottom: calc(25em / 16);
}

@media screen and (max-width: 768px){
    .detail_img {
        width: 90%;
        margin: 25px auto;
    }
}

.detail_p {
    line-height: 1.875;
    margin-top: 26px;
    margin-top: calc(26em / 16);
}
@media screen and (max-width: 768px){
    .detail_p {
        font-size: 12px;
        text-align: center;
    }
}

/*********************
現在製作中の仮装飾です。
**********************/

.seisakuchu {
    text-align: center;
    padding-top: 130px;
    font-size: 17px;
}