@charset "utf-8";
 /* スタイルシート */
body {
    font-family: 'Catanaran','Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2c2c2c;
}
img {
    max-width: 100%;
}
.topPage header {
    height: 30vh;
    background-color: #f2cbd0;
    padding-top: 40px;
    margin-bottom: 40px;
}
.topPage header h1 img {
    width: 1140px;
    margin-top: 30px;
}
.topPage header h1 {
    text-align: center;
}
.linkList {
    padding: 0 20px;
}
.linkList li {
    margin-bottom: 40px;
}
.linkList li a {
    display: block;
    background-color: #f7dee1;
}
.linkList li span {
    display: block;    
    padding: 12px 15px 10px;
    font-size: 18px;
}
.linkList li a:hover {
    filter: drop-shadow(10px 10px #d6ccc2)
}
.subPage header {
    border-top: 14px solid#f5f5f5;
    padding-top: 40px;
    margin-bottom: 30px;
}
.subPage header h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.subPage header h1 span {
    background-image: linear-gradient(135deg, #f9b16e 0%,#f68080 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
}
.subPage h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .17em;
    margin-bottom: 10px;
}
.subPage .lead {
    text-align: center;
    margin-bottom: 30px;
    font-size: 11px;
    letter-spacing: .05em;
    line-height: 2;
}
.subPage h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 30px;
}
.subPage main {
    padding: 0 20px;
}
.footer {
background: url(../images/footer_mt2.svg) no-repeat right top/200px;
    margin-top: 60px;
    padding-top:  68px;
}
footer p {
    background-color: #f7dee1;
    margin-top: 30px;
}
footer p img {
    width: 130px;
}
.conceptDetailSec p img {
    height: 180px;
    width: 180px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;

}
.conceptDateilSec .text {
    font-size: 12px;
    line-height: 1.78;
}
.conceptDateilSec img {
    margin-bottom: 14px;
}
.conceptDateilSec {
    margin-bottom: 50px;
}
.menuList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.menuList li {
    flex-basis: 28%;
    margin-bottom: 28px;
}
.menuList li img {
    filter: drop-shadow(1px 2px 3px #dddddd);
}
.menuDetailSec {
    margin-bottom: 50px;
}




.subPage .mailSec p {
    text-align: center;
    
}
.subPage p {
    text-align: center;
    font-size: 11px;
    letter-spacing: .05em;
    line-height: 2;
}
.contact{
    width: 300px;
    margin: 0 auto;
    border: 3px solid #eee; 
    position: relative;
    font-size: 14px;
}
@media screen and (min-width:920px){
.topPage{
    display: flex;
}
.topPage header {
    flex-basis: 38%;
}
.topPage header h1 {
    display: flex;
    height: 100vh;
    padding-bottom: 100px;
}
.topPage img {
    max-width: 100%;
    
}
.topPage main {
    flex-basis: 62%;
}
.linkList {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: space-around;
}
.linkList li {
    flex-basis: 47%;
    margin-bottom: 20px;
}
.linkList::before {
    content: "";
    width: 47%;
    background: url(../images/i.P\ DESIGNHPonly.svg)no-repeat center center/72%;
    
}
.topPage main {
    display: flex;
    align-items: center;
}
.topPage header {
    height: 100vh;
    margin-bottom: 0;
}
.subPage main {
    max-width: 1280px;
    margin: 0 auto;
}
.subPage header h1 {
    font-size: 60px;
}
.header h1 img {
    margin-top: 300px;
}
.onlySP {
    display: none
}
.subPage h2 {
    font-size: 34px;
    margin-bottom: 36px;
}
.subPage .lead {
    font-size: 18px;
    margin-bottom: 160px;
    }
    .subPage h3 {
        font-size: 50px;
        margin-bottom: 40px;
    }
    .subPage .contact {
        width: 780px;
        margin: 0 auto;
        border: 3px solid #eee; 
        position: relative;
        font-size: 18px;

    }
    .subPage p {
        font-size: 18px;
    }
    .menuDetailSec {
        margin-bottom: 160px;
    }
}
.gMenu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99;
  }
  /* メニューアイコンを画面右上に固定しています */
  .gMenu .menu-icon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 12px;
    padding-top: 5px;
    height: 12px;
  }
  /* メニューアイコン（三本線）の真ん中の線です */
  .gMenu .menu-icon .navicon {
    background: #2c2c2c;; /* 色は自由に変更可能です */
    display: block;
    height: 2px; /* 太さ */
    width: 31px; /* 長さ */
    position: relative;
    transition: background .4s ease-out; /* 形が変わる時のアニメーション */
  }
  /* メニューアイコン（三本線）の上と下の線を疑似要素で追加 */
  .gMenu .menu-icon .navicon::before,
  .gMenu .menu-icon .navicon::after {
    background: #2c2c2c;; /* 色は自由に変更可能です */
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .4s ease-out; /* 形が変わる時のアニメーション */
    width: 100%;
  }
  .gMenu .menu-icon .navicon::before {top: 10px;} /* 位置を上にずらしています */
  .gMenu .menu-icon .navicon::after {top: -10px;} /* 位置を下にずらしています */
  /* 表示されるメニューです */
  .gMenu .menu {
    background-color: rgba(255,255,255,0.9);
    overflow: hidden;
    max-height: 0; /* ★最初は高さを0にして非表示状態に */
    transition: max-height .6s; /* 表示されるときのアニメーション */
    text-align: center;
  }
  /* メニュー部分のデザインです */
  .gMenu .menu li:first-of-type {
    padding-top: 50px;
  }
  .gMenu .menu li a {
    display: block;
    padding: 24px 20px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .gMenu .menu li a:hover {
    background-color: #f4f4f4;
  }
  /* チェックボックスは常に非表示です */
  .gMenu .menu-btn {
    display: none;
  }
  /* ▼▼▼以下はチェックボックスがONの時の状態です▼▼▼ */
  .gMenu .menu-btn:checked ~ .menu {
    max-height: 338px; /* ★チェックボックスがオンの時高さを338pxにして表示させます */
    transition: max-height .6s;
  }
  /* メニューボタンの中央の線を非表示に */
  .gMenu .menu-btn:checked ~ .menu-icon .navicon {background: transparent;}
  
  /* メニューボタンの上下の線を45度傾けて✕印を作ります */
  .gMenu .menu-btn:checked ~ .menu-icon .navicon::before {transform: rotate(-45deg);top: 0;}
  .gMenu .menu-btn:checked ~ .menu-icon .navicon::after {transform: rotate(45deg);top: 0;}