@charset "UTF-8";
@import url("layout.css");
@import url("blog.css?2025-10");

/*
Theme Name: ふるさと名護自慢 Version01
Description: ふるさと名護自慢 公式ホームページ
Author: MIA RESORT
*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html { font-size: 62.5%; }
body {
    /*font-family: 'Noto Sans JP', sans-serif;*/
    font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(1.5rem, 1.475rem + 0.078vw, 1.6rem);
	line-height: 1.8;
    color: #333;
    background-color: #FFF7F7;
}
#s_navi {
    display: none;
}
.img-sp {
    display: none;
}
/*--パネル---------------------------*/
#panel {
    float: none; 
    position: absolute;
}
#panel.fixed {
    position: fixed;
}
#panel {
	position: absolute;
	top: 500px;
	right: 0px;
	z-index: 1000;
    padding: 0px;
}
#panel img {
    width: 70px;
    height: auto;
}
#panel a {
    display: block;
}
/*===========================
  カスタムプロパティ(変数)
==========================*/
:root {
    --primary-color: #9BCE2E;
    --sub-color: #F7B330;
    --accent-color: #9BD4B0;
}
/*===========================
  header
==========================*/
/* ヘッダー固定から下りてくる */
#global-nav {
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: 100;
    margin: 0px auto 0px;
}
#global-nav.m_fixed {
    position: fixed;
    top: 0px;
}
/* end */
hgroup {
    margin-right: auto;
}
hgroup h1 img {
    width: clamp(17rem, 12.5rem + 14.063vw, 35rem);
    height: auto;
    margin-left: 60px;
    margin-top: 10px;
}
nav {
    display: flex;
    flex-wrap: wrap;
    vertical-align: middle;
    margin-right: 0px;
    padding: 15px 0px 15px 30px;
    white-space: nowrap;
    margin-right: 15px;
}
.page-header {
    display: flex;
    justify-content: end;
    align-items: center;
    height: auto;
    padding: 5px 20px 20px 0px;
    background: linear-gradient(270.03deg, rgba(133, 255, 206, 0.5) 0.02%, rgba(236, 215, 244, 0.5) 77.87%);
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 0px 20px;
    vertical-align: middle;
    white-space: nowrap;
}
.main-nav li {
    letter-spacing: 0.1rem;
    font-size: clamp(1.4rem, 1.335rem + 0.203vw, 1.7rem);
    line-height: 1;
    font-weight: 400;
    padding-top: 5px;
}
.main-nav li a {
    text-decoration: none;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 50px;
    transition: all 0.8s;
}
.main-nav li a:hover {
	color: var(--sub-color);
}
.head-sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 0px 20px;
    vertical-align: middle;
    white-space: nowrap;
    margin-right: 30px;
}
.head-sns li a {
    color: #333;
    font-size: clamp(2rem, 1.75rem + 0.781vw, 3rem);
}
/*===========================
  TOP ヘッダーイメージ
==========================*/
.top-head-img {
    position: relative;
}
.top-head-img img {
    width: 100%;
    height: 100vh;
}
.top-head-img .head-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 100%; /* 背景画像に追従 */
    text-align: center;
}
.top-head-img .head-copy img {
    display: inline-block;
    max-width: 90%; /* 背景に対して適度な大きさで縮む */
    height: auto;
}
/*===========================
  TOPページ PC
==========================*/
main {
    background-image: url(images/sakura.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 650px;
    margin: 0;
}
/* トップコンテンツ */
.top-con {
    padding-top: 80px;
    padding-left: 5%;
}
.top-map img {
    width: min(96%, 1000px);
    height: auto;
}
.top-nago-text {
    width: min(94%, 850px);
    padding: 40px 150px 40px 60px;
    background: linear-gradient(270deg, #FFC6D3 0%, rgba(255, 255, 255, 0.3) 50%, #DAFFE6 100%);
    box-shadow: 2px 12px 0px #F5D5D5;
    border-radius: 20px 0px 0px 20px;
    position: relative;
    overflow: hidden; /* 画像がはみ出さないように */
    line-height: 220%;
    margin-left: auto;
    margin-right: 0;
}
/* 背景画像を擬似要素で配置 */
.top-nago-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px; /* 右端から20pxの余白 */
    transform: translateY(-50%);
    width: 220px; /* 適宜サイズ調整 */
    height: 220px;
    background-image: url("images/circle01.png"); /* ←背景画像のパスを指定 */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    animation: rotateCircle 20s linear infinite; /* ゆっくり回転 */
    pointer-events: none; /* テキスト操作を妨げないように */
    opacity: 0.8; /* 必要に応じて透明度調整 */
}
/* 回転アニメーション */
@keyframes rotateCircle {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}
/* スライド部分 */
.rolling-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: min(20%, 120px) 0px 0px 0px;
    position: relative;
    z-index: 10;
}
.rolling-track {
    display: flex;
    width: 100%; /* 擬似要素含めて横に広げる */
    animation: roll 60s linear infinite;
    position: relative;
    top: 100px;
}
.rolling-track li {
    flex: 0 0 100%;
    list-style: none;
}
.rolling-track img {
    width: 100%;
    height: auto;
    display: block;
}
/* 無限ループ用に画像を複製 */
.rolling-track::before,
.rolling-track::after {
    content: "";
    display: block;
    flex: 0 0 100%;
    background: url("images/top-slide.webp") center/cover no-repeat;
    margin-right: 20px;
}
/* スライドアニメーション */
@keyframes roll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slide-haikei {
    background-color: #DDFBE8;
    border-radius: 0px 60px 60px 0px;
    height: 500px;
    width: 70%;
    position: relative;
    bottom: 300px;
    z-index: -1;
}
.slide-haikei img {
    position: relative;
    top: 450px;
    left: 30%;
    width: min(94%, 600px);
}
/* 私たちのふるさとを自慢したい */
.top-jiman {
    width: min(96%, 85%);
    display: flex;
    gap: 0px 80px;
    margin-left: auto;
    margin-right: 40px;
}
.top-jiman-left {
    width: 50%;
}
.nor-img {
    width: 220px;
    height: auto;
}
.top-jiman-left p:nth-of-type(2) {
    font-size: clamp(1.6rem, 1.55rem + 0.156vw, 1.8rem);
    margin-top: 15px;
    line-height: 1.8;
}
.top-jiman-right {
    width: 50%;
    position: relative;
}
.jiman-circle {
    position: absolute;
    top: -100px;
    right: 20px;
    display: block;
    width: 100%;
    max-width: 250px;
    animation: spin 30s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.top-jiman-right img {
    border-radius: 20px;
}
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #98e6b5;
    color: #333;
    font-size: 1.6rem;
    text-decoration: none;
    border-radius: 12px;
    padding: 0.8em 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 320px; /* 最大幅（必要に応じて調整） */
    box-sizing: border-box;
    margin-top: 80px;
}
.custom-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.custom-btn:hover {
    background-color: #7fd99f;
}
.custom-btn:focus-visible {/*アクセシビリティ対応*/
    outline: 2px solid #4caf50;
    outline-offset: 4px;
}
/* 見てみて */
.top-mite {
    text-align: center;
    margin: min(20%, 180px) 0px 0px 0px;
    background-color: #E9FDEF;
    background-image: url("images/sakura02.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 500px;
    padding: 60px 15px;
}
.top-mite ul {
    width: min(98%, 1400px);
    margin: 60px auto 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}
.top-mite ul li {
    width: 45%;
}
/* TOPICS */
.top-topics {
    text-align: center;
    margin: min(20%, 180px) 0px 0px 0px;
}
.topics-box {
    width: min(94%, 1400px);
    margin: 40px auto 0px;
    display: flex;
    justify-content: space-between;
    gap: 0px 45px;
}
.topics-box div {
    width: 30%;
    height: auto;
    position: relative;
    transition: all 0.8s;
    text-align: left;
}
.topics-box div a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.topics-box div:hover {
    opacity: 0.7;
}
.topics-box div img {
    border-radius: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 100% 0%;
    border: 1px solid #333;
}
.topics-box div p:first-of-type {
    font-size: clamp(1.5rem, 1.475rem + 0.078vw, 1.6rem);
    padding: 5px;
}
.topics-box div h4 {
    font-size: clamp(1.6rem, 1.55rem + 0.156vw, 1.8rem);
    font-weight: normal;
    padding: 0px 5px;
}
.new-img {
    width: 220px;
    margin: 2px auto;
}
/* bannerエリア */
.banner-area {
    width: min(94%, 1400px);
    margin: min(20%, 180px) auto 0px;
}
.banner-area ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.banner-area ul li {
    width: 30%;
}
/*===========================
  下層ページ PC
==========================*/
/* 下層ページ共通 */
.pan {
    padding: 60px 0px 0px 60px;
    font-size: 1.3rem;
}
.pan p a {
    text-decoration: none;
    color: #555;
}
.pan p span {
    padding: 0px 3px;
}
.midashi-img {
    width: min(90%, 350px);
    height: auto;
    margin: 10px auto 0px;
}
.sub-img-area {
    width: min(94%, 1400px);
    margin: 80px auto 0px;
}
.sub-img-area img {
    border-radius: 20px;
}
/* ふるさと名護自慢ページ */
.sub-nago-con {
    width: min(94%, 1400px);
    margin: 20px auto 0px;
    background-image: url(images/okinawa-soba.png);
    background-size: 170px;
    background-position: right 20% bottom;
    text-align: center;
}
.sub-nago-con p {
    width: min(90%, 800px);
    margin: auto;
    line-height: 2;
    text-align: left;
    padding: 10px 0px;
}
.sub-circle {
  position: relative;
  height: 200px;
  pointer-events: none;
  overflow: hidden; /* 念のため回転範囲外を隠す */
}
.sub-circle::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 200px;
  height: 200px;
  background: url("images/circle01.png") no-repeat center center;
  background-size: 200px;
  transform: translateY(-50%);
  transform-origin: center center;
  animation: rotateCircle 30s linear infinite;
}
/* 回転アニメーション */
@keyframes rotateCircle {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
/* なごきたPayページ */
.nagokita-con {
    background-color: #FFF;
    padding: 40px 20px;
    margin-top: min(10%, 120px);
}
.nagokita-con h3 {
    width: min(90%, 750px);
    margin: 0px auto;
}
.nagokita-con > div {
    width: min(98%, 1200px);
    margin: 40px auto 0px;
    display: flex;
    align-items: center;
    gap: 0px 40px;
}
.nagokita-con > div img {
    width: 370px;
    height: auto;
}
.nagokita-color {
    background-color: #d4137a;
    color: #FFF;
    padding: 5px 8px;
}
.kifu-img {
    width: min(96%, 1200px);
    margin: 50px auto 0px;
}
/* ふるさと納税ページ */
.furusato-text01 {
    width: min(94%, 1000px);
    margin: auto;
    text-align: center;
}
.furusato-img {
    width: min(96%, 1200px);
    margin: 30px auto 0px;
}
.furusato-banner {
    width: min(94%, 1100px);
    margin: 40px auto 0px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
/*===========================
  footer
==========================*/
#footer {
    background-color: #DDFBE8;
    border-radius: 60px 60px 0px 0px;
    padding: 60px 0px 15px;
    position: relative;
    text-align: center;
    margin-top: min(20%, 180px);
}
#footer .foot-con {
    width: min(96%, 1400px);
    margin: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 60px;
}
#footer .foot-con img {
    width: 260px;
    height: auto;
}
#footer .foot-con ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
#footer .foot-con ul li a {
    text-decoration: none;
    color: #333;
    font-size: clamp(1.5rem, 1.425rem + 0.234vw, 1.8rem);
    transition: opacity 0.3s ease;
}
#footer .foot-con ul li a:hover {
    color: var(--sub-color);
}
#footer > ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 30px auto 0px;
}
#footer > ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}
#footer > ul li a:hover {
    color: var(--sub-color);  
}
#footer .copy {
    display: block;
    font-size: 1.4rem;
    color: #555;
    margin-top: 20px;
}
#footer::after {
    content: "";
    position: absolute;
    top: -80px;
    right: 80px;
    width: 220px;
    height: 220px;
    background: url("images/circle-black.png") no-repeat center/contain;
    pointer-events: none;
    animation: spin 30s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.sub-nago-con02 {
    width: min(94%, 90%);
    display: flex;
    align-items: center;
    gap: 0px 60px;
}
.sub-nago-con02 img {
    width: min(100%, 50%);
    border-radius: 0px 20px 20px 0px;
}
.sub-nago-con02 > div {
    width: 50%;
}
.sub-nago-con02 h3, .sub-nago-con03 h3 {
    font-size: clamp(2rem, 1.5rem + 1.563vw, 4rem)
}
.sub-nago-con03 {
    width: min(94%, 90%);
    display: flex;
    align-items: center;
    gap: 0px 60px;
    margin-left: auto;
    margin-top: min(20%, 180px);
}
.sub-nago-con03 img {
    width: min(100%, 50%);
    border-radius: 20px 0px 0px 20px;
}
.sub-nago-con03 > div {
    width: 50%;
}
/*===========================
メールフォームのスタイル
==========================*/
input,textarea,select {
    /* ress.min.cssでリセットされているのでここで命令 */
    background-color: #f8f8f8;
    border: 1px solid #e2e2e2;
}
.wpcf7 input[type="submit"] {
    font-size: 1.8rem;
    padding: 0.2em 0.4em;
    background: #eee;
    color: #555;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 1px rgba(0,0,0,.2);
    border: 1px solid #ccc;
    text-shadow: -1px 1px 0 rgba(255,255,255,1);
}
.wpcf7 input[type="submit"]:hover {
    box-shadow: 0 0 1px rgba(0,0,0,.2) inset;
}
span.wpcf7-list-item {/*チェックボックス改行*/
display: block!important;
}
#form {
    width: min(94%, 1200px);
    margin: 25px auto 15px;
    background-color: #FFF;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #9a9a9a;
}
#form dl {
    margin-top: 15px;
}
#form dt {
    font-size: 1.5rem;
    color: #333;
    padding: 10px 10px;
    background-color: #fff0f5;
}
#form dd {
    font-size: 1.5rem;
    background-color: #FFF;
    padding: 15px 0px 20px 0px;
    max-width: 100%;
}
#form dd p{
    line-height: 170%;
}
.hiss {
    font-size: 1.2rem;
    background-color: #ff677d;
    padding: 2px 5px;
    color: #FFF;
    margin-left: 15px;
}
.mail_box {
    margin: 5px 0px;
    font-size: 1.5rem;
}
.form-width {/* class:form-widthをcontact-form7へ テキストエリアの幅*/
    max-width: 100%;
}
#form p {
    padding: 0px 10px 10px;
}
/*===========================
  ブログページ
==========================*/

/* 記事一覧 */

/*/ _// _// _// _// _// _// _// _// _// _// _/
メディアクエリによる切り替え
/ _// _// _// _// _// _// _// _// _// _// _// _*/
@media only screen and (max-width: 1400px) {
hgroup h1 img {
    margin-left: 15px;
    margin-top: 10px;
}
.page-header {
    padding: 5px 10px 20px 0px;
}
.main-nav {
    gap: 25px 15px;
    margin-right: 0px;
}
.main-nav li {
    font-size: 1.4rem;
    padding-top: 7px;
}
.top-head-img img {
    height: auto;
}
/* スライド部分 */
.rolling-slider {
    width: 100%;
    height: auto;
    margin: 80px 0px 0px 0px;
    position: relative;
    z-index: 10;
}
.rolling-track {
    display: flex;
    width: 100%; /* 擬似要素含めて横に広げる */
    animation: roll 60s linear infinite;
    position: relative;
    top: 20px;
}
.slide-haikei {
    height: 400px;
    width: 70%;
    top: -300px;
}
.slide-haikei img {
    top: 350px;
    left: 30%;
    width: 500px;
}
/* ふるさと名護自慢ページ スマホ */
.sub-nago-con {
    background-image: url(images/okinawa-soba.png);
    background-size: 170px;
    background-position: right 10% center;
    padding: 20px 0px;
}
}
@media only screen and (max-width: 1024px) { /* 1024pxとそれ以下 */
/* TOPヘッドイメージ */
.page-header {
    display: none;
}
.img-pc {
    display: none;
}
.img-sp {
    display: block;
}
main {
    background-size: 250px;
}
#panel {
	position: absolute;
	top: 300px;
	right: 0px;
	z-index: 1000;
    padding: 0px;
}
#panel img {
    width: 35px;
    height: auto;
}
/*===========================
  TOPページ スマホ
==========================*/
/* トップコンテンツ */
.top-con {
    padding-left: 5%;
}
.top-nago-text {
    padding: 20px 20px 20px 20px;
    line-height: 180%;
}
/* スライド部分 スマホ */
.rolling-track::before,
.rolling-track::after {
    margin-right: 10px;
}
.slide-haikei {
    height: 150px;
    width: 80%;
    top: -90px;
}
.slide-haikei img {
    top: 120px;
    left: 30%;
    width: 280px;
}
/* 私たちのふるさとを自慢したい スマホ */
.top-jiman {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.top-jiman-left {
    width: 100%;
}
.nor-img {
    width: 160px;
    height: auto;
}
.top-jiman-left p:nth-of-type(2) {
    font-size: clamp(1.6rem, 1.55rem + 0.156vw, 1.8rem);
    margin-top: 10px;
    line-height: 1.8;
}
.top-jiman-right {
    width: 100%;
    margin-top: 60px;
}
.jiman-circle {
    top: -30px;
    right: 20px;
    max-width: 130px;
}
.custom-btn {
    margin-top: 40px;
}
/* 見てみて スマホ */
.top-mite {
    background-size: auto 300px;
    padding: 40px 15px;
}
.top-mite ul {
    margin: 40px auto 0px;
    display: block;
}
.top-mite ul li {
    width: 100%;
    margin-top: 40px;
}
/* TOPICS スマホ */
.topics-box {
    width: min(94%, 1400px);
    margin: 40px auto 0px;
    display: block;
}
.topics-box div {
    width: 100%;
    margin-bottom: 50px;
}
.topics-box div img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 100% 80%;
}
/* bannerエリア スマホ */
.banner-area {
    margin: min(20%, 180px) auto 0px;
}
.banner-area ul {
    gap: 20px;
}
.banner-area ul li {
    width: 45%;
}
/*===========================
  下層ページ スマホ
==========================*/
/* 下層ページ共通 */
.pan {
    padding: 30px 0px 0px 20px;
}
/* ふるさと名護自慢ページ スマホ */
.sub-nago-con {
    background-image: url(images/okinawa-soba.png);
    background-position: right 10% bottom 20%;
    padding: 0px 0px;
}
.sub-circle {
  height: 140px;
}
.sub-circle::before {
  right: -70px;
  background-size: 120px;
}
.sub-nago-con02 {
    width: min(96%, 90%);
    display: block;
    margin-top: 10px;
}
.sub-nago-con02 img {
    width: auto;
    border-radius: 0px 20px 20px 0px;
}
.sub-nago-con02 > div {
    width: 100%;
    padding: 5% 0 0 5%;
}
.sub-nago-con03 {
    width: min(96%, 90%);
    display: flex;
    flex-direction: column-reverse;
    margin-top: 80px;
}
.sub-nago-con03 img {
    width: auto;
    border-radius: 20px 0px 0px 20px;
}
.sub-nago-con03 > div {
    width: 100%;
    padding: 5% 5% 0 0;
}
/* なごきたPayページ スマホ */
.nagokita-con > div {
    margin: 20px auto 0px;
    display: block;
    text-align: center;
}
.nagokita-con > div img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}
.nagokita-con > div p {
    text-align: left;
    line-height: 2;
}
/* ふるさと納税ページ スマホ */
.furusato-banner {
    margin: 40px auto 0px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.furusato-banner li {
    width: 45%;
}
/*===========================
  footer よくある質問・お問合せ
==========================*/

/*===========================
  footer スマホ
==========================*/
#footer {
    border-radius: 30px 30px 0px 0px;
    padding: 50px 0px 15px;
    margin-top: 100px;
}
#footer .foot-con {
    display: block;
}
#footer .foot-con img {
    width: 200px;
    height: auto;
}
#footer .foot-con ul {
    gap: 30px 20px;
    margin: 30px 0px;
}
#footer .foot-con li {
    width: 40%;
}
#footer > ul {
    display: block;
}
#footer > ul li {
    margin-bottom: 15px;
}
#footer::after {
    content: "";
    position: absolute;
    top: -30px;
    right: 20px;
    width: 90px;
    height: 90px;
}
/*===========================
  ブログ スマホ
==========================*/

/*===========================
  トップスライドインナビゲーション
==========================*/
.menu-trigger,
.menu-trigger span{
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
    align-items: flex-start;
}
.menu-trigger {
    position: relative;
    width: 65px;
    height: 60px;
    background: rgba(255,255,255,.8);
    border-radius: 100px;
    z-index: 35;
    float: right;
    margin-top: 10px;
    margin-right: 10px;
}
.menu-trigger span {
    position: absolute;
    background: #555;
    width: 30px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
}
.menu-trigger span:nth-of-type(1){
    top: 20px;
}
.menu-trigger span:nth-of-type(2){
    top: 0;
    bottom: 0;
}
.menu-trigger span:nth-of-type(3){
    bottom: 20px;
}
.menu-trigger span:nth-of-type(4){
    color: #FFF;
    font-size: 1rem;
    bottom: 22px;
    min-width: 60px;
    background: none;
    text-align: center;
}
.menu-trigger.active span:nth-of-type(1){
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2){
    opacity: 0;
}
.menu-trigger.active span:nth-of-type(3){
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(4){
    opacity: 0;
}
nav {
    display: block;
}
.g-nav {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh; /* 高さを画面全体に調整 */
    overflow-y: auto; /* 縦スクロールを許可 */
    z-index: 25;
    padding: 15px 20px 0px 20px;
    border-radius: 0px;
}
.tate-scroll {/* 縦スクロールをできるように */
    overflow-y: auto; /* スクロール可能にする */
    -webkit-overflow-scrolling: touch; /* 慣性スクロールを有効に */
}
.g-nav .list .item a{
    display: block;
    text-decoration: none;
    color: #333;
    padding: 5px 0;
    font-size: 1.8rem;
}
.list {
	margin-top: 80px;
}
.list ul {
    width: 100%;
    border-top: 1px dotted #777;
    border-bottom: 1px dotted #777;
}
.list li {
	width: 100%;
	margin: 5px auto;
	font-size: 1.5rem;
    padding: 5px 0px 5px 5px;
}
#s_navi:after {
	content: "";
	display: block;
	clear: both;
}
#s_navi {
    display: block;
    position: static;
    top: 0px;
    width: 100%;
    z-index: 100;
    top: 0;
    background: linear-gradient(270.03deg, rgba(133, 255, 206, 0.5) 0.02%, rgba(236, 215, 244, 0.5) 77.87%);
}
.sp-head {
    display: flex;
    align-items: center;
    padding: 15px 0px 10px 15px;
}
.sp-logo {
    z-index: 50;
    width: clamp(20rem, 16.25rem + 11.719vw, 35rem);
    height: auto;
}
.menu-sp {
    padding: 30px 0px;
    display: flex;
    gap: 0px 35px;
    justify-content: start;
    align-items: center;
    line-height: 1.3;
    border-bottom: 1px dotted #777;
    color: #333;
}
.menu-sp a {
    color: #333;
    font-size: 3.5rem;
}
/*===========================
メールフォームのスタイル
==========================*/
#form {
    padding: 30px 15px;
}
.form-width {/* class:form-widthをcontact-form7へ テキストエリアの幅*/
    max-width: 100%;
}
textarea,input {
    max-width: 100%;
}
}

@media only screen and (max-width: 767px) {

}
