/*
Theme Name: Iimura Zouen CSS
Author: Tsukubair
Version: 1.0
Text Domain: wp-theme
*/

@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

:root {
    --main-color: #e1fad3;
    --sub-color: #f8f8d9;
    --accent-color: #263238;
    --button-color: #fcebc7;
    --border-style: 1px solid #333;
    --main-txt-color: #43a111;
    --hamburger-color: #000080;
    --card-bg: #fff;
    --bg-color: #fff;
    --font-serif: Lato, "BIZ UDMincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --font-sanserif: Lato, "BIZ UDGothic", "Noto Sans JP", "Helvetica Neue", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    --font-size: calc(1em + 0.2vw);
    --font-size-link: 1em;
    --font-size-button: calc(1em + 0.4em);
}

a {
    text-decoration: none;
    font-size: var(--font-size-link);
    color: var(--accent-color);
}

a:hover {
    color: var(--main-txt-color);
}

ul,ol {
    list-style: none;
}

body {
    font-family: var(--font-serif);
    font-size: var(--font-size);
    margin: 0 auto;
    background-color: var(--main-color);
}

h1,h2,h3,h4 {
    font-family: var(--font-serif);
}

h1.site-header-logo {
    font-family: var(--font-serif);
    font-weight: bold;
    font-size: 2rem;
}

h1.page-header-title {
    font-family: var(--font-serif);
    color: #ffffff;
    font-size: 3rem;
    font-weight: 600;
}

/* Paragraph */
p {
  font-size: 1rem;
  font-weight: normal;
  color: inherit;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

em > a,
li > a {
    text-decoration: none;
    font-size: var(--font-size-link);
    color: var(--main-color);
}

em > a:hover,
li > a:hover {
    color: var(--sub-color);
}

li.menu-item > a {
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--main-text-color);
    font-family: var(--font-serif);
}

li.menu-item > a:hover {
    color: var(--sub-color);
}

/* 全体のベース */
.top-header {
    width: 100%;
    z-index: 999;
    background-color: var(--main-color);
}

.top-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--bg-color);
    box-shadow: 0 3px 5px rgba(155, 155, 155, 0.3);
}


/* 固定ヘッダー */
.sticky-header {
    position: sticky;
    top: 0;
}

/* ヘッダーの内側 */
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    transition: top 0.3s ease;
}


/* ロゴ */
.logo img {
    height: 40px;
}

/* ナビゲーション */

.nav-menu li {
    margin: 0 10px;
}

/* Contact */
.top-contact {
    font-size: 0.9em;
    color: #333;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.2em;
}

.top-contact span {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 0 8px;
    letter-spacing: 0;
}

/* ハンバーガーボタン */
.menu-toggle {
    display: none;
    font-size: 1.5em;
    background: none;
    border: none;
    cursor: pointer;
}

.main-nav {
    transition: top 0.3s ease;
}


.main-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--bg-color);
    box-shadow: 0 3px 5px rgba(155, 155, 155, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    justify-content: center;
    gap: 50px;
}

main.i-container {
    background-image: url(../img/bg_02.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

main.page-container {
    background-image: url(../img/bg_02.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0 0 30px 0;
}

/* ----- Top-View ----- */

.top-view {
    background-image: url(../img/bg_01.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    letter-spacing: 0.6em;
    color: #fff;
    position: relative;
}


.top-view h1 {
    position: relative;
    font-size: 5rem;
    font-weight: bold;
    z-index: 11;
    color: var(--main-txt-color);
}

.top-view h1::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 97%;
    bottom: 10px;
    left: 0;
    background-color: var(--sub-color);
    height: 0.3em;
    opacity: 0.8;
}

.top-view img {
    position: absolute;
    z-index: 5;
    width: 100%;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.4);
    height: 100%;
    opacity: 0.6;
}

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

.sec-header {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0 50px;
}

.sec-header h2 {
    font-size: 2.4em;
    color: var(--main-txt-color);
    text-shadow: 12px 6px 0 rgba(171, 255, 60, 0.5);
}

.sec-header span {
    display: block;
    color: #dbbc09;
    font-size: 0.4em;
    text-shadow: none;
    letter-spacing: 0.2em;
    text-indent: 0.4em;
}

.sec-header-2 {
    width: 100%;
    margin: 0 auto;
}

.sec-header-2 h2 {
    font-size: 2.4em;
    color: var(--bg-color);
    text-shadow: 12px 6px 0 rgba(255, 255, 255, 0.2);
}

.sec-header-2 span {
    display: block;
    color: #fff4b3;
    font-size: 0.4em;
    text-shadow: none;
    letter-spacing: 0.2em;
    text-indent: 0.4em;
}

.s-header-1 {
    background-color: var(--sub-color);
    padding: 100px 0 50px 100px;
}

.s-header-2 {
    background-color: var(--bg-color);
    padding: 100px 0 0 100px;
}

.s-header-3 {
    background-color: var(--sub-color);
    padding: 100px 0 50px 0;
}

.s-header-4 {
    padding: 100px 0 50px 450px;
    position: relative;
}

.s-header-5 {
    padding: 100px 0 50px 100px;
}

/* ----- sec-1 ----- */

.sec-1 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    height: 80vh;
    line-height: 2em;
    letter-spacing: 0.2em;
    text-indent: 1em;
    position: relative;
    z-index: 10;
    background-color: var(--sub-color);
}

.sec-1 div.i-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 0 50px;
    padding: 30px 50px;
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    box-shadow: 10px 10px 10px #666;
    color: var(--accent-color);
}

.sec-1 h3 {
    text-align: center;
    font-size: 1.4em;
    letter-spacing: 0.4em;
    margin: 30px auto;
    font-family: var(--font-serif);
    color: var(--accent-color);
}

.sec-1 p {
    position: relative;
    z-index: 5;
    font-size: 1em;
    font-family: var(--font-serif);
    color: var(--accent-color);
}

.sec-1::after {
    position: absolute;
    content: "";
    background-image: url(../img/f8f8d9_after.webp);
    background-size: cover;
    max-width: 1400px;
    width: 100%;
    height: 200px;
    bottom: -100px;
    left: 0;
    z-index: -1;
} 

.sec-1 .img-1 {
    position: absolute;
    z-index: 1;
    width: 500px;
    border-radius: 10px;
    top: 1em;
    right: -5em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.sec-1 .img-2 {
    position: absolute;
    z-index: 1;
    width: 400px;
    border-radius: 10px;
    bottom: 5em;
    right: 2em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.img-1.fade-in,
.img-2.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ----- sec-2 ----- */

.sec-2 {
    max-width: 1200px;
    width: 100%;
    background-color: var(--bg-color);
    margin: 0 auto;
    padding: 30px 50px;
    position: relative;
}

.sec-2 ul.work {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.sec-2 ul.work li {
    margin: 50px auto;
    position: relative;
    font-family: var(--font-serif);
}

.sec-2 ul.work li a.mask {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin: 0 auto;
    color: var(--accent-color);
}

.sec-2 ul.work li a.mask:hover {
    color: var(--main-txt-color);
}

.sec-2 ul.work li a.mask-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    max-width: 1100px;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin: 0 auto;
    color: var(--accent-color);
}

.sec-2 ul.work li a.mask-3:hover {
    color: var(--main-txt-color);
}

.sec-2 ul.work li span.mask-2 {
    max-width: 1000px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 10px 10px 0;
}

.sec-2 ul.work li span.mask-4 {
    max-width: 1000px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}


.sec-2 ul.work li img {
    width: 100%;
    object-fit: cover;
}

.sec-2 ul.work li a.mask div.txt-box {
    padding: 10px 20px;
    line-height: 2.4em;
    max-width: 320px;
    width: 100%;
    max-height: 300px;
    height: 100%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px 0 0 10px;
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
}

.sec-2 ul.work li a.mask-3 div.txt-box {
    padding: 10px 20px;
    line-height: 2.4em;
    max-width: 320px;
    width: 100%;
    max-height: 300px;
    height: 100%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0 10px 10px 0;
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
}


.sec-2 ul.work li div.txt-box h3 {
    font-size: 2em;
    position: relative;
    display: inline-block;
}

.sec-2 ul.work li div.txt-box h3::after {
    position: absolute;
    content: "";
    background-color: var(--main-txt-color);
    width: 100%;
    height: 3px;
    bottom: -12px;
    left: 0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sec-2 ul.work li a.mask:hover div.txt-box h3::after,
.sec-2 ul.work li a.mask-3:hover div.txt-box h3::after {
    background-color: var(--main-txt-color);
}

.sec-2 ul.work li div.txt-box p {
    font-size: 1.0rem;
    color: var(--accent-color);
    max-width: 270px;
    width: 100%;
    line-height: 1.6em;
    margin: 30px auto;
}

.sec-2 ul.work li div.txt-box span {
    display: block;
    margin: 80px 10px 0 auto;
    position: relative;
    width: 100px;
}

.sec-2 ul.work li div.txt-box span::after {
    position: absolute;
    content: "→";
    top: 0;
    right: 1em;
    opacity: 0;
    transition: all 0.3s ease;
}

.sec-2 ul.work li a.mask:hover div.txt-box span::after,
.sec-2 ul.work li a.mask-3:hover div.txt-box span::after {
    right: -1em;
    opacity: 1;
}

.sec-2::after {
    position: absolute;
    content: "";
    background-image: url(../img/ffffff_after.webp);
    background-size: cover;
    max-width: 1400px;
    width: 100%;
    height: 200px;
    bottom: -100px;
    left: 0;
    z-index: 1;
}

/* ----- sec-3 ----- */

.img-3 {
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    padding: 30px 0;
}

.sec-3 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--sub-color);
    padding: 30px 50px 100px;
}

.sec-3-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    margin: 0 auto;
    gap: 30px;
}

.sec-3-container span.mask {
    display: block;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
}

.sec-3-container span.mask img {
    width: 100%;
    object-fit: cover;
}


.sec-3-container figcaption h3 {
    text-align: center;
    letter-spacing: 0.4em;
}

.sec-3-container figcaption h3 span.txt {
    display: block;
    color: #dbbc09;
    font-size: 0.7em;
    text-shadow: none;
    letter-spacing: 0.2em;
    margin: 20px auto 0;
}

.fig {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fig.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ----- sec-4 ----- */

.img-4 {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 500px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
}

.img-4 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.sec-4 {
    max-width: 1200px;
    width: 100%;
    height: 200px;
    margin: 0 auto;
    position: relative;
}

.sec-4 div.i-container {
    background-color: rgba(255, 255, 255, 0.65);
    position: absolute;
    z-index: 5;
    top: 0;
    right: 10%;
    transform: translateY(-60%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.sec-4 div.i-container span.txt {
    display: block;
    font-size: 1.4em;
}

.sec-4 div.i-container p {
    max-width: 800px;
    width: 100%;
    font-size: 1em;
    border-top: 3px dotted var(--main-txt-color);
    padding: 20px 0;
    margin: 20px auto 0;
    font-family: var(--font-serif);
}

.recruit-btn {
    display: block;
    width: 16rem;
    height: 4.5rem;
    padding: 1rem;
    color: var(--bg-color);
    background-color: var(--main-txt-color);
    border-radius: 50px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    transition: all 0.3s ease-in;
}

.recruit-btn:hover {
    background-color: var(--sub-color);
    color: #333;
    box-shadow: 0 0 10px var(--accent-color);
}

/* ----- sec-5 ----- */

.sec-5 {
    display: flex;
    background-color: var(--main-color);
    height: 300px;
    margin: 0 auto;
    padding: 0 0 50px;
}

.sec-5 div.dt-area {
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    white-space: nowrap;
}

.sec-5 div.dt-area dl {
    width: 50%;
    margin: 0 auto;
    line-height: 2em;
    font-family: var(--font-serif);
}

.sec-5 div.dt-area dt img {
    width: 300px;
}

.sec-5 div.map {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

.sec-5 div.map iframe {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
}

/* ----- sec-6 ----- */

.sec-6 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
}

.sec-6 ul {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 10px;
}

.sec-6 ul li {
    display: flex;
    margin:  0 auto 30px;
    font-family: var(--font-serif);
}

.sec-6 ul li time {
    display: inline-block;
    font-size: 0.9em;
    width: 130px;
    margin: 0 50px 0 0;
}

/* ----- footer ----- */

footer {
    background-color: var(--main-txt-color);
    width: 100%;
    color: var(--bg-color);
    margin: 100px auto 0;
    padding: 30px 0 0;
    font-family: var(--font-serif);
}

.foot-flex {
    display: flex;
    justify-content: center;
    column-gap: 100px;
    align-items: center;
}

footer p {
    font-size: 1.2em;
    text-align: center;
    padding: 10px 0;
    display: inline-block;
    margin: 0 auto;
    width: 350px;
}

footer ul.footer-nav-menu,ul.footer-nav-menu-2 {
    line-height: 2.4em;
    width: 350px;
}

footer ul.footer-nav-menu a,ul.footer-nav-menu-2 a {
    color: var(--bg-color);
}

footer .site-footer-copyright p.copyright {
    display: block;
    font-size: 0.8em;
    text-align: center;
    padding: 10px 0 20px;
}

/* ----- about Start ----- */

.page-header {
    background-color: var(--main-txt-color);
    color: var(--bg-color);
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
}

/* ----- a-sec-1 ----- */

.a-sec-1 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 0;
    font-family: var(--font-serif);
}

.a-sec-table {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border: none;
    border-collapse: collapse;
}

.a-sec-table th {
    background-color: var(--main-txt-color);
    color: var(--bg-color);
    padding: 20px 0 20px 20px;
    text-align: left;
}

.a-sec-table td {
    background-color: #fff;
    padding: 20px 0 20px 20px;
    text-align: left;
}

/* ----- a-sec-2 ----- */

.a-sec-2 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 100px;
    padding: 0 20px 100px;
}

.a-sec-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    width: 100%;
    gap: 20px;
    margin: 0 auto;
    place-items: center;
}

.a-sec-2 div.img-tag {
    max-width: 300px;
    width: 100%;
}

.a-sec-2 div.img-tag img {
    width: 100%;
    object-fit: cover;
}

/* ----- enkaku ----- */

.enkaku {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: var(--font-serif);
}

.enkaku th {
    width: 100px;
}

.enkaku img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

.enkaku-table {
    max-width: 500px;
    width: 100%;
}

/* ----- service Start ----- */

.s-sec-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
    padding: 50px 0;
    font-family: var(--font-serif);
}

.s-sec-1 img {
    max-width: 550px;
    width: 100%;
    border-radius: 10px;
}

.txt-box h2 {
    background-color: var(--main-txt-color);
    color: var(--bg-color);
    padding: 5px 0 5px 15px;
}

.txt-box p {
    padding: 10px;
    text-indent: 1em;
}

/* ----- s-sec-2 ----- */

.s-sec-2 {
    margin: 0 auto 100px;
    padding: 50px 0;
}

/*
.s-sec-2 div.container {
    display: grid;
    grid-template-columns: repeat(39, 1fr);
    grid-template-rows: repeat(2, auto);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
    row-gap: 20px;
}

.s-sec-2 div.container div {
    max-width: 500px;
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.s-sec-2 div.container div img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.imgrotate#item-11 {
    grid-column: 1 / 11;
    grid-row: 1 / 2;
}

.imgrotate#item-12 {
    grid-column: 11 / 21;
    grid-row: 1 / 2;
}

.imgrotate#item-13 {
    grid-column: 21 / 30;
    grid-row: 1 / 2;
}

.imgrotate#item-14 {
    grid-column: 31 / 40;
    grid-row: 1 / 2;
}

.imgrotate#item-21 {
    grid-column: 1 / 11;
    grid-row: 2 / 3;
}

.imgrotate#item-22 {
    grid-column: 11 / 21;
    grid-row: 2 / 3;
}

.imgrotate#item-23 {
    grid-column: 21 / 30;
    grid-row: 2 / 3;
}

.imgrotate#item-24 {
    grid-column: 31 / 40;
    grid-row: 2 / 3;
}

.imgrotate#item-31 {
    grid-column: 1 / 11;
    grid-row: 3 / 4;
}

.imgrotate#item-32 {
    grid-column: 11 / 21;
    grid-row: 3 / 4;
}

.imgrotate#item-33 {
    grid-column: 21 / 30;
    grid-row: 3 / 4;
}

.imgrotate#item-34 {
    grid-column: 31 / 40;
    grid-row: 3 / 4;
}

.imgrotate#item-41 {
    grid-column: 1 / 11;
    grid-row: 4 / 5;
}

.imgrotate#item-42 {
    grid-column: 11 / 21;
    grid-row: 4 / 5;
}

.imgrotate#item-43 {
    grid-column: 21 / 30;
    grid-row: 4 / 5;
}

.imgrotate#item-44 {
    grid-column: 31 / 40;
    grid-row: 4 / 5;
}

.imgrotate#item-51 {
    grid-column: 1 / 11;
    grid-row: 5 / 6;
}

.imgrotate#item-52 {
    grid-column: 11 / 21;
    grid-row: 5 / 6;
}

.imgrotate#item-53 {
    grid-column: 21 / 30;
    grid-row: 5 / 6;
}

.imgrotate#item-54 {
    grid-column: 31 / 40;
    grid-row: 5 / 6;
}



.s-sec-2 div.container div img {
    width: 100%;
    transition: opacity 1s ease;
    opacity: 1;
}
*/



/* ----- Recruit Start ----- */

/* ----- r-sec-1 ----- */

.r-sec-1 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    font-family: var(--font-serif);
}

.r-sec-1 .inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.r-sec-1 .inner h2 {
    text-align: center;
    margin: 50px auto 0;
}

.r-sec-1 h2.img-3 {
    padding: 50px 0;
}

.r-sec-1 h2.img-3 img {
    width: 100%;
}

.r-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    width: 100%;
    margin: 100px auto 0;
    padding: 0 0 100px;
    gap: 100px;
    place-items: center;
}

.r-grid div.g-item span.mask {
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
}

.r-grid div.g-item span.mask img {
    object-fit: cover;
    width: 100%;
}

.r-grid div.g-item p {
    text-align: center;
    margin: 30px auto 0;
}

.r-sec-1 .inner-2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    margin: 50px auto 0;
    gap: 20px;
}

.r-sec-1 .inner-2 div.txt-box {
    max-width: 500px;
    width: 100%;
    padding: 0 0 0 30px;
    margin: 0 auto;
}

.r-sec-1 .inner-2 div.txt-box h3 {
    text-align: center;
    min-width: 350px;
    font-size: 1.4em;
    margin: 0 auto 20px;
    font-family: var(--font-serif);
}

.r-sec-1 .inner-2 img {
    width: 450px;
    border-radius: 32% 68% 42% 58% / 43% 40% 60% 57%;
    transition: all 0.2s ease;
    margin: 0 auto;
}

.r-table {
    border: none;
    border-collapse: collapse;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    font-family: var(--font-serif);
}

.r-table tr {
    border-top: 1px dotted #333;
}

.r-table tr:last-child {
    border-bottom: 1px dotted #333;
}

.r-table th {
    padding: 30px 0 30px 10px;
    font-size: 1.2em;
    text-align: left;
}

.r-table td {
    padding: 30px 0 30px 10px;
    font-size: 1em;
}

.r-link {
    max-width: 400px;
    width: 100%;
    margin: 30px auto;
    font-size: 1.6em;
    text-align: center;
    padding: 0 0 50px;
}

.r-link-btn {
    display: inline-block;
    max-width: 200px;
    width: 100%;
    height: 3rem;
    padding: 0.5rem;
    color: var(--bg-color);
    background-color: var(--main-txt-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.r-link-btn:hover {
    background-color: var(--sub-color);
    box-shadow: 0 0 3px var(--main-txt-color);
}

/* ----- Contact Start ----- */
/* ----- c-sec-1 ----- */

.c-sec-1 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 100px;
    padding: 50px 0;
    font-family: var(--font-serif);
}

.c-sec-1 div {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.c-sec-table {
    max-width: 800px;
    width: 100%;
    margin: 50px auto 0;
    border: none;
    border-collapse: collapse;
    font-family: var(--font-serif);
}

.c-sec-table th {
    background-color: var(--main-txt-color);
    color: var(--bg-color);
    padding: 20px 0 20px 20px;
    text-align: left;
    min-width: 100px;
}

.c-sec-table td {
    background-color: #fff;
    padding: 20px 0 20px 20px;
    text-align: left;
    min-width: 200px;
}

input[required] {
    max-width: 400px;
    width: 100%;
    background-color: rgba(209, 255, 211, 0.65);
    height: 32px;
    padding: 3px 0 3px 10px;
    border-radius: 5px;
    font-size: 24px;
    border: none;
}

textarea {
    max-width: 400px;
    width: 100%;
    background-color: rgba(209, 255, 211, 0.65);
    height: 250px;
    padding: 3px 0 3px 10px;
    border-radius: 5px;
    font-size: 24px;
    border: none;
}

.c-txt {
    max-width: 800px;
    width: 100%;
    margin: 50px auto 0;
}

.c-sec-1 .btn-1 {
    display: block;
    width: 200px;
    height: 50px;
    padding: 10px;
    color: var(--bg-color);
    background-color: var(--main-txt-color);
    border-radius: 50px;
    margin: 50px auto 0;
    transition: all 0.3s ease-in;
    border: none;
    font-size: 1em;
    cursor: pointer;
}

.c-sec-1 .btn-1:hover {
    background-color: var(--sub-color);
    color: #333;
    box-shadow: 0 0 10px var(--accent-color);
}

/* ハンバーガーナビゲーション */

body.menu-open {
    overflow: hidden;
}

.hamburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    background: var(--hamburger-color);
    border-radius: 3px;
}

/* メディアナビ初期非表示 */
.media-nav {
    display: none;
}

/* 通常ナビ表示 */
.normal-nav {
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 100;
}

