@charset "UTF-8";

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}

html {
    font-size: 62.5%;
    /*scroll-behavior: smooth;*/
    scroll-padding-top: 100px;
}

img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

body {
    font-size: 1.8rem;
    line-height: 1.8;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
    color: #1c2b33;
}

/* -----------------header-------------- */
header {
    width: 100%;
    z-index: 10;
    height: 100px;
    background-color: #fafafa;
    position: fixed;
    top: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.logo {
    padding: 0.7rem;
    z-index: 100;
}

h1 {
    font-size: 4.6rem;
    line-height: 1;
    text-align: end;
    color: #fafafa;
    text-shadow: #1c2b33 3px 0 10px;
    letter-spacing: 3px;
    font-family: "BIZ UDMincho", serif;
    font-weight: 700;
    font-style: normal;
}

h1 span {
    font-size: 2.4rem;
}

/* -----------------ナビゲーション-------------- */

.globalnav ul {
    /* align-items: center; */
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.globalnav li {
    list-style-type: none;
    text-align: center;
    margin: 0 15px;
    font-weight: bold;
}

.globalnav ul a {
    text-decoration: none;
    color: #1c2b33;
    display: inline-block;
    position: relative;
}

.globalnav li::after {
    content: "/";
    /* padding-left: 7px; */
}

.globalnav ul a:hover {
    color: #b48519;
}

.globalnav .pc_none {
    display: none;
}
.globalnav .pc_none {
    display: none;
}

/* 言語切替ボタン  */
.selectbox {
    display: inline-flex;
    position: relative;
    top: 0;
    right: 0;
}

.selectbox::after {
    position: absolute;
    right: 15px;
    top: 20px;
    width: 10px;
    height: 7px;
    background-color: #fafafa;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
    pointer-events: none;
}

.selectbox select {
    appearance: none;
    min-width: 70px;
    height: 2em;
    padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
    border: 1px solid #1c2b33;
    background-color: #1c2b33;
    color: #fafafa;
    font-size: 2.4rem;
    cursor: pointer;
    font-family: "";
    line-height: 1;
}

/* -----------------mainvisual-------------- */
.mv-image {
    position: relative;
}
.mv {
    display: block;
}

.main {
    margin-top: 100px;
    position: relative;
}

h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
h1.searchtitle {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    text-shadow: none;
    font-family: "Shippori Mincho", serif;
    font-size: 2.4rem;
}

/* -----------------section全部-------------- */
.wapper {
    background-image: url(../img/bg.jpg);
    background-color: rgba(255, 255, 255, 0.2);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-bottom: 30px;
    width: 100%;
    height: 100%;
}

.container {
    max-width: 1024px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.7);
}

h2 {
    font-size: 4.2rem;
}

/* -----------------section お知らせ-------------- */
/* .news-box {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
} */

.row {
    justify-content: center;
}

.news-item {
    display: grid;
    flex-direction: column;
}

.news a {
    color: #1c2b33;
    text-decoration: none;
}

.news a:hover {
    opacity: 0.7;
}

.news-item-time {
    font-size: 1.6rem;
    opacity: 1.8;
}

.news-item-time,
.news-item-title {
    text-align: left;
    text-decoration: underline;
}

.news-item-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* .content-main-image {
    width: 850px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
} */

.content-item-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    margin-bottom: 50px;
}

/* -----------------section about-------------- */
.text_brown {
    text-align: center;
    color: brown;
    margin-bottom: 10px;
}

.about h3,
.story h3 {
    text-align: center;
    line-height: 1;
    font-size: 3rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.about span,
.story span {
    font-size: 2.4rem;
}

.about .box-area {
    margin-top: 3rem;
    display: flex;
    justify-content: space-around;
}

.about-text {
    color: #1c2b33;
    font-size: 2rem;
}

/* -----------------about以外のsection共通-------------- */
/* section h2の横線 */
h2 {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.about h2::after,
.about h2::before {
    content: none;
}

h2::before,
h2::after {
    background-color: #5c5c5c;
    content: "";
    height: 3px;
    width: 30px;
}

h2::before {
    margin-right: 15px;
}

h2::after {
    margin-left: 15px;
}

/* 画像の上に文字重ね */
.overlap {
    position: relative;
    margin: 0.3rem;
    margin-top: 1.5rem;
}

.overlap .overlap-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    text-align: center;
    font-weight: 400;
}

.overlap-text {
    line-height: 1;
    transition: 0.6s;
    width: 450px;
}

.overlap-text:hover {
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #fafafa,
        0 0 40px #fafafa, 0 0 50px #fafafa, 0 0 60px #fafafa, 0 0 70px #fafafa;
    color: #ffffff;
    font-size: 3.1rem;
}

/* -----------------section experience-------------- */
.experience .overlap .small-text-pc {
    font-size: 1.6rem;
    margin-top: 10px;
    text-align: left;
}

.experience .small-text-sp {
    display: none;
}

/* -----------------section taste-------------- */
.taste-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.sticker_box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.sticker_box img {
    max-width: 150px;
    /* transform: rotate(-12deg);  */
    margin: 0 15px;
    object-fit: contain;
}

.sticker_text {
    text-align: left;
}

.sticker_text p:nth-child(1) {
    font-size: 3rem;
    color: #b48519;
}

/* .sticker_text img{
  max-width: 230px;
} */

.sticker_box p {
    margin-top: 30px;
}

/* -----------------footer-------------- */
footer {
    background-color: #213c83;
    color: #fafafa;
    text-align: center;
    font-weight: 400;
}

footer a {
    color: #fafafa;
    text-decoration: none;
}

.footer_box {
    padding: 50px 0;
}

.copy_bg {
    text-align: right;
    color: #fafafa;
    margin-top: 30px;
    font-size: 1.6rem;
}
.footer_box {
    padding: 50px 0;
}

.copy_bg {
    text-align: right;
    color: #fafafa;
    margin-top: 30px;
    font-size: 1.6rem;
}

.tel-link-none {
    margin-left: 20px;
}

.footer_logo {
    margin: 15px 0;
}

.footer_text {
    font-size: 1.6rem;
}

.copyright {
    font-size: 1.2rem;
    padding: 15px 0;
    text-align: center;
}

@media (max-width: 1300px) {
    .globalnav ul {
        gap: 1.5rem;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1300px) {
    h1 {
        font-size: 3.6rem;
    }
    .globalnav ul {
        gap: 0;
    }
}
@media (min-width: 851px) {
    .pcnone {
        display: none;
    }
}

@media (max-width: 850px) {
    .wapper {
        background-size: contain;
        background-repeat: repeat;
    }
    h1 {
        letter-spacing: normal;
    }

    /* ハンバーガメニュー */
    .globalnav ul {
        display: block;
    }
    .globalnav .pc_none {
        display: block;
        font-size: 3rem;
    }

    header nav {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background: rgba(250, 250, 250, 0.9);
        padding-top: 100px;
        transition: 0.5s;
    }

    header nav ul {
        display: block;
        height: 100%;
        padding-bottom: 50px;
        text-align: center;
    }

    header nav li {
        margin-bottom: 30px;
        list-style-type: none;
    }

    header nav a {
        font-size: 2.5rem;
        color: #fafafa;
        text-decoration: none;
        transition: 0.5s;
    }

    header nav a:hover {
        color: #b48519;
    }

    .nav-button {
        width: 70px;
        height: 50px;
        margin-left: auto;
        position: relative;
    }

    .nav-button span {
        width: 30px;
        height: 2px;
        background-color: #3a3a3a;
        position: absolute;
        left: 20px;
        transition: 0.5s;
    }

    .nav-button span:nth-child(1) {
        top: 12px;
    }

    .nav-button span:nth-child(2) {
        top: 23px;
    }

    .nav-button span:nth-child(3) {
        top: 34px;
    }

    .menu-open nav {
        left: 0;
    }

    .menu-open .nav-button span:nth-child(1) {
        top: 23px;
        transform: rotate(315deg);
    }

    .menu-open .nav-button span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .menu-open .nav-button span:nth-child(3) {
        top: 23px;
        transform: rotate(-315deg);
    }

    header span {
        z-index: 1;
    }

    /* .globalnav ul a {
    font-size: 1.8rem;
  } */

    .globalnav li::after {
        content: none;
        padding-left: 0;
    }

    .globalnav li {
        text-align: left;
        width: 210px;
        margin: 15px auto;
    }

    .overlap-text:hover {
        font-size: none;
    }

    .gallery .overlap-text {
        width: 300px;
    }

    .experience .overlap .small-text-pc {
        font-size: 1.2rem;
    }

    .taste .overlap-text {
        font-size: 2.4rem;
    }
}

@media (max-width: 700px) {
    .footer_logo {
        width: 50px;
    }

    footer {
        padding: 30px 0;
    }
}

@media (max-width: 650px) {
    html {
        scroll-padding-top: 80px;
    }
    header {
        height: 80px;
    }

    .main {
        margin-top: 80px;
    }

    .logo {
        width: 120px;
    }

    .selectbox select {
        font-size: 1.4rem;
        height: 2.4em;
    }

    .selectbox::after {
        top: 15px;
    }

    h1 {
        font-size: 2.4rem;
        width: 300px;
    }

    h1 span {
        font-size: 1.6rem;
    }

    section {
        padding-top: 20px;
        margin-top: 30px;
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }

    h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    /* -----------------section about-------------- */

    .about h3 {
        font-size: 2rem;
    }

    .about span {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1.8rem;
    }

    .about .box-area {
        flex-wrap: wrap;
    }

    .about .overlap-text {
        width: 200px;
    }

    /* -----------------section news-------------- */
    .news-box {
        gap: 1rem;
    }

    .news-item-time {
        font-size: 1.2rem;
    }

    .news-item-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .overlap-text p {
        font-size: 2.4rem;
    }

    .overlap .overlap-text {
        font-size: 2.4rem;
        width: 350px;
    }

    .search-word-btn {
        max-width: 260px;
    }

    /* -----------------section experience-------------- */

    .experience .small-text-pc {
        display: none;
    }

    .experience .small-text-sp {
        display: block;
        color: #3a3a3a;
        line-height: 1.2;
        text-align: left;
        margin: 0 auto;
        font-size: 1.4rem;
    }

    .experience a {
        text-decoration: none;
    }

    .experience .overlap-image {
        width: 70vh;
        height: 130px;
        object-fit: cover;
    }

    /* -----------------section taste-------------- */
    .taste-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .taste .overlap-image {
        width: 70vh;
        height: 130px;
        object-fit: cover;
    }
    header nav a {
        font-size: 2.5rem;
        color: #fafafa;
        text-decoration: none;
        transition: 0.5s;
        line-height: 2rem;
    }

    header nav a:hover {
        color: #b48519;
    }
}

@media (max-width: 450px) {
    .selectbox::after {
        top: 10px;
    }

    .selectbox select {
        font-size: 1rem;
    }
    header nav a {
        font-size: 2rem;
        color: #fafafa;
        text-decoration: none;
        transition: 0.5s;
        line-height: 2rem;
    }

    header nav a:hover {
        color: #b48519;
    }
}

/* add2025 */
/* -----------------section videogallery-------------- */
.umipuro-logo {
    max-width: 140px;
    margin-left: auto;
    display: block;
}
