@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #353535;
  --color-white: #ffffff;
  --color-blue: #86c6f4;
  --color-green: #416936;
  --color-bgblue: #6dbbf2;
  --color-beige: #f7f1eb;
  /*カレントカラー*/
  --color-current: #416936;
  /*テキストリンクカラー*/
  --color-textlink:#416936;
  /*任意ボタンカラー*/
  --color-optional: #416936;
  /*ラジオボタンカラー*/
  --color-radio: #416936;
  /*チェックボタンカラー*/
  --color-check: #416936;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Kaku Gothic New", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.7rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.118;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.07em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #353535;
  --color-white: #ffffff;
  --color-blue: #86c6f4;
  --color-green: #416936;
  --color-bgblue: #6dbbf2;
  --color-beige: #f7f1eb;
  /*カレントカラー*/
  --color-current: #416936;
  /*テキストリンクカラー*/
  --color-textlink:#416936;
  /*任意ボタンカラー*/
  --color-optional: #416936;
  /*ラジオボタンカラー*/
  --color-radio: #416936;
  /*チェックボタンカラー*/
  --color-check: #416936;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Kaku Gothic New", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.7rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.118;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.07em;
}

/*opacity含めたカラー指定あればここで定義*/
/*========================
    default
========================*/
html {
  font-size: 62.5%;
}

a[href^="tel:"] {
  pointer-events: none;
}

.pc-none {
  display: none !important;
}

.wrapper {
  min-width: 1280px;
  max-width: 1920px;
  margin-inline: auto;
}

.container {
  /*ヘッダー追従の時はここにmax-width:1920px;,overflow-x:hidden;をかける*/
}

.com-inbox {
  width: 1080px;
}

/*パンくずリスト*/
.breadcrumb {
  padding-block: 1.5rem;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 0.25em;
}
.breadcrumb__item {
  display: flex;
}
.breadcrumb__item::after {
  content: "＞";
  margin-left: 0.25em;
  pointer-events: none;
}
.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child::after {
  display: none;
}

/*==============================
    各種ホバー処理
==============================*/
/*ロゴ*/
.logo a:hover {
  transition: opacity 0.3s;
}
.logo a:hover:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb__item a {
  transition: all 0.3s;
}
.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*ヘッダーナビ*/
.gnav__item a {
  transition: all 0.3s;
}
.gnav__item a:hover {
  transition: opacity 0.3s;
}
.gnav__item a:hover:hover {
  opacity: 0.5;
}

.header .mail {
  transition: all 0.3s;
}
.header .mail::before {
  transition: all 0.3s;
}
.header .mail:hover {
  background-color: var(--color-white);
}
.header .mail:hover::before {
  background: url(../img/common/icon_mail_g.png) top left/contain no-repeat;
}

/*各種ボタン*/
.com-btn {
  transition: all 0.3s;
}
.com-btn::after {
  transition: all 0.3s;
}
.com-btn:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}
.com-btn:hover::after {
  background: url(../img/common/btn-arw_g.svg) top left/contain no-repeat;
}

.mail-btn {
  transition: all 0.3s;
}
.mail-btn::before, .mail-btn::after {
  transition: all 0.3s;
}
.mail-btn:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}
.mail-btn:hover::before {
  background: url(../img/common/icon_mail_g.png) top left/contain no-repeat;
}
.mail-btn:hover::after {
  background: url(../img/common/btn-arw_g.svg) top left/contain no-repeat;
}

.link-btn {
  transition: all 0.3s;
}
.link-btn::after {
  transition: all 0.3s;
}
.link-btn:hover {
  background-color: var(--color-white);
  color: var(--color-bgblue);
}
.link-btn:hover::after {
  background: url(../img/common/icon-link_b.png) top left/contain no-repeat;
}

.ig-btn,
.x-btn {
  transition: all 0.3s;
}
.ig-btn::after,
.x-btn::after {
  transition: all 0.3s;
}
.ig-btn:hover,
.x-btn:hover {
  background-color: var(--color-green);
  color: var(--color-white);
}
.ig-btn:hover::after,
.x-btn:hover::after {
  background: url(../img/common/btn-arw_w.svg);
}

.note {
  transition: all 0.3s;
}
.note:hover {
  opacity: 0.5;
}

.top-news__btn {
  transition: all 0.3s;
}
.top-news__btn::after {
  transition: all 0.3s;
}
.top-news__btn:hover {
  opacity: 0.5;
}

.com-experience__item a {
  transition: all 0.3s;
}
.com-experience__item a:hover {
  opacity: 0.5;
}

.paginated__link {
  transition: all 0.3s;
}
.paginated__link:hover {
  opacity: 0.5;
}

.pagenation a {
  transition: all 0.3s;
}
.pagenation a:hover {
  opacity: 0.5;
}

/*テキストリンク*/
.com-textlink {
  transition: all 0.3s;
}
.com-textlink:hover {
  transition: opacity 0.3s;
}
.com-textlink:hover:hover {
  opacity: 0.5;
}

/*お問い合わせ完了（トップへ戻る）*/
.complete__btn {
  transition: all 0.3s;
}
.complete__btn:hover {
  transition: opacity 0.3s;
}
.complete__btn:hover:hover {
  opacity: 0.5;
}

/*追従ボタン*/
.follow_btn {
  transition: all 0.3s;
}
.follow_btn:hover {
  transition: opacity 0.3s;
}
.follow_btn:hover:hover {
  opacity: 0.5;
}

/*フッターナビ*/
.footer .sns__item a:has(img) {
  transition: all 0.3s;
}
.footer .sns__item a:has(img):hover {
  opacity: 0.5;
}
.footer-nav__item a {
  transition: all 0.3s;
}
.footer-nav__item a:hover {
  opacity: 0.5;
}
.footer small a:hover {
  opacity: 0.5;
}

/*==============================
    ヘッダー
==============================*/
.header {
  height: clamp(67px, 5.21vw, 100px);
  padding-left: clamp(33px, 2.6vw, 50px);
}
.header .logo {
  height: clamp(23px, 1.77vw, 34px);
}
.header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.6rem;
  height: 100%;
}
.header .gnav__list {
  font-size: clamp(12px, 0.94vw, 18px);
}

/*==============================
    メインビジュアル
==============================*/
.mv__title {
  font-size: clamp(32px, 2.5vw, 48px);
}
.mv .com-inbox {
  width: clamp(720px, 56.25vw, 1080px);
}

/*==============================
    共通ボタン
==============================*/
.com-btn {
  width: 30rem;
  height: 6rem;
}

.mail-btn {
  width: 24.5rem;
  height: 5rem;
}

.link-btn {
  width: 28rem;
  height: 5rem;
}

.ig-btn,
.x-btn {
  width: 24.5rem;
  height: 6rem;
}

/*==============================
    共通テーブル
==============================*/
.com-table tr {
  border-bottom: 1px solid #d9d9d9;
}
.com-table tr:last-child {
  border-bottom: none;
}
.com-table tr th,
.com-table tr td {
  padding-inline: 2rem;
}
.com-table tr th {
  vertical-align: middle;
}

/*==============================
    TOP
==============================*/
.top-news {
  padding-block: 10rem 9rem;
}
.top-news__wrap {
  gap: 13rem;
}
.top-news__title {
  align-items: flex-start;
  flex-shrink: 0;
}
.top-news__title .ja {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}

.top-profile {
  padding-block: 12rem;
  overflow: hidden;
}
.top-profile .com-inbox {
  align-items: flex-start;
}
.top-profile .com-title02 {
  margin-bottom: 0;
}
.top-profile__image {
  margin-right: -27rem;
  flex-shrink: 0;
  width: 62rem;
}
.top-profile__image figcaption {
  width: 35rem;
}
.top-profile__image figcaption::before {
  width: 85rem;
  height: 36.6rem;
}

.top-story {
  padding-block: 0 7.7rem;
}
.top-story__wrap {
  justify-content: space-between;
  align-items: flex-start;
}
.top-story__wrap .top-story__image {
  margin-left: -10rem;
}
.top-story__title {
  padding-top: 14rem;
}
.top-story__text {
  padding-top: 13rem;
}
.top-story__container {
  align-items: flex-start;
  margin-top: -7.2rem;
}
.top-story__container .top-story__image {
  margin-left: -27.3rem;
  flex-shrink: 0;
  width: 60rem;
}

.top-voice {
  padding-block: 11.4rem 11.8rem;
}
.top-voice::before {
  width: clamp(267px, 20.83vw, 400px);
}
.top-voice__container {
  padding-top: 3rem;
  overflow: hidden;
}
.top-voice__text {
  padding-top: 5rem;
}
.top-voice__image {
  margin-right: -27rem;
  flex-shrink: 0;
  width: 75rem;
}
.top-voice__text {
  padding-top: 13rem;
}

.top-audio {
  padding-block: 15rem 12rem;
  overflow: hidden;
}
.top-audio__wrap {
  align-items: flex-start;
}
.top-audio__image {
  flex-shrink: 0;
  width: 75rem;
  margin-left: -27.3rem;
}

.top-field {
  overflow: hidden;
  padding-block: 15.6rem 12.3rem;
}
.top-field__wrap {
  align-items: flex-start;
}
.top-field__text {
  padding-top: 2.7rem;
}
.top-field__image {
  margin-right: -27rem;
  flex-shrink: 0;
  width: 75rem;
}

/*==============================
    ストーリー
==============================*/
.story-intro {
  padding-block: 12.3rem 10rem;
}

.story-audio {
  padding-block: 0 15.6rem;
}
.story-audio::before {
  right: calc(50% + 23rem);
  top: 31.5rem;
  width: 45.8rem;
}
.story-audio__wrap {
  align-items: flex-end;
}
.story-audio__image {
  margin-left: -10rem;
}
.story-audio__text {
  width: 53rem;
  padding-right: 12.5rem;
  margin-left: auto;
  box-sizing: content-box;
}
.story-audio .com-title02 {
  margin-right: -10rem;
  margin-bottom: 0;
  padding-bottom: 8rem;
}

.story-section::before {
  width: clamp(343px, 26.77vw, 514px);
  top: calc(-1 * clamp(127px, 9.9vw, 190px));
}
.story-section__wrap {
  padding-block: 12rem 0;
  overflow: hidden;
}
.story-section .com-title01 {
  margin-inline: 0;
  text-align: left;
  align-items: flex-start;
  margin-bottom: 5.8rem;
}
.story-section__item {
  align-items: flex-start;
}
.story-section__item:nth-child(odd) .story-section__text {
  padding-left: 3rem;
}
.story-section__item:nth-child(odd) .story-section__image {
  margin-right: -27rem;
}
.story-section__item:nth-child(even) {
  flex-direction: row-reverse;
}
.story-section__item:nth-child(even) .story-section__text {
  padding-inline: 1rem;
}
.story-section__item:nth-child(even) .story-section__image {
  margin-left: -10rem;
  width: 53rem;
}
.story-section__image {
  flex-shrink: 0;
  width: 68rem;
}
.story-section__text {
  padding-top: 10.6rem;
}

/*==============================
    現地で聞いた声
==============================*/
.voice-leave {
  padding-block: 12rem 0;
}
.voice-leave .com-title01 {
  margin-inline: 0;
}
.voice-leave .com-inbox::before {
  width: clamp(1080px, 84.38vw, 1620px);
}
.voice-leave__text {
  width: 50rem;
}

.voice-shimane {
  padding-block: 14.3rem 22.6rem;
}
.voice-shimane .com-voice__container .com-voice__image::before {
  left: -12.2rem;
  bottom: -10.6rem;
}

.voice-kanagawa {
  padding-block: 14.3rem 19.5rem;
}
.voice-kanagawa .com-voice__container .com-voice__image::before {
  left: -13rem;
  bottom: -11.3rem;
}

.voice-nagasaki {
  overflow: hidden;
  padding-block: 0 12rem;
}
.voice-nagasaki__container {
  padding-inline: 10rem;
}
.voice-nagasaki__item {
  align-items: flex-start;
}
.voice-nagasaki__item:nth-child(odd) .voice-nagasaki__image {
  margin-left: -27rem;
}
.voice-nagasaki__item:nth-child(even) {
  flex-direction: row-reverse;
}
.voice-nagasaki__item:nth-child(even) .voice-nagasaki__image {
  margin-right: -27rem;
}
.voice-nagasaki__image {
  flex-shrink: 0;
  width: 68rem;
}
.voice-nagasaki__text {
  padding-top: 13.2rem;
}
.voice-nagasaki__box {
  width: 90rem;
}

/*共通デザインセクション*/
.com-voice {
  overflow: hidden;
}
.com-voice__wrap .com-voice__image {
  flex-shrink: 0;
  width: 81.5rem;
  margin-left: -42rem;
}
.com-voice__container .com-voice__image {
  flex-shrink: 0;
  width: 36rem;
  margin-right: -10rem;
}
/*==============================
    音声という選択
==============================*/
.audio-until {
  padding-block: 14rem 12rem;
  overflow: hidden;
}
.audio-until .com-title02::after {
  margin-left: -2rem;
}
.audio-until__item:first-child {
  gap: 9.5rem;
  align-items: center;
}
.audio-until__item:first-child .audio-until__image {
  margin-left: -42rem;
  width: 81.5rem;
}
.audio-until__item:last-child {
  flex-direction: row-reverse;
  gap: 12rem;
  align-items: flex-start;
}
.audio-until__item:last-child .audio-until__image {
  margin-right: -10rem;
  width: 36rem;
}
.audio-until__item:last-child .audio-until__text {
  padding-top: 7rem;
}
.audio-until__image {
  flex-shrink: 0;
}

.audio-video {
  padding-block: 14.4rem 12rem;
}
.audio-video__item::before {
  width: clamp(1100px, 66.67vw, 1280px);
}
.audio-video__box {
  width: 48rem;
}

.audio-works {
  padding-block: 14.4rem 12rem;
  overflow: hidden;
}
.audio-works__wrap {
  align-items: flex-start;
}
.audio-works__image {
  margin-left: -27rem;
  flex-shrink: 0;
}

.audio-consultation {
  padding-block: 12rem;
}
.audio-consultation .mail-btn {
  height: 6rem;
}
.audio-consultation .com-serif {
  width: 48rem;
}

/*==============================
    フィールドワーク
==============================*/
.field-consultation {
  padding-block: 14.5rem 12rem;
}
.field-consultation__box::before {
  right: 8.8rem;
  bottom: -5.6rem;
}
.field-consultation__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, 1fr);
  line-height: 1;
  gap: 2.2rem 7.5rem;
}
.field-consultation .mail-btn {
  width: 40rem;
  height: 9rem;
}

/*共通デザインセクション*/
.com-field {
  overflow: hidden;
  padding-block: 14rem 12rem;
}
.com-field__wrap {
  align-items: flex-start;
}
.com-field:nth-of-type(odd) .com-field__image {
  margin-left: -27rem;
}
.com-field:nth-of-type(even) .com-field__wrap {
  flex-direction: row-reverse;
}
.com-field:nth-of-type(even) .com-field__image {
  margin-right: -27rem;
}
.com-field:nth-of-type(3) .com-field__text {
  padding-top: 9rem;
}
.com-field:last-of-type .com-field__text {
  padding-top: 7rem;
}
.com-field__image {
  flex-shrink: 0;
  width: 68rem;
}
.com-field__text {
  padding-top: 6rem;
}

.field-social .com-field__image {
  margin-right: -10rem;
  width: 51rem;
}

.field-stay .com-field__image {
  margin-left: -10rem;
  width: 51rem;
}

/*==============================
    実際に体験してみる
==============================*/
.com-experience {
  padding-block: 12rem;
}

/*==============================
    お知らせ一覧
==============================*/
.news {
  padding-block: 10rem;
}

/*お知らせ共通部分*/
.com-news__item a:hover {
  transition: opacity 0.3s;
}
.com-news__item a:hover:hover {
  opacity: 0.5;
}

/*タグリスト(PC)
-----------------------------*/
.tag-select {
  text-align: right;
  margin-bottom: 5rem;
}
.tag-select__box {
  min-width: 24rem;
}
.tag-select__box::after {
  right: 1.8rem;
}
.tag-select__dropdown {
  line-height: 1;
  padding: 12px 48px 12px 12px;
  background-color: var(--color-white);
}

/*==============================
    お知らせ詳細
==============================*/
.news-detail {
  padding-block: 10rem;
}
.news-detail__box {
  padding: 4rem 4rem 6rem 4rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact {
  padding-block: 10rem;
}
.contact .com-table {
  margin-bottom: 3rem;
  table-layout: fixed;
}
.contact .com-table th {
  width: 35%;
}
.contact .com-btn {
  margin-inline: auto;
  margin-top: 5rem;
  width: 30rem;
}
.contact .contact-submits-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.contact .contact-submits-wrap .com-btn {
  margin-inline: 0;
}

/*==============================
  お問い合わせ完了
==============================*/
.complete {
  padding-block: 10rem;
}
.complete__box {
  text-align: center;
}
.complete__btn {
  margin-top: 5rem;
}
.complete__btn:hover {
  opacity: 0.5;
}

/*==============================
　プライバシーポリシー
==============================*/
.privacy {
  padding-block: 10rem;
}
.privacy__box {
  margin-bottom: 5rem;
}
.privacy__box:last-child {
  margin-bottom: 0;
}

/*==============================
    サイトマップ
==============================*/
.site {
  padding-block: 10rem;
}
.site .com-inbox {
  width: 70rem;
}
.site__list {
  display: flex;
  flex-direction: column;
}
.site__item {
  height: 7.5rem;
}
.site__item a {
  padding: 1rem;
}
.site__item a::after {
  width: 1rem;
  transform: rotate(-45deg);
}
.site__item a:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
.site__item a:hover::after {
  transform: rotate(-45deg) translate(5px, 5px);
  transition: all 0.3s;
}

/*==============================
    このページは存在しません
==============================*/
.e404 {
  padding-block: 10rem;
}
/*==============================
    フッター
==============================*/
.footer {
  padding-block: 6rem 3.3rem;
}
.footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-nav__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, 1fr);
  gap: 3rem 4.8rem;
  line-height: 1;
  font-size: 1.6rem;
  color: #272a32;
}
.footer__inner {
  width: 1080px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
}
.footer small {
  margin-top: 7.7rem;
}