@charset "utf-8";
/*
Theme Name: 
Theme URL: 
Description: 
Version: 1.0.0
Author: 
Author URI: 
*/
/* 上記WordPress用 */



/* --- ResetCSS START --- */

/* 要素のフォントサイズやマージン・パディング */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
	font-weight: normal;
	font-style: normal;
    vertical-align:baseline;
}

/* スクロールバーを常に表示 */
html {
	overflow-y: scroll;
}

/* 行の高さをフォントサイズと同じに */
body {
    line-height:1;
}
 
/* section要素などをブロック要素へ変更 */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/* リストスタイルを削除 */
ol, ul {
    list-style:none;
}

/* 引用符の表示が出ないように */
blockquote, q {
    quotes:none;
}
 
/* blockquote要素、q要素の前後にコンテンツを追加しないように */
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
/* a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃える */
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	text-decoration: none;
    color: #000000;
}
 
/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるように */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できる
mark要素は、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
 
/* テキストに打ち消し線を付ける */
del {
    text-decoration: line-through;
}
 
/* IEではデフォルトで点線を下線表示する設定ではないので、下線がつくように
マウスオーバー時にヘルプカーソルの表示が出るように */
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
/* 隣接するセルのボーダーを重ねて表示し、間隔を0に指定 */
table {
    border-collapse:collapse;
    border-spacing:0;
}
 
/* 水平罫線のデフォルトである立体的な罫線を不可視に */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
/* 縦方向の揃え位置を中央揃えに指定 */
input, select {
    vertical-align:middle;
}

/* 画像を縦に並べたときに余白が出ないように */
img {
	vertical-align: bottom;
	font-size:0;
	line-height: 0;
	border: 0;
}

/* 文字を太字に */
strong {
	font-weight: bold;
}

/* サイズにpaddingとborderを含める */
*, *:before, *:after {
	box-sizing: border-box;
}

/* clearfix */
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

/* --- ResetCSS END --- */


.sp-nav {
	display: none;
}

html {
	font-size: 62.5%;
}

body {
	font-size: 1.6rem;
	position: relative;
    color: #4C5864;
    font-family: YuGothic,游ゴシック,Hiragino Kaku Gothic ProN,Hiragino Sans,Meiryo,sans-serif;
}

.p-header {
    position: fixed;
    z-index: 999;
    margin-top: -70px;
    background-color: #FFFFFF;
    width: 100%;
}

/*----------------------  header  ----------------------*/

.logo img {
    max-width: 60%;
    image-rendering: -webkit-optimize-contrast;
}

.header-nav {
    width: 100%;
    height: 70px;
    position: relative;
}

.drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 70px;
    padding: 0 .5em;
}

.all-menu ul li a {
    display: block;
    font-weight: bold;
    padding: 2rem;
    border-bottom: 1px dotted #CCCCCC;
    color: #333333;
    text-decoration: none;
}

.all-menu ul li a:hover {
    background-color: rgba(0,0,0,0.5);
    color: orange;
}

.all-menu {
    text-align: center;
    background-color: #FFFFFF;
    transition: .5s ease;
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
}

.all-menu.open {
    display: block;
    height: 100vh;
}

.toggle {
    display: block;
    position: fixed;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    right: 10px;
}

.toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: 3px solid #333333;
}

.toggle span:nth-child(1) {
    top: 5px;
}

.toggle span:nth-child(2) {
    top: 15px;
}

.toggle span:nth-child(3) {
    top: 25px;
}

.toggle.active span:nth-child(1) {
    top: 18px;
    transform: rotate(-45deg);
}

.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3) {
    top: 18px;
    transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
    .drawer {
        padding: 0 1em;
    }
    
    .logo img {
        max-width: 250px;
    }
    
    .header-nav {
        display: flex;
    }
    
    .toggle {
        display: none;
    }
    
    .all-menu {
        width: 100%;
        font-size: 1.3rem;
        background-color: transparent;
        margin: 0 10px;
        transform: translate(0);
        display: block;
    }
    
    .all-menu ul {
        height: 70px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        margin-right: 20px;
    }
    
    .all-menu ul li a {
        padding: 1em;
        border-bottom: none;
    }
    
    .all-menu ul li a:hover {
        background-color: transparent;
    }
}

@media screen and (max-width: 768px) {
    .c-header {
        height: 60px;
        padding: 30px 10px;
    }

    .header-logo {
        flex-basis: 200px;
    }

    .header-logo a img {
        width: 200px;
    }
}



@media screen and (max-width : 1024px){
/*画面幅が1024pxまでの時*/

}

.icon-hamburger {
  background: #fff;
  cursor: pointer;
  height: 60px;
  position: relative;
  right: -2rem;
  width: 63px;
  display: none;
  margin-bottom: 0.4em;
}

.icon-hamburger span {
  background: #000000;
  display: block;
  height: 5%;
  right: -100px;
  position: absolute;
  top: 50%;
  width: 84%;
}

.icon-hamburger span::before,
.icon-hamburger span::after {
  background: #000000;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  width: 100%;
}

.icon-hamburger span::before {
  margin-top: -38%;
}

.icon-hamburger span::after {
  margin-top: 25%;
}
	
/*ここから下がハンバーガーメニューのスタイル*/
.sp {
  display: none;
}

#modal-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  height: 120%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

@media screen and (max-width: 768px) {
.pc {
  display: none;    
}
.sp {
  display: block;
}
.icon-hamburger {
  display: inline-block;
}
.header-menu .header-menu-lists {
    -webkit-transform: translate(-50%, -50%);
    background: #fff;
    display: none;
    height: auto;
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 100;
  }
  .header-menu .header-menu-lists .header-menu-item a {
    border-bottom: 1px solid #ccc;
    border-right: none;
  }
  .header-menu .header-menu-lists .header-menu-item:last-child a {
    border-bottom: none;
  }

}

/*----------------------  footer  ----------------------*/
.p-footer {
    padding-top: 100px;
}

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

.footer-head-logo {
    width: 258px;
    padding-bottom: 20px;
}

.footer-head-info {
    line-height: 1.4;
    letter-spacing: .05em;
    font-size: 1.4rem;
}

.fotter-copy-txt {
    width: 376px;
    align-items: center;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #333333;
    margin: 50px 0 20px;
    font-size: 1.4rem;
}

.footer-menu-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0 20px;
}

.footer-sns-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0 20px;
}

.facebook-icon img,
.insta-icon img,
.twitter-icon img,
.line-icon img {
    width: 35px;
}

.youtube-icon img {
    width: 37px;
}

.footer-menu2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.copyright {
    font-size: 1.1rem;
    text-align: center;
    padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .p-footer {
        padding-top: 50px;
    }
    
    .p-footer .container {
        padding: 0;
    }

    .footer-contents {
        flex-direction: column;
    }

    .footer-head-logo {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    .footer-head-info {
        line-height: 1.4;
        letter-spacing: .05em;
        font-size: 1.4rem;
        text-align: center;
    }

    .footer-menu {
        flex-direction: column;
        padding-bottom: 10px;
        border-bottom: none;
        margin: 50px auto 10px;
        font-size: 1.4rem;
        width: 90%;
    }

    .footer-menu-list {
        width: 100%;
        margin: 0 auto;
        order: 2;
        gap: 0 10px;
    }

    .footer-sns-list {
        margin: 0 auto 50px;
        width: 100%;
        order: 1;
        gap: 0 10px;
    }

    .facebook-icon img,
    .insta-icon img,
    .twitter-icon img,
    .line-icon img {
        width: 35px;
    }

    .youtube-icon img {
        width: 37px;
    }

    .footer-menu2 {
        width: 90%;
        margin: 0 auto 30px;
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .footer-menu2 li {
        margin-left: .8rem;
    }
}



@media screen and (max-width : 1024px){
/*画面幅が1024pxまでの時*/
	
}



/*----------------------              ----------------------
                          page_title
  ----------------------              ----------------------*/






@media screen and (max-width : 1024px){
/*画面幅が1024pxまでの時*/
	
}


@media screen and (max-width : 599px){
/*画面幅が599pxまでの時*/
	
}


/*---  パンくずリスト  ---*/


.bread {
	margin-top: 24px;
}

.breadcrumb {
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb li {
	display: inline;/*横に並ぶように*/
	list-style: none;
	font-weight: bold;/*太字*/
}

.breadcrumb li:after {/* >を表示*/
	content: '>';
	padding: 0 0.2em;
	color: #555;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #D1D1D1;/*色*/
	font-size: 1.3rem;
}

.breadcrumb li:last-child a {
	color: #333333;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}


@media screen and (max-width : 599px){
/*画面幅が599pxまでの時*/

/*---  パンくずリスト  ---*/

	.breadcrumb li:after {/* >を表示*/
		padding: 0 0.2em;
	}

	.breadcrumb li a {
		font-size: .9rem;
	}
}









