
/* 
Theme Name: ISEMISE
Author: tokka
Author URI: https://tokka.co.jp/
Version: 1.0
*/
@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%;
    scroll-padding-top: 75px;
    scroll-behavior: smooth;
}
body {
    width: 100%;
    height: 100%;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2.125;
    font-size: 1.6rem;
    letter-spacing: normal;
}
h2 {
    font-size: 4rem;
    color: #C77272;
    font-family: "Cormorant Infant", serif;
    font-weight: 400;
    font-style: normal;
}
h3 {
    font-family: "Cormorant Infant", serif;
    font-weight: 400;
    font-style: normal;
}
p {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
}
a {
    text-decoration: none;
    transition:all 0.3s ease;
    color: black;
}
a:hover{
    transition:all 0.3s ease;
    outline:none;
    opacity: 0.8;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
@media (max-width: 800px) {
    body {
        line-height: 1.8;
    }
    p {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 3rem;
    }
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.inner {
    width: 83.3333%;
    max-width: 1200px;
    margin: 0 auto;
}
.outer {
    max-width: 1920px;
    margin: 0 auto;
}
.flex{
    display: flex;
}
.align__center{
    align-items: center;
}
.align__baseline{
    align-items: baseline;
}
.align__st{
    align-items: stretch;
}
.justify__between{
    justify-content: space-between;
}
.sp {
    display: none !important;
}
.pc768 {
    display: block !important;
}
.sp768 {
    display: none !important;
}
.sp600 {
    display: none;
}
.sp500 {
    display: none;
}
.sp1000 {
    display: none;
}
.sub_ttl {
    display: block;
    font-size: 2rem;
    margin: 10px 0 20px;
}
@media (max-width: 1000px) {
    .sp1000 {
        display: block;
    }
    .pc1000 {
        display: none;
    }
}
@media (max-width: 800px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: unset !important;
    }
    .inner {
        width: 88.5%;
    }
    .outer {
        width: 100%;
    }
    .sub_ttl {
        font-size: 1.6rem;
    }
}
@media (max-width: 600px){
    .sp600 {
        display: block;
    }
}
@media (max-width: 500px){
    .sp500 {
        display: block;
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    top: 0;
    height: 75px;
    z-index: 999;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    line-height: 1.5;
}
header a {
    color: #707070;
}
#header {
    transition-duration: 0.2s;
}
#header.active {
    box-shadow: 0 0 10px rgba(0,0,0,0.4);   
}
header .pc__logo {
    /* width: 120px; */
    width: 60px;
    position: absolute;
    /* top: 40px; */
    /* left: calc(50% - 120px / 2); */
    left: calc(50% - 60px / 2);
    top: 15px;
}
.nav_pc {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.8rem;
    display: flex;
    gap: 100px;
}
.nav_pc ul {
    width: 50%;
    display: flex;
    justify-content: space-around;
    text-align: center;
}
header ul li span {
    display: block;
}
header ul li span.sm {
    font-size: 1.5rem;
}
.nav_sp {
    display: none;
}
.sp__logo {
    display: none;
}
header li {
    flex-grow: 1;
}
header .ec_btn a {
    display: block;
    max-width: 140px;
}
header .ec_btn a:hover {
    transform: scale(1.05);
}
/* header .header_ec_btn { */
    /* position: absolute; */
    /* max-width: 150px; */
    /* top: 50%; */
    /* right: 30px; */
    /* transform: translate(0, -50%); */
/* } */
@media (max-width: 1200px) {
    header ul li span {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    .nav_pc {
        display: none;
        font-size: 1.5rem;
    }
    .pc__logo {
        display: none;
    }
    .sp__logo {
        display: block;
        width: 100px;
    }
    .sp__logo img {
        display: block;
        width: 70px;
        margin: 0 auto;
    }
    .nav_sp {
        display: flex;
        width: calc(100% - 100px);
        text-align: center;
        height: 100%;
    }
    .nav_sp ul {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
    }
    .nav_sp ul li span:nth-of-type(1) {
        display: none;
    }
    .nav_sp ul li {
        border-left: #C8C8C8 1px solid;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav_sp a {
        width: 100%;
    }
    .nav_sp ul li span.sm {
        font-size: 1.6rem;
    }
}
@media (max-width: 500px) {
    header ul li span.sm {
        font-size: 1.4rem;
    }
}
/* ------------------------------------- /
/  main
/* ------------------------------------- */
main {
    position: relative;
    overflow: hidden;
}
/* ------------------------------------- /
/  top__mv
/* ------------------------------------- */
.main_visual {
    /* height: calc(100vh - 75px); */
    background-color: #FCF0F0;
}
.swiper {
    margin: 75px auto 0;
    max-width: 1200px;
    position: relative;
    /* overflow: hidden; */
}
.swiper_sp {
    display: none;
}
.swiper-wrapper {
    width: 100%;
    /* height: calc(100vh - 75px); */
}
.swiper-slide {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    height: 100%;
    object-fit: cover;
}
.swiper [class^="swiper-button-"]::after{
    font-size: 30px;
}
.swiper-button-next, .swiper-button-prev {
    color: white;
    opacity: 0.5;
}
.swiper-pagination-bullet {
    background: white;
    opacity: 0.8;
}
.swiper-pagination-bullet-active {
    background: pink;
    opacity: 0.8;
}
@media (max-width: 1200px){
}
@media (max-width: 1000px){
    .main_visual {
        background-size: cover;
    }
}
@media (max-width: 600px){
    .swiper_pc {
        display: none;
    }
    .swiper_sp {
        display: block;
    }
}

/* ------------------------------------- /
/  concept
/* ------------------------------------- */
.contents {
    padding-top: 50px;
    background: linear-gradient(180deg, #FCF0F0, white 40%);
}
.concept {
    display: flex;
}
.concept > div {
    width: 50%;
}
.concept > div:nth-of-type(1) > img {
    width: 70%;
}
.concept__right {
    display: flex;
    align-items: flex-end;
}
.concept__right h2 {
    line-height: 1;
}
.concept__right > div {
    padding-left: 3%;
}
@media (max-width: 800px) {
    .concept {
        padding-top: 20px;
        flex-direction: column-reverse;
    }
    .concept > div:nth-of-type(1) > img {
        margin: 30px auto;
        width: 100%;
    }
    .concept > div {
        width: 100%;
    }
    .concept__right > div {
        padding-left: 0;
    }
}
/* ------------------------------------- /
/  foods
/* ------------------------------------- */
.foods {
    display: flex;
    margin-top: 50px;
}
.foods > div {
    width: 50%;
}
.foods__left > img {
    padding: 0 15% 0;
}
.foods__right {
    display: flex;
    align-items: center;
}
.foods__right > div {
    padding-left: 8%;
    padding-right: 4%
}
@media (max-width: 800px) {
    .foods {
        flex-direction: column-reverse;
        gap: 30px;
        margin-top: 10px;
    }
    .foods > div {
        width: 100%;
    }
    .foods__left > img {
        padding: 0 5%;
    }
    .foods__right > div {
        padding-left: 0;
        padding-right: 0
    }
}
/* ------------------------------------- /
/  goods
/* ------------------------------------- */
.goods {
    display: flex;
    margin-bottom: 100px;
}
.goods > div {
    width: 50%;
}
.goods__left {
    display: flex;
    align-items: center;
}
.goods__left > div {
    padding-left: 12%;
    padding-right: 9%;
}
.goods__right > img {
    padding: 0 10% 0 4%;
}
@media (max-width: 800px) {
    .goods {
        flex-direction: column;
        margin-bottom: 20px;
        gap: 30px;
    }
    .goods > div {
        width: 100%;
    }
    .goods__left > div {
        padding-left: 0;
        padding-right: 0;
    }
    .goods__right > img {
        padding: 0 5%;
    }
}
/* ------------------------------------- /
/  ec_link
/* ------------------------------------- */
.ec_link {
    background-image: url('../img/ec_bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ec_link img {
    width: 60px;
    margin: 30px auto 10px;
}
.ec_link h3 {
    font-size: 3rem;
    text-shadow: 1px 1px 2px white;
}
.ec_link p {
    text-shadow: 1px 1px 2px white;
}
.ec_link > a {
    background-color: #C77272;
    color: white;
    width: 270px;
    height: 50px;
    margin: 30px auto 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sp450 {
    display: none;
}
@media (max-width: 450px) {
    .sp450 {
        display: block;
    }
}
.ec_bnr {
    padding: 80px 0;
}
.ec_bnr a {
    display: block;
    max-width: 500px;
    margin: 0 auto;
}
.ec_bnr a:hover {
    transform: scale(1.05);
}
@media (max-width: 800px) {
    .ec_bnr {
        padding: 40px 0;
    }
}
/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: linear-gradient(150deg, white 13%, #FAF0EA);
    padding-bottom: 70px;
}
.access {
    padding-top: 100px;
}
.access > .ttl {
    display: flex;
    align-items: baseline;
    line-height: 1;
    gap: 15px;
    margin-bottom: 50px;
}
.access .sub_ttl {
    margin: 0;
}
.access__content {
    display: flex;
}
.access__content > div {
    width: 50%;
}
.access_left > iframe {
    padding-left: 10%;
    width: 100%;
    height: 100%;
}
.access_right {
    padding-left: 8%;
}
.access_right th {
    width: 95px;
}
.footer {
    text-align: center;
}
.footer img.daijingu {
    width: 240px;
    margin: 100px auto 30px;
}
.footer img.logo {
    width: 120px;
    margin: 100px auto 30px;
}
.copyright {
    margin-top: 40px;
}
@media (max-width: 1000px) {
    .access_left > iframe {
        padding-left: 0;
    }
}
@media (max-width: 800px) {
    footer {
        padding-bottom: 40px;
    }
    .access {
        padding-top: 40px;
    }
    .access > .ttl {
        margin-bottom: 20px;
    }
    .access__content {
        flex-direction: column;
        gap: 30px;
    }
    .access__content > div {
        width: 100%;
    }
    .access_right {
        padding-left: 0;
    }
    .access_right table {
        margin: 0 auto;
    }
    .access_left > iframe {
        padding-left: 0;
        height: 400px;
    }
    .footer img.daijingu {
        margin: 40px auto 20px;
    }
    .footer img.logo {
        margin: 40px auto 20px;
    }
    .copyright {
        margin-top: 20px;
    }
}