@charset "UTF-8";
/*
Theme Name: NPO法人日本オーガニック認証協会
Theme URL:https://www.joca-gunma.com
Description: 日本オーガニック認証協会様用のテンプレートです
Version: 1.0
Author: llc-on
*/

/* reCAPTCHAバッジを左に移動 */
.grecaptcha-badge{left:6px!important;width:70px!important;}
.grecaptcha-badge:hover{left:6px!important;width:256px!important;}

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

body {
  color: #1b1b1b;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  word-break: break-all;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #1b1b1b;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

iframe {
  vertical-align: bottom;
}

main {
  padding-top: 80px;
  margin-bottom: 120px;
}

/* セクション */
.section-title {
  color: rgba(39, 38, 37, 1);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Sawarabi Gothic", sans-serif;
}

/* ボタン */
.btn {
  max-width: 120px;
  background-color: #fff;
  display: block;
  border: solid 1px #272625;
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  background-color: #272625;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.btn:hover {
  color: #F4F2EE;
  opacity: 1;
}
.btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.center-btn {
  margin: auto;
}

/* パンくずリスト */
.breadcrumb-002 {
    display: flex;
    gap: 0 15px;
    list-style: none;
    padding: 0;
    font-size: .9em;
    margin-bottom: 80px;
}
.breadcrumb-002 li {
    display: flex;
    align-items: center;
}
.breadcrumb-002 li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%2314813c'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}
.breadcrumb-002 li:not(:last-child)::after {
    display: inline-block;
    margin-left: 15px;
    color: #14813c;
    content: '/';
}
.breadcrumb-002 a {
    color: #1f1f1f;
    text-decoration: none;
}

/* Inview */
.js-fadein {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s;
}
.js-fadein.inview {
  opacity: 1;
  transform: translateY(0);
}

/*===   op-loading   ===*/
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #272625;
  z-index: 9999;
}
.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #F4F2EE;
  width: 0;
  height: 1px;
}
.shutter {
  -webkit-animation: byeShutter 2.6s forwards;
  animation: byeShutter 2.6s forwards;
}
.shutter::before {
  -webkit-animation: shutterOpen 2.6s forwards;
  animation: shutterOpen 2.6s forwards;
}
.wrapper {
  -webkit-animation: contentScale 2.6s forwards;
  animation: contentScale 2.6s forwards;
}
@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes wrapperScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
    transform: perspective(800px) scale(1) rotateX(0);
  }
}


/*-------------------------------------------
Header
-------------------------------------------*/
#header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
#header .site-id-wrapper {
  display: inline-block;
}
#header .site-id-wrapper a {
  display: block;
}
#header .site-id-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7em;
}
.site-id-text .npo {
  font-size: 1.2rem;  /* NPO法人だけ小さく */
  display: block;
}

#header .nav .menu {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 1vw, 16px);
}
#header .nav .menu>li {
  margin-left: 40px;
}
#header .nav .menu .menu-first {
  position: relative;
}
#header .nav .menu .menu-first::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #1f1f1f;
  border-right: solid 1px #1f1f1f;
  margin: 0 auto;
  transform: rotate(135deg);
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}
#header .nav .menu .menu-first .menu-second {
  width: 12em;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 15px 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}
#header .nav .menu .menu-first .menu-second li {
  margin-bottom: 10px;
}
#header .nav .menu .menu-contact a {
  background-color: #272625;
  color: #fff;
  display: block;
  font-weight: 500;
  padding: 8px 30px;
  text-align: center;
}
#header .nav .menu .menu-contact a:hover {
  border: solid 1px #272625;
  background-color: #FFF;
  color: #272625;
  opacity: 1;
}

#header .hamburger {
  display: none;
  font-family: "Noto Sans JP", sans-serif;
}

#header .mask {
  display: none;
}


/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
  height: 600px;
  margin-bottom: 160px;
  position: relative;
}
.mainvisual .fade-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.mainvisual .fade-img li {
  /* width: 75%;   */
  width: 80%;
  position: absolute;
  /* right: 0; */
  opacity: 0;
  animation: fade 15s infinite;
}
.mainvisual .fade-img li:nth-child(1) {
  animation-delay: 0s;
}
.mainvisual .fade-img li:nth-child(2) {
  animation-delay: 5s;
}
.mainvisual .fade-img li:nth-child(3) {
  animation-delay: 10s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.mainvisual .catchphrase {
  color: #272625;
  font-size: 50px;
  text-shadow: 1px 1px 3px #F4F2EE;
  position: absolute;
  /* top: 210px; */
  /* left: 5%; */
  top: 140px;
  right: 2%;
}
.mainvisual .indent {
  display: inline-block;
  text-indent: 1em;
}

/* 下層ページのページトップタイトル */
.page-header {
  margin-bottom: 10px;
  position: relative;
}
.page-header .img {
  height: 100%;
}
.page-header .img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
/* .page-header .page-title-area {
  width: 100%;
  max-width: 400px;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(39, 38, 37, .8);
  color: #fff;
  padding: 0 4% 1%;
  position: absolute;
  top: 0;
  left: 0;
} */
.page-header .page-title-area {
  width: 100%;
  display: flex;
  align-items: flex-end;
  background-color: rgba(39, 38, 37, .8);
  color: #fff;
  padding: 0 4% 1%;
  position: absolute;
  bottom: 0;
}
.page-header .page-title-area .page-title .en {
  display: block;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-header .page-title-area .page-title .ja {
  display: block;
  font-size: 14px;
  font-weight: 400;
  font-family: "Sawarabi Gothic", sans-serif;
}


/*-------------------------------------------
TOPPAGE_ABOUT
-------------------------------------------*/
.about-desc-area {
    margin-bottom: 160px;
}
.top-title {
  position: relative;
  margin: 0 0 20px 6%;
  text-align: left;
  color: rgba(39, 38, 37, 1);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Sawarabi Gothic", sans-serif;
}
.top-title span {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.top-title::before {
  content: attr(date-en);
  position: absolute;
  top: -4rem;
  left: -2rem;
  transform: rotate(-10deg);
  color: rgba(0, 51, 0, 0.3);
  font-size: clamp(60px, 6rem, 70px);
  font-style: italic;
  font-weight: bold;
  z-index: -1;
  font-family: "Zen Old Mincho", serif;
  white-space: nowrap;
  pointer-events: none;
}
.about-desc-area .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-desc-area .about-li-box {
  display: flex;
  width: 70%;
  gap: 5px;
  position: relative;
}
.about-desc-area .about-li-box li:last-child {
  margin: 150px 0 0 -60px;
  position: relative;
}
.about-li-box li img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.about-desc-area .text {
  width: 30%;
  margin: auto;
  margin-left: 30px;
  margin-right: 5%;
}
.text .item-title-img {
  width: 200px;
  margin-bottom: 20px;
  line-height: 1;
}
.text .item-title-img img {
  width: 200px;
  height: 100%;
}
.about-desc-area::after {
  content: "";
  width: 80%;
  min-height: 440px;
  background-color: #F4F2EE;
  display: block;
  position: absolute;
  top: 10vw;
  right: 0;
  z-index: -10;
}
.about-wrap .text .description {
  line-height: 1.8;
}

  /*-----  ごあいさつ  -----*/
  .greetings {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 120px;
  }
  .greetings::after {
    content: "";
    width: 70%;
    height: 80%;
    min-height: 300px;
    background-color: #F4F2EE;
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: -10;
  }
  .greetings-title {
    position: relative;
    font-size: clamp(48px, 4vw, 64px);
    /* margin: .7em 0 0 6%; */
    margin: 0 0 40px 6%;
    font-family: "Sawarabi Gothic", sans-serif;
    text-align: left;
  }
  .greetings .text {
   padding: 0 6% 0 4%;
   width: 60%;
  }
  .greetings .text {
    line-height: 1.8;
  }
  .greetings .text-right {
    text-align: right;
    margin-top: 20px;
  }
  .greetings .greetings-list {
    width: 40%;
    margin-top: 150px;
  }
  .greetings .greetings-list li {
    width: 85%;
  }

  /*-----  協会概要  -----*/
  .profile {
    margin: auto;
    margin-bottom: 160px;
    max-width: 1200px;
    padding: 0 20px;
  }
  .profile-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-family: "Sawarabi Gothic", sans-serif;
    letter-spacing: .5rem;
    margin-bottom: 30px;
  }
  .profile-title::before {
    content: '';
    margin-right: 20px;
    width: 35px;
    height: 3px;
    background-color: rgba(0, 51, 0, 0.5);
  }
  .profile-title::after {
    content: '';
    margin-left: 20px;
    width: 35px;
    height: 3px;
    background-color: rgba(0, 51, 0, 0.5);
  }
  .profile .profile-list {
    display: flex;
    flex-wrap: wrap;
  }
  .profile .profile-list dt {
    width: 200px;
    border-top: solid 1px rgba(39, 38, 37, 0.7);
    font-size: 15px;
    padding: 40px 0;
    background-color: #F4F2EE;
  }
  .profile .profile-list dt:last-of-type {
    border-bottom: solid 1px rgba(39, 38, 37, 0.7);
  }
  .profile .profile-list dd {
    width: calc(100% - 200px);
    border-top: solid 1px #ccc;
    font-size: 15px;
    padding: 40px 0;
    line-height: 1.8;
  }
  .profile .profile-list dd:last-of-type {
    border-bottom: solid 1px #ccc;
  }


/*-------------------------------------------
news & Contact
-------------------------------------------*/
.news-contact_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.news-contact_cta .item {
  flex: 1 1 calc(50% - 10px);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  max-height: 320px;
}
.news-contact_cta .item .img {
  width: 100%;
  height: 100%;
}
.news-contact_cta .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* タイトルは絶対配置でしっかり重ねる */
.news-contact_cta .item .title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 1;
}
.news-contact_cta .item .title .en {
  font-size: 42px;
  font-weight: bold;
  display: block;
}
.news-contact_cta .item .title .ja {
  font-size: 18px;
  display: block;
  font-family: "Sawarabi Gothic", sans-serif;
}
.news-contact_cta .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(39, 38, 37, .7) 100%);
  /* opacity: 0; */
  transition: opacity 0.3s ease;
  z-index: 1;
}
/* 画像ズーム用 */
.news-contact_cta .item .img img {
  transition: transform 0.5s ease;
}
/* タイトルふわっと */
.news-contact_cta .item .title {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* --- hover時の動き --- */
.news-contact_cta .item:hover::before {
  opacity: 1;
}
.news-contact_cta .item:hover .img img {
  transform: scale(1.1);
}
.news-contact_cta .item:hover .title {
  transform: translateY(-10px);
  opacity: 1;
}


/*-------------------------------------------
subpage_共通
-------------------------------------------*/
.subpage-area {
  margin: 0 auto 120px;
  max-width: 1280px;
	/* text-align: center;
	display: block; */
}
.subpage-head-area {
  margin-bottom: 50px;
	text-align: center;
	display: block;
  padding: 0 20px;
}
.subpage-head-text {
  text-align: left;
	display: inline-block;
}

.subpage-wrap {
  max-width: 1280px;
  padding: 0 20px;
}
.subpage-content {
  margin-bottom: 60px;
}
.subpage-content .subpage-title {
  border-bottom: solid 1px #272625;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.5em;
  font-family: "Sawarabi Gothic", sans-serif;
}


/*-------------------------------------------
404
-------------------------------------------*/
.text-area-404 {
  text-align: center;
  margin-bottom: 40px;
}
.text-404 {
  text-align: left;
  display: inline-block;
}


/*-------------------------------------------
Footer
-------------------------------------------*/
#footer {
  background-color: #272625;
  color: #fff;
  padding: 60px 20px 30px;
}
#footer a {
  color: #fff;
}
#footer .info-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
}
#footer .intro-wrap {
    flex: 1 1 45%;
    min-width: 300px;
  }
#footer .intro .intro-text {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
#footer .intro .address {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 1px solid #fff;
  line-height: 1.8em;
  font-size: 15px;
}
#footer .info-area .map {
  flex: 1 1 45%;
  height: 13.25em;
} 
#footer .intro-wrap .map iframe {
  width: 100%;
  height: 100%;
}
#footer2-area {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
#footer2-area .menu-2 a:hover {
  text-decoration: underline;
}

/* pagetop */
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #F4F2EE;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #484A4F;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
  

/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 60px;
  }

  main {
    padding-top: 60px;
  }

  /*-------------------------------------------
  Header
  -------------------------------------------*/
  #header {
    height: 70px;
  }
  #header .nav {
    width: 80%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -120%;
    z-index: 20;
    transition: all 0.6s;
  }
  #header .nav.active {
    left: 0;
  }
  #header .nav .menu {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 80px 0;
    overflow: auto;
  }
  #header .nav .menu li:first-of-type {
    display: block;
  }
  #header .nav .menu>li {
    width: 100%;
    border-top: solid 1px #1f1f1f;
    margin-left: 0;
  }
  #header .nav .menu>li a {
    width: calc(100% - 60px);
    display: block;
    padding: 20px;
  }
  #header .nav .menu .menu-first {
    display: block;
  }
  #header .nav .menu .menu-first::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #1f1f1f;
    position: absolute;
    top: 30px;
    right: 20px;
  }
  #header .nav .menu .menu-first::after {
    width: 1px;
    height: 15px;
    background-color: #1f1f1f;
    border: none;
    transform: none;
    position: absolute;
    top: 23px;
    right: 26px;
    left: auto;
  }
  #header .nav .menu .menu-first .active::after {
    content: none;
  }
  #header .nav .menu .menu-first .menu-second {
    width: 100%;
    position: static;
    padding: 0 0 0 40px;
  }
  #header .nav .menu .menu-first .menu-second li {
    border-top: solid 1px #eee;
    margin-bottom: 0;
  }
  #header .nav .menu .menu-contact {
    padding: 30px 0;
  }
  #header .nav .menu .menu-contact a {
    max-width: 160px;
    margin: 0 auto;
  }

  #header .hamburger {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 30;
  }
  #header .hamburger span {
    width: 30px;
    height: 1px;
    background-color: #1f1f1f;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
  }
  #header .hamburger span:nth-of-type(1) {
    top: 16px;
  }
  #header .hamburger span:nth-of-type(2) {
    top: 25px;
  }
  #header .hamburger span:nth-of-type(3) {
    top: 34px;
  }
  #header .hamburger.active span {
    background-color: #fff;
  }
  #header .hamburger.active span:nth-of-type(1) {
    top: 24px;
    transform: rotate(-45deg);
  }
  #header .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #header .hamburger.active span:nth-of-type(3) {
    top: 24px;
    transform: rotate(45deg);
  }
  /* MENU テキスト（4番目の span） */
  #header .hamburger span:nth-of-type(4) {
    position: absolute;
    top: 38px;
    width: auto;
    height: auto;
    background: none;
    color: #272625;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 1px;
  }
  #header .mask.active {
    width: 100%;
    height: 100%;
    background: #14813C;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
  }
}


/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .h2-section {
    margin-bottom: 60px;
  }
  .h2-section .section-title {
    text-align: center;
    margin-bottom: 10px;
  }


  /*-------------------------------------------
  Header
  -------------------------------------------*/
  #header .site-id-text {
    font-size: 1.25rem;
  }
  .site-id-text .npo {
    font-size: 1rem;
  }

  /* 下層ページのページヘッダー部 */
  .page-header .img img {
    height: 240px;
  }
  .page-header .page-title-area {
    max-width: 100%;
    height: 70px;
    top: auto;
    bottom: 0;
  }
  .page-header .page-title-area .page-title .ja {
    font-size: 24px;
    /* font-size: 12px; */
  }
  .page-header .page-title-area .page-title .en {
    font-size: 12px;
    /* font-size: 24px; */
  }
  /* 下層ページのページヘッダー下テキスト */
  .head-text {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: clamp(32px, 10vw, 60px);
  }


  /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/
  .mainvisual {
    height: 400px;
  }
  .mainvisual .fade-img img {
    height: 400px;
  }
  .mainvisual .fade-img li {
    width: 100%;
  }
  .mainvisual .catchphrase {
    color: #F4F2EE;
    text-shadow: 1px 1px 1px #272625;
    font-size: 32px;
    top: 300px;
    display: block;
    text-align: right;
    right: 6%;
  }

  /*-------------------------------------------
  TOPPAGE_ABOUT
  -------------------------------------------*/
  .about-desc-area {
    margin-bottom: 80px;
  }
  .top-title {
    text-align: center;
    font-size: 42px;
  }
  .top-title::before {
    top: -3.5rem;
    left: -1rem;
  }
  .about-desc-area .flex {
    flex-direction: column;
  }
  .about-desc-area .about-li-box {
    width: 100%;
    gap: 5px;
    margin-bottom: 30px;
  }
  .about-desc-area .about-li-box li:last-child {
    margin: 0;
  }
  .about-desc-area::after {
    display: none;
  }
  .about-desc-area .text {
    width: 100%;
    background-color: #F4F2EE;
    margin: -30px 0 0;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }

  /*-----  greetings  -----*/
    .greetings {
      display: block;
      margin-bottom: 80px;
    }
    .greetings::after {
      width: 100%;
      height: 90%;
      min-height: auto;
      top: 3vh;
    }
    .greetings .text {
      padding: 0 20px;
      margin-bottom: 40px;
      width: 100%;
    }
    .greetings .text .greetings-title {
      margin: 0;
      top: -1rem;
      text-align: center;
      font-size: clamp(26px, 2.5rem, 52px);
    }  
    .greetings .greetings-list {
      margin-top: 0;
      width: 100%;
      max-width: 768px;
    }
    .greetings .greetings-list li {
      width: 100%;
      max-width: 600px;
    }

    /*-----  profile  -----*/
    .profile {
      margin-bottom: 80px;
    }
    .profile .profile-list dt {
      width: 90px;
      padding: 20px 0;
    }
    .profile .profile-list dd {
      width: calc(100% - 90px);
      padding: 20px 0;
    }


  /*-------------------------------------------
  News & Contact
  -------------------------------------------*/
  .news-contact_cta {
    padding: 0px 20px
  }
  .news-contact_cta .item {
    flex: 1 1 100%;
  }
  /* active時の押し込みエフェクト */
  .news-contact_cta .item:active::before {
    opacity: 1;
  }
  .news-contact_cta .item:active .img img {
    transform: scale(1.1);
  }
  .news-contact_cta .item:active .title {
    transform: translateY(-10px);
    opacity: 1;
  }


  /*-------------------------------------------
  sabpage_共通
　-------------------------------------------*/
  .subpage-head-text {
    margin-bottom: 40px;
  }
  .subpage-content .subpage-title .subpage-title_bottom {
    display: block;
  }


  /*-------------------------------------------
  Footer
  -------------------------------------------*/
  #footer {
    padding: 60px 20px 40px;
  }
  #footer .info-area {
    width: 100%;
    align-items: center;
    margin-bottom: 40px;
    gap: 0;
  }
  #footer .menu-area {
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
  } 
  .intro-wrap, .map {
    width: 100%;
  }
  .map iframe {
    width: 100%;
    height: 200px;
  }
  #footer2-area {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .menu-2 li {
    display: block;
  }
}