@charset "utf-8";
/* ---- カラー */
:root {
    /* カラー */
    --color-00: #3A3A3A;
    --color-01: #F5ECE2;
    --color-02: #CA3A1C;
    --color-03: #FABE00;
    --color-04: #0099CC;
    --color-05: #FFB6A7;
    --color-06: #FFEAA9;
    --color-07: #AAEAFF;    
    --color-08: #CA1C4D;
    --color-white: #fff;
    --color-black: #000;
    /* 時間 */
    --duration-025: .25s;
    --duration-050: .5s;
    --duration-075: .75s;
    --duration-100: 1s;
    --duration-150: 1.5s;
    --duration-200: 2s;
    /* フォントサイズ */
    --fs-08: 0.8rem;
    --fs-12: 1.2rem;
    --fs-16: 1.6rem;
    --fs-18: 1.8rem;
    /* ボックスサイズ */
    --width-01: 1200px;
    --width-02: 1375px;
    --width-03: 1335px;
    --width-04: 700px;
    --heigt-01: 600px;
}
.color-00 { color: var(--color-00); }
.color-01 { color: var(--color-01); }
.color-02 { color: var(--color-02); }
.color-03 { color: var(--color-03); }
.color-04 { color: var(--color-04); }
.color-05 { color: var(--color-05); }
.color-08 { color: var(--color-08); }
.color-white { color: var(--color-white); }
.color-black { color: var(--color-black); }
.bg-color-00 { background-color: var(--color-00); }
.bg-color-01 { background-color: var(--color-01); }
.bg-color-02 { background-color: var(--color-02); }
.bg-color-03 { background-color: var(--color-03); }
.bg-color-04 { background-color: var(--color-04); }
.bg-color-05 { background-color: var(--color-05); }
.bg-color-white { background-color: var(--color-white); }
.bg-color-black { background-color: var(--color-black); }
/* ---- フォント */
body {
    background-color: var(--color-01);
    line-height: 1;
    font-size: 16px;
    font-family: "M PLUS Rounded 1c", sans-serif,
    "游ゴシック", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
.bold { font-weight: bold; }
a {
    transition-duration: var(--duration-050);
    text-decoration: none;
}
.underline { text-decoration: underline; }
.fs-80 { font-size: 0.8rem; }
.fs-01 { font-size: 1rem; }
.fs-02 { font-size: 1.1rem; }
.fs-03 { font-size: 1.2rem; }
.fs-04 { font-size: 1.4rem; }
.fs-05 { font-size: 1.5rem; }
/* ---- ラップ(主に固定投稿ページ用) */
.body-wrap { 
    width: 100%;
    max-width: var(--width-01);
    margin: 0 auto;
}
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-stretch { align-items: stretch; }
.direction-column { flex-direction: column; }
.direction-reserve { flex-direction: column-reverse; }
.box-2-column { width: 50%; }
.box-3-column { width: calc(100% / 3); }
.box-4-column { width: 25%; }
/* ---- マージンパッディング量(主に固定投稿ページ用) */
.mt-100-50 { margin-top: 100px; }
.ma-0a { margin: 0 auto; }
.pa-20-10 { padding: 20px; }
.pb-20-10 { padding-bottom: 20px; }
.pc-pa-30 { padding: 30px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
/* ---- その他初期設定 */
.grecaptcha-badge { visibility: hidden; }
* { box-sizing: border-box; }
img { max-width: 100%; }
a:hover {
    transition-duration: var(--duration-025);
    opacity: .5;
}
.align-center {
    text-align: center;
}
.sp-block { display: none; }
.pc-block { display: block; }
.text-center {
    text-align: center;
}
/* ---- タイトル見出し */
.title-01 {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 20px 0;
}
.title-01::before {
    position: absolute;
    content: "";
    background: url(../img/lantern.svg) no-repeat center center;
    background-size: contain;
    left: -55px;
    top: 0px;
    width: 55px;
    height: 84.5px;
}
.title-01 .text {
    font-size: var(--fs-16);
    font-weight: bold;
    display: flex;
    flex-direction: column;
}
.title-01 .sub-title {
    font-size: var(--fs-08);
    margin-bottom: 0.5rem;
}

.title-02 {
    position: relative;
}
.title-02::before {
    position: absolute;
}

.category-title,.single-title {
    font-size: 40px;
    text-align: center;
    padding: 20px 0;
}

/* ---- 全ページ共通パーツ */
.to-top {  }
/* ---- inviewパーツ */
.fade { opacity: 0; transition-duration: var(--duration-200); }
.fade-in { opacity: 1; transition-duration: var(--duration-200); }
.ef-up { transform: translateY(80px); opacity: 0; transition-duration: var(--duration-150); }
.is-show-up { opacity: 1; transform: translateY(0px); transition-duration: var(--duration-150); }
.ef-right { transform: translateX(80px); opacity: 0; transition-duration: var(--duration-150); }
.ef-left { transform: translateX(-80px); opacity: 0; transition-duration: var(--duration-150); }
.is-show-right { opacity: 1; transform: translateX(0px); transition-duration: var(--duration-150); }
.is-show-left { opacity: 1; transform: translateX(0px); transition-duration: var(--duration-150); }
/* ---- ボタン */
.btn-wrap {
    display: flex;
    justify-content: center;
}
.btn-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 30px;
    font-size: 16px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    transition-duration: var(--duration-025);
}
.btn-01::after {
    /* content: ""; */
    width: 30px;
    height: 30px;
    background-image: url(../img/btn-01-icon.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-left: 10px;
}
.btn-01:hover {
    color: var(--color-03);
    transition-duration: var(--duration-025);
    opacity: 1;
}

.btn-02 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: 300px;
    height: 50px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-01);
    margin-left: 30px;
    background-color: var(--color-00);
}

.btn-02::before {
    position: absolute;
    content: "";
    background: url(../img/btn-02-arrow.svg) no-repeat center center;
    background-size: contain;
    width: 38px;
    height: 38px;
    right: 8px;
    top: 6px;
    transition-duration: var(--duration-025);
}
.btn-02:hover {
    color: var(--color-03);
    transition-duration: var(--duration-025);
    opacity: 1;
}
.btn-03 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-04);
    color: var(--color-white);
    font-weight: bold;
    text-align: center;
    width: 400px;
    height: 46px;
    border-radius: 22px;
    border: 2px solid #fff;
}
.btn-03::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../img/btn-03-mark.png) no-repeat center center;
    background-size: contain;
    width: 16px;
    height: 10px;
}

.btn-04 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-weight: bold;
    width: 100%;
    height: 44px;
    border-radius: 22px;
}
.btn-04::after {
    position: absolute;
    content: "";
    background-image: url(../img/btn-03-mark.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    right: 10px;
}
.btn-04.disabled { background-color: #7e7e7e; }
.youtube-wrap .btn-03::before {
    content: "";
    background-image: url(../img/youtube-mark.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 34px;
    height: 22px;
    padding-left: 50px;
}
.note-wrap .btn-03::before {
    content: "";
    background-image: url(../img/note-mark.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 112px;
    height: 31px;
    margin-left: 50px;
}
.btn-03::after {
    content: "";
    background-image: url(../img/btn-03-mark.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    padding-right: 50px;
}
.youtube-color {
    background-color: #C5302A;
}

.note-color {
    background-color: #3A3A3A;
}

/* ---- header */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1001;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.4);
}
header .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    height: 60px;
}
header .right-wrap {
    display: flex;
    align-items: center;
}
.header-nav ul {
    display: flex;
    margin-right: 15px;
}
.header-nav ul a {
    display: inline-block;
    font-weight: bold;
    color: var(--color-black);
    font-size: 16px;
    padding: 10px;
}


header .sns-icon {
    margin-left: 15px;
}
/* ---- フロントページ front */
#loading {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: var(--color-01);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid var(--color-02);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-inner p {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    animation: fade-01 1s linear infinite;
}
.roket {
    width: 150px;
    animation: yurayura 2s infinite;
    margin-bottom: 20px;
}

/* 回転アニメーション */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ゆらゆらアニメーション */
@keyframes yurayura {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-15deg); }
    100% { transform: rotate(0deg); }
}
@keyframes fade-01 {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

main, main video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.front > .greeting {
    overflow: hidden;
    width: 100%;
    margin-top: 100px;
    padding: 0 15px;
    display: flex;
    justify-content: space-around;
}
.front > .greeting h2 {
    font-size: 40px;
    font-weight: bold;
}
.front > .greeting h2 span {
    display: block;
}
.front > .greeting h2 span:last-child {
    margin-left: 2rem;
    margin-top: 1rem;
}
.front > .greeting .right-item {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.front > .greeting .right-item p {
    font-size: 20px;
    line-height: 1.75;
    margin-top: 100px;
}
.front > .greeting .right-item p .bold {
    font-size: 24px;
    display: block;
}

.front > .greeting .left-item img {
    max-width: 300px;
    width: 100%;
}

.front .slider {
    height: auto;
    width: 100%;
    margin: 150px auto 50px;
    position: relative;
}
.front .slider h2 {
    font-size: 32px;
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.front .slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
}
.front .slider img {
    filter: blur(2px);
}
.front .facility p {
    line-height: 1.5;
    margin-bottom: 50px;
    text-align: center;
}
.front .facility .pa-ire {
    padding: 0 20px;
    text-align: center;
}
.front .works {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 150px auto 100px;
    min-height: 620px;
    padding: 0 20px;
}
.front .works h2 {
    font-size: 40px;
    line-height: 1.5;
}
.front .works .left-item p {
    line-height: 1.5;
    margin-top: 80px;
    max-width: 440px;
}
.front .works .right-item {
    width: 45%;
    margin-left: 50px;
}
.front .works .right-item .images-wrap {
    width: 100%;
    height: 100%;
    position: relative;    
}
.front .works .right-item img {
    position: absolute;
    width: min(50%, 270px);
}
.front .works .right-item .image-01 {
    top: 0;
    left: 0;


}
.front .works .right-item .image-02 {
    top: 150px;
    right: 0;


}
.front .works .right-item .image-03 {
    bottom: 50px;
    left: 0;


}
.front .works .right-item .btn-02 {
    margin-top: 20px;
    position: absolute;
    bottom: -20px;
    right: 0;
}
.front .items {
    width: 100%;
    max-width: 1200px;
    margin: 150px auto 100px;
}
.front .items h2 {
    font-size: 36px;
    text-align: center;
    line-height: 1.5; 
}
.item-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.items-wrap {
    display: flex;
    max-width: 1200px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px auto 0;
    gap: 40px;
}
.items .items-wrap a {
    transition-duration: var(--duration-025);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: #000;
    border: 2px solid;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.5);
    position: relative;
}
.items .items-wrap a:hover {
    position: relative;
    transition-duration: var(--duration-025);
    color: var(--color-01);
    border-color: var(--color-black);
    opacity: 1;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.items .items-wrap a:nth-child(3n+1):hover {
    background-color: var(--color-02);
}
.items .items-wrap a:nth-child(3n+2):hover {
    background-color: var(--color-03);
}
.items .items-wrap a:nth-child(3n+3):hover {
    background-color: var(--color-04);
}
.items .items-wrap a:nth-child(n-4)::after {
    content: "";
    transition-duration: var(--duration-025);
    position: absolute;
    z-index: 2;
    left: -30px;
    top: -5px;
    width: 70px;
    height: 60px;
    background-image: url(../img/jet-btn.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 0;
}
.items .items-wrap a:nth-child(n-4):hover::after {
    transition-duration: var(--duration-025);
    opacity: 1;
}
.items .items-wrap a:nth-child(n+5)::after {
    content: "";
    transition-duration: var(--duration-025);
    position: absolute;
    z-index: 2;
    left: -30px;
    top: -10px;
    width: 65px;
    height: 65px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../img/purin-btn.svg);
}
.items .items-wrap a:nth-child(n+5):hover::after {
    transition-duration: var(--duration-025);
    opacity: 1;
}
.items-caption {
    text-align: center;
    margin-top: 20px;
}
.items-wrap .red-shape {
    background: url(../img/red-shape-01.svg) no-repeat center / 80% 80%;
    width: 220px;
    height: 207px;
}
.items-wrap img {
    max-height: 210px;
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.items-wrap figcaption {
    text-align: center;
    color: var(--color-black);
    font-weight: bold;
}
.items-wrap .blue-shape {
    background: url(../img/blue-shape-01.svg) no-repeat center / 80% 80%;
    width: 210px;
    height: 207px;
}
.items-wrap .yellow-shape {
    background: url(../img/yellow-shape-01.svg) no-repeat center / 80% 80%;
    width: 220px;
    height: 207px;
}
.front .news {
    width: 100%;
    max-width: 1000px;
    margin: 150px auto 100px;
    padding: 0 20px;
}
.front .news h2 {
    font-size: 40px;
    text-align: center;
    font-weight: bold;
}
.front .news .news-wrap {
    margin: 50px auto;
}

.front .news .news-wrap article,
.post-list-wrap article {
    display: flex;
    align-items: flex-end;
    padding: 10px;
}
.post-category {
    color: var(--color-white);
    text-align: center;
    padding: 4px 20px;
    border-radius: 20px;
    font-weight: bold;
    background-color: #3A3A3A;
    margin-right: 10px;
    width: 150px;
    display: inline-block;
    white-space: nowrap;  /* 折り返さない */
    overflow: hidden;     /* はみ出しを隠す */
    text-overflow: ellipsis; /* …を表示 */
}

.post-date {
    font-size: 14px;
    margin: 0 30px;
}
.front .post-date {
    padding-bottom: 4px;
}

.front .news-wrap .item-box {
    display: flex;
    align-items: baseline;
}
.front .news-wrap .post-title {
    padding-bottom: 4px;
}
.post-title a {
    color: var(--color-black);
}
.slug-01 {
    background-color: var(--color-02);
}
.slug-02 {
    background-color: var(--color-03);
}
.slug-03 {
    background-color: var(--color-04);
}
/* ---- 固定ページ */
.wrap h1 {
    padding: 0 20px;
}
.pankuzu ul a, .pankuzu .shape {
    font-size: 0.9rem;
}
.container {
    padding-top: 60px;
}
.contents {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 50px;
    padding: 20px;
    min-height: 50vh;
}
.contents.ire {
    padding: 60px 0 0;
    max-width: 100%;
    margin: 0 auto;
}
.pankuzu {
    padding: 20px 0;
}
.contents.ire > .pankuzu {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.pankuzu ul {
    display: flex;
    flex-wrap: wrap;
}
.pankuzu li {
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 15px;
}
.pankuzu li + li:before {
    content: "/";
    margin-right: 8px;
}
.pankuzu ul a,.pankuzu .shape {
    color: var(--color-black);
    padding: 5px 10px;
    display: block;
    background-color: #f9cc92;
    box-shadow: 2px 2px 0px 0px #7e7e7e;
}
.page-eye {
    position: relative;
    height: 400px;
}

.page-eye img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.eye-title-wrap {
    max-width: 1200px;
    width: 100%;
    position: absolute;
    height: 400px;
    margin: auto;
    left: 0;
    right: 0;
}
.original-title {
    position: absolute;
    top: 180px;
    margin: auto;
    z-index: 4;
    left: 200px;
    color: var(--color-01);
    font-size: 40px;
}
.original-title::before {
    position: absolute;
    top: -60px;
    left: -130px;
    width: 210px;
    height: 168px;
    content: "";
    background-image: url(../img/title-icon-01.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
}

.common-title {
    font-size: 40px;
    text-align: center;
}

.article-content {
    line-height: 1.5;
}

.article-content h2 {
    font-size: 2rem;
    padding: 0.5rem 0;
}

.article-content h3 {
    font-size: 1.6rem;
    padding: 0.4rem 0;
}

.article-content h4 {
    font-size: 1.2rem;
    padding: 0.3rem 0;
}
.contents .temp .page-discription {
    text-align: center;
    font-weight: bold;
    line-height: 2;
    color: var(--color-black);
    margin-bottom: 100px;
}
.black-bg {
    position: relative;
}
.black-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.contents h2 {
    text-align: center;
    font-size: 36px;
}

.contents h2.post-title {
    font-size: 16px;
}
.about-item {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.about-item p {
    font-weight: bold;
    font-size: 15px;
    line-height: 1.5;
}
.about-reasons {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}
.about-reason-wrap {
    display: flex;
    gap: 40px;
}
.about-reason-wrap img {
    height: 350px;
}
.about-reason-wrap h3 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
}
.about-reason-wrap h3::before {
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100px;
    height: 50px;
    margin-bottom: 10px;
}
.about-reason-wrap:nth-of-type(1) h3::before {
    background-image: url(../img/point1.svg);
}
.about-reason-wrap:nth-of-type(2) h3::before {
    background-image: url(../img/point2.svg);
}
.about-reason-wrap:nth-of-type(3) h3::before {
    background-image: url(../img/point3.svg);
}
.about-reason-wrap {
    margin-top: 15px;
    line-height: 1.5;
    font-weight: bold;
}
.facility-top {
    margin: 50px auto 100px;
}

.contents .facility-wrap {
    display: flex;
    gap: 40px;
}
.contents .facility-wrap img {
    width: 400px;
}

.contents .facility-wrap small {
    color: #6E6C6B;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.contents .facility-wrap h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contents .facility-wrap p {
    font-weight: bold;
    line-height: 2;
    font-size: 14px;
}
.contents .facility-wrap + .facility-wrap {
    margin-top: 40px;
}
.contents .temp.works h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contents .temp.works .works-box {
    display: flex;
    gap: 40px;
}

.contents .temp.works .works-box + .works-box {
    margin-top: 50px;
}

.contents .temp.works p {
    line-height: 1.5;
}
.contents .temp.works .works-box img.picture-01 {
    border-radius: 40px 0 40px 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contents .temp.works .works-box .text-content {
    width: 60%;
    padding: 30px 0 30px 30px;
}

.contents .temp.works .works-box .img-box {
    position: relative;
    line-height: 0;
}
.contents .temp.works .works-box img.text-01 {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.temp.items section {
    padding-top: 125px;
}
.temp.items h2 {
    margin-left: 20px;
    padding: 10px;
    display: inline-block;
    position: relative;
    filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.3));
}
.temp.items section:nth-child(3n) h2{
    background-color: var(--color-05);
}
.temp.items section:nth-child(3n+1) h2{
    background-color: var(--color-06);
}
.temp.items section:nth-child(3n+2) h2{
    background-color: var(--color-07);
}
.temp.items h2::after {
    position: absolute;
    right: -25px;
    top: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-right: 0;
    filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.3));
}
.temp.items section {
    position: relative;
}
.temp.items section:nth-child(3n) h2::after {
    border-left: 25px solid var(--color-05);
}
.temp.items section:nth-child(3n+1) h2::after {
    border-left: 25px solid var(--color-06);
}
.temp.items section:nth-child(3n+2) h2::after {
    border-left: 25px solid var(--color-07);
}
.temp.items .items-box-wrap {
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
}
.temp.items .items-box-wrap p {
    line-height: 1.75;
    font-weight: bold;
    padding: 20px;
    max-width: 400px;
}
.temp.items .items-box-wrap .items-img-box {
    display: flex;
    position: relative;
}
.temp.items section::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-size: 100% 100%;
}
.temp.items section::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-size: 100% 100%;
    right: 0;
    top: 0;
}
.temp.items section:nth-of-type(1)::before {
    background-image: url(../img/items-bg-1a.svg);
    width: 292px;
    height: 576px;
}
.temp.items section:nth-of-type(1)::after {
    background-image: url(../img/items-bg-1b.svg);
    top: 20%;
    width: 338px;
    height: 604px;
}
.temp.items section:nth-of-type(2)::before {
    background-image: url(../img/items-bg-2a.svg);
    width: 241px;
    height: 501px;
}
.temp.items section:nth-of-type(2)::after  {
    background-image: url(../img/items-bg-2b.svg);
    width: 352px;
    height: 406px;
    top: 30%;
}
.temp.items section:nth-of-type(3)::before {
    background-image: url(../img/items-bg-3a.svg);
    width: 237px;
    height: 491px;
}
.temp.items section:nth-of-type(3)::after  {
    background-image: url(../img/items-bg-3b.svg);
    width: 370px;
    height: 518px;
    top: 30%;
}
.temp.items section:nth-of-type(4)::before {
    background-image: url(../img/items-bg-4a.svg);
    top: 20%;
    width: 219px;
    height: 243px;
}
.temp.items section:nth-of-type(4)::after  {
    background-image: url(../img/items-bg-4b.svg);
    width: 261px;
    height: 550px;
}
.temp.items section:nth-of-type(5)::before {
    background-image: url(../img/items-bg-5a.svg);
    top: 40%;
    width: 249px;
    height: 273px;
}
.temp.items section:nth-of-type(5)::after  {
    background-image: url(../img/items-bg-5b.svg);
    width: 259px;
    height: 274px;
    top: 55%;
}
.temp.items section:nth-of-type(6)::before {
    background-image: url(../img/items-bg-6a.svg);
    top: 25%;
    left: -5%;
    width: 185px;
    height: 277px;
}
.temp.items section:nth-of-type(6)::after {
    background-image: url(../img/items-bg-6b.svg);
    top: 45%;
    width: 277px;
    height: 278px;
}
.temp.items section:nth-of-type(7)::before {
    background-image: url(../img/items-bg-7a.svg);
    width: 178px;
    height: 504px;
}
.temp.items section:nth-of-type(7)::after {
    background-image: url(../img/items-bg-7b.svg);
    width: 279px;
    height: 420px;
    top: 20%;
}
.temp.items section:nth-of-type(8)::before {
    background-image: url(../img/items-bg-8a.svg);
    width: 306px;
    height: 378px;
    top: 45%;
}
.temp.items section:nth-of-type(8)::after {
    background-image: url(../img/items-bg-8b.svg);
    width: 311px;
    height: 432px;
    top: 25%;
}
.temp.items .items-box-wrap .items-img-box figure {
    text-align: center;
}
.temp.items .items-box-wrap .items-img-box figcaption {
    font-weight: bold;
}
.temp.items .items-box-wrap .items-img-box img {
    object-fit: contain;
    height: 400px;
    width: auto;
}

.temp.items .items-box-wrap .items-img-box figure.big img {
    object-fit: contain;
    height: auto;
    width: 100%;
}

.temp.flow .flow-item-wrap {
    display: flex;
    margin-top: 50px;
    align-items: flex-start;
}

.temp.flow .flow-text-wrap p {
    font-weight: bold;
    line-height: 1.5;
    max-width: 420px;
}

.temp.flow h3 {
    font-size: 32px;
    margin-bottom: 20px;
}
.temp.flow img.icon {
    margin-right: 30px;
}
.temp.flow img.flow-img {
    margin-left: 30px;
    border-radius: 40px;
    border: 3px solid var(--color-00);
}


.temp.company .concept-wrap {
    padding: 100px 0 100px;
}
.temp.company .concept-box {
    position: relative;
    text-align: center;
    margin-bottom: 70px;
}
.temp.company .concept-box:nth-child(1)::before {
    content: "";
    position: absolute;
    background-image: url(../img/company-bg-01.svg);
    background-repeat: no-repeat;
    width: 224px;
    height: 209px;
    background-size: 100% 100%;
    left: 0;
    top: -30%;
    z-index: -1;
}
.temp.company .concept-box:nth-child(2)::before {
    content: "";
    position: absolute;
    background-image: url(../img/company-bg-02.svg);
    background-repeat: no-repeat;
    width: 215px;
    height: 184px;
    background-size: 100% 100%;
    left: -10%;
    top: 0;
    z-index: -1;
}
.temp.company .concept-box:nth-child(3)::before {
    content: "";
    position: absolute;
    background-image: url(../img/company-bg-03.svg);
    background-repeat: no-repeat;
    width: 194px;
    height: 174px;
    background-size: 100% 100%;
    right: -10%;
    top: 0;
    z-index: -1;
}
.temp.company .concept-box:nth-child(4)::before {
    content: "";
    position: absolute;
    background-image: url(../img/company-bg-04.svg);
    background-repeat: no-repeat;
    width: 224px;
    height: 228px;
    background-size: 100% 100%;
    right: 0%;
    top: 0;
    z-index: -1;
}
.temp.company .concept-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
.temp.company .concept-box p {
    line-height: 1.5;
}
.temp.company table {
    line-height: 1.5;
    max-width: 1000px;
    margin: 50px auto 0;
}
.temp.company table th {
    width: 20%;
    text-align: right;
}
.temp.company table th,
.temp.company table td {
    padding: 10px;
}

.company-second-content {
    display: flex;
    gap: 40px;
    margin-top: 100px;
}

.company-second-content .box {
    width: 50%;
}

.company-second-content .box iframe {
    width: 100%;
}

.company-third-content {
    margin-top: 100px;
}
.company-third-content .factory-wrap {
    margin: 0 auto;
    width: min(65%, 800px);
    margin-top: 50px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    align-content: start;
    gap: 40px;
}
.company-third-content dl {
    background-color: var(--color-white);
    padding: 10px;
}
.company-third-content dl dt {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.company-third-content dl dd {
    line-height: 1.5;
    font-size: 15px;
}
.pagenation,.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.pagenation .page-numbers.current {
    margin-top: 20px;
    font-size: 1rem;
    background-color: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    color: var(--color-white);
    font-weight: bold;
}


.page-numbers {
    margin-top: 20px;
    font-size: 1rem;
    background-color: var(--color-01);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    color: var(--color-black);
    font-weight: bold;
}


/* ---- 記事ループページ */
.single-post-date {
    margin: 0px 0px 20px;
    display: inline-block;
}
.contents .article-single {
    line-height: 1.75;
}
.contents .article-single h2 {
    text-align: left;
    font-size: 26px;
}
.article-single h3 {
    font-size: 20px;
}
.article-single h4 {
    font-size: 20px;
}
/* ---- footer */
footer {
    position: relative;
    margin-top: 200px;
    z-index: 1;
}
.to-up {
    cursor: pointer;
    position: absolute;
    top: -85px;
    right: 5%;
    z-index: 2;
}
.to-up img.purin {
    width: 100%;
    height: 150px;
    transform: translateY(0px);
    transition-duration: var(--duration-050);
}
.to-up:hover  img.purin {
    transform: translateY(-20px);
    transition-duration: var(--duration-050);
}

footer .boxs {
    position: absolute;
    z-index: 1;
    left: 2%;
    top: -70px;
    width: 300px;
}

.to-up img.arrow {
    transition-duration: var(--duration-050);
    opacity: 0;
    width: 50px;
    position: absolute;
    z-index: 2;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
}
.to-up:hover img.arrow {
    transform: translateY(-20px);
    opacity: 1;
    transition-duration: var(--duration-050);
}
.footer-wrap {
    position: relative;
    z-index: 3;
    background-image: url(../img/footer-bg-01.jpg);
    background-size: 20px;
    border: 3px solid var(--color-00);
    border-radius: 50px 50px 0 0;
    width: 100%;
    min-height: 100%;
    padding: 30px 30px 5px 30px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-nav ul {
    display: flex;
}
.footer-nav ul li {
    margin-left: 15px;
}
.footer-nav ul a {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    color: var(--color-black);
    display: block;
    background-color: #f9cc92;
    transform: rotateZ(0deg);
    transition-duration: var(--duration-050);
    box-shadow: 2px 2px 0px 0px #7e7e7e;
}
.footer-nav ul a:hover {
    transform: rotateZ(10deg);
    transition-duration: var(--duration-050);
}

footer .address li {
    line-height: 1.5;
}



.footer-wrap .machine-01 {
    position: absolute;
    left: 5%;
    top: -150px;
    animation: gatagata 4s ease-in-out infinite;
    width: 170px;
}

@keyframes gatagata {
    0%,19% { -webkit-transform: translateY(0) rotate(5deg); }
    20%,34% { -webkit-transform: translateY(0) rotate(-2deg); }
    35%,49% { -webkit-transform: translateY(0) rotate(0deg); }    
    50%,54% { -webkit-transform: translateY(0) rotate(6deg); }
    55%,69% { -webkit-transform: translateY(0) rotate(2deg); }
    70%,100% { -webkit-transform: translateY(0) rotate(-3deg); }    
}


.footer-left a.logo img {
    max-width: 180px;
    width: 100%;
}
footer .address {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 15px;
}

.footer-second-menu {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    gap: 20px;
}


footer .address li,.footer-second-menu li {
    margin-top: 0.5rem;
}
.footer-second-menu li a {
    text-decoration: underline;
    color: var(--color-black);
    line-height: 1.5;
}
footer .address span {
    margin-left: 20px;
}

.form-01 {
    max-width: var(--width-04);
    margin: 50px auto 0;
}
.form-01 dl {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}
.form-01 dt {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: bold;
    width: 25%;
    font-size: 18px;
}
.form-01 dd {
    width: 75%;
}
.form-01 .must {
    display: block;
    background-color: var(--color-02);
    width: 10px;
    height: 10px;
    border-radius: 5px;
    margin: 0 5px;
}

.wpcf7 input[type="text"],.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"],.form-01 textarea {
    border: 2px solid var(--color-black);
    font-size: 18px;
    background-color: var(--color-white);
}
.btn-wrap-04 {
    text-align: center;
    margin: 30px auto;
}
.wpcf7 input[type="submit"]{
    border: none;
    line-height: 0;
}
.btn-wrap-04 .btn-02 {
    margin-left: 0;
}
.wpcf7-list-item {
    margin: 0;
}
.wpcf7-list-item + .wpcf7-list-item {
    margin-left: 15px;
}
@media screen and ( max-width:1025px ){
    .front.wrap {
        padding-top: 60px;
    }
    main, main video {
        height: 50vh;
    }
}
@media screen and ( max-width:834px ){
    body {
        font-size: 1.15rem;
    }
/* ---- マージンパッディング量(主に固定投稿ページ用) */
    .mt-100-50 { margin-top: 50px; }
    .pa-20-10 { padding: 10px; }
    .pb-20-10 { padding-bottom: 10px; }
    .pc-pa-30 { padding: 0px; }
/* ---- その他初期設定 */
    .sp-block { display: block; }
    .pc-block { display: none; }
    .sp-direction-column { flex-direction: column; }
    .sp-direction-reserve { flex-direction: column-reverse!important; }
/* ---- ボタン */
    .btn-wrap {
        padding: 0 15px;
        width: 100%;
    }
    .btn-02 {
        width: min(100%, 500px);
        left: 0;
        margin: 0 auto;
        padding: 30px 0;
        border-radius: 50px;
    }
    .btn-02::before {
        top: 10px;
        right: 10px;
    }
    .btn-06 {
        margin-top: 30px;
        display: block;
        text-align: center;
        font-size: 1.1rem;
        font-weight: bold;
        padding: 10px 0;
        border-radius: 20px;

    }

/* ---- タイトル */

.title-01 .sub-title,.title-02 .sub-title {
    font-size: 16px;
}
.title-01 .main-title,.title-02 .main-title {
    font-size: 24px;
    padding-right: 15px;
    line-height: 1.5;
}
.note-wrap .btn-03::before {
    margin: 0 15px;
}
.eye-catch {
    padding-top: 30px;
}
/* ---- header */
    header {
        top: 0;
    }
    .header-inner {
        max-width: 100%;
        height: 60px;
    }
    header .inner {
        padding: 0 70px 0 10px;
    }
    header + .wrap {
        padding-top: 60px;
    }
    .nav-btn {
        position: fixed;
        right: 5px;
        top: 5px;
        border: 1px solid var(--color-00);
        box-sizing: border-box;
        border-radius: 5px;
        width: 50px;
        height: 50px;
        padding: 5px;
    }
    .nav-btn span {
        position: absolute;
        background-color: var(--color-00);
        width: 70%;
        height: 3px;
        padding: 0 15%;
        margin: auto;
        left: 0;
        right: 0;
        transition-duration: var(--duration-050);
    }
    .nav-btn span:nth-child(1){
        top: 35%;
    }   
    .nav-btn span:last-child{
        top: 60%;
    } 
    .nav-btn.active span:nth-child(1){
        transition-duration: var(--duration-050);
        top: 45%;
        transform: rotateZ(45deg);
    }
    .nav-btn.active span:last-child{
        transition-duration: var(--duration-050);
        top: 45%;
        transform: rotateZ(-45deg);
    }

    .header-nav {
        display: none;
    }
    .main-menu {
        transform: translateX(100vw);
        width: 100vw;
    }

    .header-sp-nav-wrap {
        transition-duration: var(--duration-050);
        transform: translateX(100%);
        width: 100%;
        position: fixed;
        z-index: 1000;
        background-color: var(--color-01);
        height: 100vh;
        padding: 20px;
    }
    .header-sp-nav-wrap.active {
        transition-duration: var(--duration-050);
        transform: translateX(0);
        padding: 20px;
    }

    .header-sp-nav li {
        text-align: center;
        padding: 5px;
        margin: 0 auto;
    }

    .header-sp-nav a {
        color: var(--color-00);
        display: block;
        padding: 10px 0;
        font-weight: bold;
    }

/* ---- フロントページ */
body {
    min-width: 100%;
}

.front.wrap {
    padding-top: 60px;
}

main, main video {
    width: 100%;
    height: 72vw;
}

.front main .slider {
    border-radius: 0;
}
.front main .slider img {
    object-fit: cover;
}

.front > .greeting,.front .works {
    flex-direction: column;
    padding: 0 20px;
}
.front > .greeting .right-item {
    width: 100%;
}
.front > .greeting .left-item {
    text-align: center;
}
.front > .greeting .right-item p {
    margin-top: 0;
    margin-bottom: 30px;
}
.front .slider {
    margin: 100px auto 50px;
}
.front .works {
    margin: 100px auto 50px;
}
.front .items {
    margin: 100px auto 50px;
    padding: 0 20px;
}
.front .works h2 {
    font-size: 30px;
    text-align: center;
}
.front .works .left-item p {
    margin-top: 30px;
}
.front .works .right-item {
    width: 100%;
    margin-left: 0;
}
.front .works .right-item .images-wrap {
    text-align: center;
    min-height: 100vw;
}

.front .works .right-item .image-01,
.front .works .right-item .image-02,
.front .works .right-item .image-03 {
    width: 43vw;
    max-width: 100%;
}
.front .works .right-item .image-02 {
    top: 80px;
}
.front .works .right-item .image-03 {
    bottom: 60px;
}
.items-wrap {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.items .items-wrap a {
    width: calc(50% - 12px);
}
.front .items h2 {
    font-size: 28px;
}
.front .items-caption {
    line-height: 1.5;
}
.front .items-wrap figure {
    width: 100%!important;
}
.front .news {
    margin: 100px auto 50px;
}
.front .news .news-wrap article,
.post-list-wrap article {
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
}
.front .news .news-wrap article + article,
.post-list-wrap article + article {
    border-top: 1px dotted var(--color-00);
}
.front .facility p {
    padding: 0 20px;
    text-align: left;
}

.post-title a {
    font-size: 1.2rem;
}

.front .news .news-wrap .item-box,
.post-list-wrap article .item-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


/* ---- 固定ページ */
.page.wrap .content, .page.single .content {
    padding: 10px;
}
.original-title::before {
    width: 50%;
    left: 20px;
    top: -10px;
}
.original-title {
    left: 0;
}
.contents .temp .page-discription {
    text-align: left;
    margin-bottom: 50px;
}
.contents h2 {
    font-size: 24px;
    line-height: 1.75;
}

.about-item {
    flex-direction: column;
}
.about-item + h2 {
    margin-top: 100px;
    font-size: 28px;
}

.page-eye img {
    height: auto;
}
.page-eye {
    height: auto;
}

.page.about .about-wrap {
    flex-direction: column;
}
.page.about .about-wrap .item {
    width: 100%;
}
.page.about .about-wrap .item .text-img {
    bottom: 0;
    left: 0;
}

.page.about .about-wrap .item p {
    margin-top: 30px;
    margin-left: 0;
    width: 100%!important;
}
.page.about .about-wrap.type-b {
    position: static;
    margin-top: 30px;
}
.page.about .about-wrap.type-b .item.left {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
}
.page.about .about-wrap.type-b .item.owner {
    position: static;
    right: 0;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
}
.page.about .about-wrap.type-b .item.owner img {
    border-radius: 20px;
    width: 100%;
}
.page.about .about-wrap .item img.owner {
    border-radius: 20px;
}

.page.about .concept {
    margin-top: 20px;
}
.page.about .concept-inner {
    border-radius: 20px;
    padding: 10px;
}

.page-wrap {
    top: 80px;
    padding-bottom: 120px;
}
.pankuzu ul {
    width: auto;
}
.pankuzu ul a, .pankuzu .shape {
    font-size: 1.1rem;
    padding: 8px 12px;
}
.page-content {
    padding: 15px;
    margin-top: 0;
}
.articles-wrap {
    width: 100%;
    padding: 0;
}

.about-reason-wrap {
    flex-direction: column;
}

.contents {
    margin-top: 25px;
}
.contents.ire {
    padding: 20px;
}
.contents.ire > .pankuzu {
    padding: 0px;
}


.category-title,.single-title {
    font-size: 1.8rem;
}



.category-list {
    flex-wrap: wrap;
    justify-content: inherit;
    margin: 30px auto;
    padding-top: 30px;
}
.category-list li {
    margin: 0 5% 15px;
    width: 40%;
}
.category-list li + li {
    margin-left: 5%;
}
.category-list li a {
    padding: 10px 0;
    width: auto;
}
.articles-wrap {
    padding: 0 15px;
}
.articles-wrap .item {
    width: 100%;
    margin-bottom: 50px;
}
.post-title {
    font-size: 16px;
    line-height: 1.5;
}

.post-date {
    margin: 10px 0px 0;
    display: inline-block;
}

.pagination {
    padding-bottom: 30px;
}
.pagination a {
    font-size: 24px;
    padding: 5px;
}
.btn-wrap.bottom {
    padding: 40px 15px 0;
}
.news-list .loop-wrap .item .post-content {
    flex-direction: column;
}
.news-list .loop-wrap a:last-child {
    margin-bottom: 30px;
}
.front-pickup::before,
.front-pickup::after {
    width: 70vw;
    height: 45vw;
    background-size: 100%;
}
.front .items-wrap figure {
    
}

.contents .temp.works .works-box {
    flex-direction: column;
    gap: 0;
}
.contents .temp.works .works-box .text-content {
    width: 100%;
    padding: 30px;
}
.contents .temp.works .works-box img.text-01 {
    right: 0;
}
.contents .temp.works .works-box img.picture-01 {
    border-radius: 0;
}

.temp.flow .flow-item-wrap {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 70px;
}
.temp.flow h3 {
    text-align: center;
}
.temp.flow img.icon {
    width: 100px;
    margin-left: 0;
    margin-bottom: 30px;
}
.temp.flow img.flow-img {
    margin-left: 0;
    margin-top: 30px;
}
/* ---- 投稿ページ */
.single-page .text-wrap {
    width: auto;
    padding: 0;
}
.single-page {
    padding: 15px;
    border-radius: 15px;
}
.article-eye-wrap {
    padding: 0;
}

.page.achievement .item-wrap {
    flex-direction: column;
}
.page.achievement .item-wrap .item {
    width: 100%;
}
.page.achievement .item-wrap .item + .item {
    margin-top: 20px;
}

.temp.items .items-box-wrap {
    flex-direction: column;
}

.temp.items .items-box-wrap p {
    padding: 10px 0;
}
.temp.items section::before,.temp.items section::after {
    content: none;
}

.temp.items .items-box-wrap {
    margin: 0;
}

.temp.items h2 {
    margin-left: 0;
    filter: none;
    font-size: 24px;
}
.temp.items h2::after {
    filter: none;
    border-top: 33px solid transparent;
}
.temp.items section {
    padding-top: 75px;
}

.temp.items .items-box-wrap .items-img-box img {
    height: auto;
}
.temp.items .items-box-wrap .items-img-box {
    flex-direction: column;
}
.temp.items .items-box-wrap .items-img-box figure + figure {
    margin-top: 50px;
}



.contents .facility-wrap {
    flex-direction: column;
}

.temp.company .concept-box h3 {
    line-height: 1.75;
}

.temp.company .concept-box p {
    text-align: left;
}

.temp.company table th {
    width: 35%;
    text-align: left;
    padding: 10px 10px 0;
}
.company-second-content {
    flex-direction: column;
}
.company-second-content .box {
    width: 100%;
}
.company-third-content .factory-wrap {
    width: 100%;
    display: block;
}
.company-third-content .factory-wrap dl {
    margin-bottom: 20px;
}
.temp.company .concept-box::before {
    width: 50%!important;
    left: 0!important;
    right: 0!important;
    margin: auto;
    top: -20%!important;
}
.temp.company table tr {
    display: flex;
    flex-direction: column;
}
.temp.company table tr + tr {
    border-top: 1px dotted var(--color-00)
}
.temp.company .concept-wrap {
    padding: 100px 0 50px;
}

/* ---- 記事ループページ */
/* ---- footer */

footer .to-top {
    right: 0;
}

footer::before {
    top: -9%;
}

footer {
    margin-top: 150px;
    padding: 30px 0px 0;
}
footer .boxs {
    width: 200px;
    top: -20px;
}
.footer-wrap .machine-01 {
    max-width: 30%;
    top: -90px;
}
.to-up {
    top: -55px;
}

.footer-inner,
.footer-inner .menu {
    flex-wrap: wrap;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    align-items: center;
}
footer .footer-nav ul {
    margin: 30px auto;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-nav ul a:hover {
    transform: rotateZ(0);
}
.footer-wrap {
    padding: 30px 20px 5px 20px;
}
footer .address li,.copywrite {
    font-size: 1.05rem;
}
footer .menu-btn-wrap {
    margin: 30px auto;
}
footer .logo {
    margin-right: 0;
    margin-bottom: 20px;
}
footer .footer-nav li {
    width: 48%;
}
.footer-nav ul li {
    margin-left: 0;
    margin-bottom: 20px;
}
footer .footer-nav li a {
    padding: 15px;
    display: block;
    font-size: 1.2rem;
}
footer .footer-nav ul li + li {
    margin-left: 0;
}
footer .address {
    align-items: flex-start;
}
footer .address span {
    margin-left: 0;
    display: block;
}

footer .menu-btn-wrap {
    padding-bottom: 10px;
}

.footer-second-menu {
    flex-direction: column;
    gap: 0;
}

.form-01 {
    max-width: 100%;
}
.form-01 dl {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.form-01 dd {
    width: 100%;
}

.form-01 dt {
    justify-content: flex-start;
    width: 100%;
}
.wpcf7 input[type="text"], .wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .form-01 textarea {
    width: 100%;
}

}/* max-width:999px ここまで */