@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

.anchor {
  text-align: center;
  display: block;
  padding-top: 90px;
  margin-top: -90px;
}

.coolchoice-body {
  background-color: #F7F6F2;
  color: #776F6D;
  font-family: YuGothic, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  overflow: hidden;
}

svg {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

/* モバイル時改行（PC版無効） */
@media screen and (min-width: 750px) {
  .br-sp {
    display: none;
  }
}
/* ======================================
	フェードイン、アウト :::::::::::::::::::::::::::::::
	========================================== */
.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* ======================================
	ヘッダー :::::::::::::::::::::::::::::::
	========================================== */
/* ぎふ清流COOLCHOICEロゴ */
#mainIcon {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

#mainIcon img {
  width: 100%;
}

@media (min-width: 1200px) {
  #mainIcon {
    right: 100px;
  }
}
/* ======================================
	ハンバーガーボタン :::::::::::::::::::::::::::::::
	========================================== */
/* トグルボタン */
.toggle-btn {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #C7E6E9;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  top: 90px;
  z-index: 500;
}

@media (max-width: 675px) {
  .toggle-btn {
    width: 60px;
    height: 60px;
    right: 0;
    top: 70px;
    border-radius: 0%;
  }
}
.toggle-btn i {
  background: #776F6D;
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.5s;
  width: 40%;
}

.toggle-btn i:nth-of-type(1) {
  left: 24px;
  top: 30px;
  border-radius: 1px;
}

.toggle-btn i:nth-of-type(2) {
  left: 24px;
  top: 40px;
  border-radius: 1px;
}

.toggle-btn i:nth-of-type(3) {
  left: 24px;
  top: 50px;
  border-radius: 1px;
}

.toggle-btn.active i:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
}

.toggle-btn.active i:nth-of-type(2) {
  opacity: 0;
}

.toggle-btn.active i:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 675px) {
  .toggle-btn i:nth-of-type(1) {
    left: 20px;
    top: 20px;
  }
  .toggle-btn i:nth-of-type(2) {
    left: 20px;
    top: 30px;
    border-radius: 1px;
  }
  .toggle-btn i:nth-of-type(3) {
    left: 20px;
    top: 40px;
    border-radius: 1px;
  }
}
/* ======================================
	ナビゲーションメニュー :::::::::::::::::::::::::::::::
	========================================== */
.cc_global-nav {
  position: fixed;
  inset: 0;
  margin: auto;
  background: #F7F6F2;
  width: 100%;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.cc_global-nav.active {
  opacity: 0.95;
  pointer-events: auto;
}

.cc_global-nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 500px) {
  .cc_global-nav__inner {
    margin: 0;
  }
}

.cc_global-nav__list {
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  margin: 80px 2rem 2rem;
}
@media (max-width: 500px) {
  .cc_global-nav__list {
    background-color: transparent; /*背景透明に*/
    border-radius: 0px;
    padding: 0;
    margin: 2rem;
  }
}

.gnavIcon {
  width: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.cc_global-nav__item {
  align-items: center;
}
.cc_global-nav__item a {
  color: #776F6D;
  letter-spacing: 0.1rem;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  display: flex;
  line-height: 2rem;
  text-decoration: none;
  transition: 0.5s;
  display: flex;
  align-items: center;
}
.cc_global-nav__item a:hover {
  color: #5BB6C1;
}
.cc_global-nav__item p {
  color: #776F6D;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-left: 32px;
  text-decoration: none;
  transition: 0.5s;
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  .cc_global-nav__item p {
    display: none;
  }
}
.cc_global-nav__item hr {
  border-color: #988d8b;
  border-style: dashed;
  margin-bottom: 15px;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .cc_global-nav__item hr {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }
}

.cc_gnav__other p {
  color: #776F6D;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
}

.cc_gnav__other img {
  width: 60px;
  margin-top: 5px;
}
@media (max-width: 500px) {
  .cc_gnav__other img {
    width: 40px;
  }
}

.cc_gnav__other--link {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
  margin-top: 30px;
}
@media (max-width: 500px) {
  .cc_gnav__other--link {
    margin-top: 0.5rem;
  }
}

.cc_gnav__other--sns-box {
  display: flex;
  gap: 8px;
}

.cc_gnav__other--link a {
  display: flex;
  gap: 4px;
  font-size: 16px;
  margin-right: 20px;
  line-height: 20px;
  vertical-align: middle;
}

.cc_gnav__other--link img {
  width: 18px;
  margin: 0;
  line-height: 20px;
  vertical-align: middle;
}

/* ======================================
	メインビジュアル画面 :::::::::::::::::::::::::::::::
========================================== */
.cc_mainVisual {
  background: url(../images/mainvisual_back.webp) center center no-repeat;
  background-size: cover;
  width: auto;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.cc_mainVisual::before {
  content: "";
  display: block;
  width: auto;
  height: 100vh;
  background-image: url(../images/mainvisual_back.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: zoom 20s 1;
  animation-fill-mode: forwards;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
/* ===メインタイトル=== */
/* メインタイトル(画像)の設定 */
.cc_mainVisual__text--text {
  width: 450px;
  position: absolute;
  right: 50%;
  bottom: 60%;
  transform: translate(50%, 50%);
  z-index: 1;
}

.cc_mainVisual__text--text img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  filter: drop-shadow(0 0 30px rgb(255, 255, 255));
}

@media (max-width: 650px) {
  .cc_mainVisual__text--wrap {
    width: 290px;
    height: 210px;
  }
  .cc_mainVisual__text--border {
    width: 280px;
    height: 200px;
  }
  .cc_mainVisual__text--text {
    width: 290px;
    height: 210px;
  }
}
/* メインビジュアルスクロールアニメーション */
.cc_mainVisual .scroll {
  display: inline-block;
  position: absolute;
  left: clamp(8px, 3vw, 62px);
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff !important;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}

.cc_mainVisual .scroll a {
  color: #fff !important;
}

/* @media screen and (min-width: 1000px){
  .mainVisual .scroll {
    right: calc(50% - 500px);
  }
} */
.cc_mainVisual .scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
}

.cc_mainVisual .scroll::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* ======================================
	scroll用CSS :::::::::::::::::::::::::::::::
	========================================== */
/*!
 * ress.css 窶｢ v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
	 # General elements
	 # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible; /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted; /* Add a bordered underline effect in all browsers */
  text-decoration: none; /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder; /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic; /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
	 # Forms
	 # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number] {
  width: auto; /* Firefox 36+ */
}

[type=search] {
  -webkit-appearance: textfield; /* Safari 8+ */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Safari 8 */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

/* # =================================================================
	 # Specify media element style
	 # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden; /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block; /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
	 # Accessibility
	 # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
	 # Selection
	 # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

/* scroll用CSS終わり */
/* ======================================
	全体のwrap :::::::::::::::::::::::::::::::
========================================== */
.cc_wrap {
  max-width: 1280px;
  padding: 32px 0;
  margin: 0 auto;
}

/* ======================================
	セクションの区切り波線:::::::::::::::::::::::::::::::
========================================== */
/* 波線1こめ */
.cc_custom-shape-divider-top-1656057868 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.cc_custom-shape-divider-top-1656057868 svg {
  position: relative;
  display: block;
  width: calc(140% + 1.3px);
  height: 10vw;
}

.cc_custom-shape-divider-top-1656057868 .shape-fill {
  fill: #F7F6F2;
}

/** For mobile devices **/
@media (max-width: 767px) {
  .cc_custom-shape-divider-top-1656036926 svg {
    width: calc(100% + 1.3px);
    height: 10vw;
  }
}
/* 波線2こめ */
.cc_custom-shape-divider-bottom-1656058026 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.cc_custom-shape-divider-bottom-1656058026 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 10vw;
  transform: rotateY(180deg);
}

.cc_custom-shape-divider-bottom-1656058026 .shape-fill {
  fill: #F7F6F2;
}

/** For mobile devices **/
@media (max-width: 767px) {
  .cc_custom-shape-divider-bottom-1656036897 svg {
    width: calc(100% + 1.3px);
    height: 10vw;
  }
}
/* 波線3つめ */
.cc_custom-shape-divider-bottom-1656291961 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.cc_custom-shape-divider-bottom-1656291961 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 10vw;
  transform: rotateY(180deg);
}

.cc_custom-shape-divider-bottom-1656291961 .shape-fill {
  fill: #FFFFFF;
}

/** For mobile devices **/
@media (max-width: 767px) {
  .cc_custom-shape-divider-bottom-1656291961 svg {
    width: calc(100% + 1.3px);
    height: 10vw;
  }
}
/* -------------------------------------------------
	各セクションの背景と高さ設定
	(position設定のため高さを指定しないと表示されない)
	------------------------------------------------ */
/* m o v i e */
.cc_wave__container01 {
  position: relative;
  height: 100%;
  background-color: #fff;
  padding: 32px 2% 15% 2%;
}

/* アンバサダー */
.cc_wave__container02 {
  position: relative;
  height: 100%;
  background-color: #F7F6F2;
  padding-bottom: 10%;
}

/* Instagram */
.cc_wave__container03 {
  position: relative;
  height: 100%;
  background-color: #fff;
  padding-bottom: 10%;
}

/* ご賛同のお願い */
.cc_wave__container04 {
  position: relative;
  height: 100%;
  background-color: #F7F6F2;
  padding-top: 20px;
  padding-bottom: 10%;
}

/* 関連BOOK */
.cc_wave__container05 {
  position: relative;
  height: 100%;
  background-color: #fff;
  padding-top: 2%;
  padding-bottom: 2%;
}

/* ======================================
	リード文:::::::::::::::::::::::::::::::
========================================== */
.leadText__container {
  position: relative;
  height: 700px;
}
@media (max-width: 750px) {
  .leadText__container {
    height: 800px;
  }
}

.leadText__container p {
  color: #625B59;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 100;
  text-align: center;
  letter-spacing: -0.01rem;
}

.leadText__container span {
  color: #776F6D;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 700;
  background: linear-gradient(transparent 50%, #D6F1F4 50%);
  text-align: center;
}

/* 左上のテキスト */
.leadText__text--left {
  position: absolute;
  left: 3%;
  top: 20px;
  width: 60%;
  background-color: #fff;
  padding: 3%;
  border-radius: 10px;
}

/* 右のアニメーション文字 */
.leadText__text--right--top {
  margin-top: 20px;
  position: absolute;
  right: 20px;
  top: 50px;
  z-index: 3;
}

@keyframes titleAnimation {
  0% {
    letter-spacing: 1rem;
    opacity: 0;
  }
}
.leadText__text--right--top h2 {
  font-size: 30px;
  color: #7ABFC6;
  font-weight: 500;
  letter-spacing: 0.05rem;
  margin-bottom: 40px;
  white-space: nowrap; /*改行させない*/
  animation: titleAnimation 4s;
}

/* 右下のテキスト */
.leadText__text--right--bottom {
  position: absolute;
  right: 3%;
  top: 250px;
  width: 60%;
  background-color: #fff;
  padding: 3%;
  border-radius: 10px;
}

/* 下のテキスト */
.leadText__text--bottom {
  position: absolute;
  left: 0;
  right: 0;
  top: 450px;
  margin: auto;
  width: 70%;
  background-color: #fff;
  padding: 3%;
  border-radius: 10px;
}

@media (max-width: 850px) {
  /* 右のアニメーション文字 */
  .leadText__text--right--top {
    position: absolute;
    right: 20px;
    top: -15px;
    z-index: 10;
  }
  .leadText__text--right--top h2 {
    font-size: 24px;
  }
  /* 左上のテキスト */
  .leadText__text--left {
    position: static;
    width: 80%;
    margin: 3% auto;
  }
  /* 右下のテキスト */
  .leadText__text--right--bottom {
    position: static;
    width: 80%;
    margin: 3% auto;
  }
  /* 下のテキスト */
  .leadText__text--bottom {
    position: static;
    width: 80%;
  }
}
@media (max-width: 850px) {
  /* 右（上）のアニメーション文字 */
  .leadText__text--right--top {
    position: static;
    text-align: center;
    margin-top: 30px;
  }
  /* 左（上）のテキスト */
  .leadText__text--left {
    margin-top: 20px;
  }
}
/* ----------
	葉っぱ
	-------------- */
/* 左の葉っぱのイラスト */
.leadText__img--left {
  width: 200px;
  position: absolute;
  top: 150px;
  left: 10px;
  z-index: 1;
}

.leadText__img--left img {
  width: 100%;
  mix-blend-mode: multiply;
}

/* 右の葉っぱのイラスト */
.leadText__img--right {
  width: 200px;
  position: absolute;
  top: 350px;
  right: 50px;
  z-index: 1;
  transform: scale(-1, 1);
}

.leadText__img--right img {
  width: 100%;
  mix-blend-mode: multiply;
}

/* ----------------------
	メインの葉っぱ　位置変更
	----------------------- */
@media (max-width: 950px) {
  .leadText__img--left {
    position: absolute;
    top: 200px;
  }
  .leadText__img--right {
    position: absolute;
    top: 350px;
    right: 20px;
  }
}
@media (max-width: 850px) {
  .leadText__img--left {
    width: 150px;
    position: absolute;
    top: 50px;
  }
  .leadText__img--right {
    width: 150px;
    position: absolute;
    top: 200px;
    right: 20px;
  }
}
@media (max-width: 500px) {
  .leadText__img--left {
    opacity: 0;
  }
  .leadText__img--right {
    opacity: 0;
  }
}
/* ======================================
	わたしたちにできること:::::::::::::::::::::::::::::::
========================================== */
.start__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

.title_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 3px solid #7ABFC6;
  padding: 1rem;
  margin-bottom: 3rem;
}
.title_wrap h3 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(20px, 5vw, 26px);
  text-align: center;
}

.icon__wrap {
  margin: 300px auto 20px auto;
  text-align: center;
}

/* できること一覧table設定PC版 */
.start__contents__table__pc {
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.start__contents__table__pc tr, td {
  vertical-align: middle;
  text-align: center;
  padding-top: 15px;
}

.start__contents__table__pc img {
  width: 80%;
}

.start__contents__table__pc p {
  font-size: 0.9rem;
  color: #776F6D;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .start__contents__table__pc {
    display: none;
  }
}
/* できること一覧table設定SP版 */
.start__contents__table__sp {
  max-width: 550px;
  margin: 0 auto;
  align-items: center;
}

.start__contents__table__sp tr, td {
  vertical-align: middle;
  text-align: center;
  padding-top: 15px;
}

.start__contents__table__sp img {
  width: 80%;
}

.start__contents__table__sp p {
  font-size: clamp(13px, 3vw, 16px);
  color: #776F6D;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 769px) {
  .start__contents__table__sp {
    display: none;
  }
}
/* ======================================
	ボタン:::::::::::::::::::::::::::::::
========================================== */
.button__wrap {
  margin: 50px auto 0px auto;
  text-align: center;
}

.button__wrap .button {
  display: flex;
  gap: 0.5em;
  margin: 0 auto;
  color: #776F6D;
  font-size: 1rem;
  font-weight: 500;
  vertical-align: middle;
  border: 1.5px solid #776F6D;
  padding: 1rem 2rem;
  border-radius: 10px;
}

.button__wrap .button:hover {
  color: #fff !important;
  border: 1.5px solid #7ABFC6;
  background-color: #7ABFC6;
  padding: 20px 40px;
  border-radius: 10px;
  transition: 0.2s;
}

.button__wrap .button a:hover {
  color: #fff !important;
}

.arrow--img {
  vertical-align: middle;
  width: 15px;
}

/* ======================================
	スライダー:::::::::::::::::::::::::::::::
========================================== */
.swiper_container {
  margin-inline: auto;
  max-width: 100%;
  position: relative;
  margin: clamp(32px, 10vw, 60px) 0;
}

.swiper {
  max-width: 100%;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -25px;
}

.cc_swiper_prev {
  left: 15% !important;
}

.cc_swiper_next {
  right: 15% !important;
}

.cc_swiper_next::after,
.cc_swiper_prev::after {
  color: #757575;
}

.swiper-pagination-bullet {
  background-color: #757575;
}

@media (max-width: 900px) {
  .swiper_container {
    width: 95%;
    margin: clamp(32px, 10vw, 60px) auto;
  }
  .cc_swiper_next::after,
  .cc_swiper_prev::after {
    font-size: 24px;
    color: #757575;
  }
  .cc_swiper_prev {
    left: 0% !important;
  }
  .cc_swiper_next {
    right: 0% !important;
  }
}
/* ======================================
	m o v i e:::::::::::::::::::::::::::::::
========================================== */
.videoinner {
  max-width: 1280px;
  margin: 0 auto;
}

#movie {
  width: 50px;
  text-align: center;
}

.title02_icon {
  margin: 0 auto 20px auto;
  text-align: center;
}

/* 動画小見出し */
.subtitle {
  font-size: clamp(18px, 2vw, 1.3rem);
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
  line-height: 1.5;
}

.subtitle:before, .subtitle:after {
  border-top: 1px solid;
  content: "";
  width: 2em; /* 線の長さ */
}

.subtitle:before {
  margin-right: 1em; /* 文字の右隣 */
}

.subtitle:after {
  margin-left: 1em; /* 文字の左隣 */
}

/* ↓↓モーダルビデオ↓↓ */
/* カード */
ul.youtubeList {
  padding: 0;
  margin: 0;
  border: none;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: clamp(8px, 1.5vw, 16px);
}

ul.youtubeList li {
  border-radius: 15px;
}

ul.youtubeList li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

ul.youtubeList li a:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  text-decoration: none;
  border-radius: 15px;
}

ul.youtubeList li a:hover:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.4);
}

ul.youtubeList li a:hover:after {
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  color: #FFF;
  border-radius: 15px;
}

ul.youtubeList li a img {
  border-radius: 15px 15px 0 0;
}

ul.youtubeList li a p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 0.9rem;
  text-decoration: none;
  color: #313131;
  padding: 10px 20px;
  line-height: 1.6;
}
@media (max-width: 550px) {
  ul.youtubeList li a p {
    font-size: 13px;
  }
}

/* modal */
.ed-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  z-index: 99999999;
}

div#modalOverlay {
  width: 100%;
  height: 100%;
  display: flex;
  cursor: pointer;
}

.ed-closeModal {
  position: absolute;
  top: -35px;
  right: 5px;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.5;
}

.ed-closeModal::before, .ed-closeModal::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  transform: rotate(45deg);
  transform-origin: top left;
}

.ed-closeModal::before {
  left: 0;
}

.ed-closeModal::after {
  right: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
}

.modalContent {
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
}

.video {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  filter: drop-shadow(0px 2px 5px #313131);
  animation: fadeIn 1.2s ease 0s 1 normal;
}

.video iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 850px) {
  ul.youtubeList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  ul.youtubeList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  ul.youtubeList li {
    width: 90%;
    margin: 2%;
  }
}
/* ======================================
	アンバサダー紹介:::::::::::::::::::::::::::::::
========================================== */
.ambassador__wrap {
  max-width: 1280px;
  margin: 0 auto;
}

#ambassador {
  width: 40px;
  text-align: center;
}

.title03_icon {
  margin: 0 auto;
  text-align: center;
}

/* アンバサダー一覧*/
.ambassador__container {
  margin: 0 auto;
}

.ambassador__article-wrap, .ambassador__instagram-wrap {
  display: grid;
  gap: 1em;
  grid-template-columns: auto;
  margin: 0 auto;
  max-width: 1280px;
  padding: clamp(16px, 2vw, 32px);
}
@media (min-width: 768px) {
  .ambassador__article-wrap, .ambassador__instagram-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ambassador__wrap img {
  width: 100%;
}

.ambassador__item {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.ambassador__item img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.ambassador__item .active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s;
}

.ambassador__item:hover .active {
  opacity: 1;
}

/* ======================================
	Instagram :::::::::::::::::::::::::::::::
========================================== */
.Instagram__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3%;
  padding-bottom: 2rem;
}

/* Instagramタイトル*/
#instagram {
  width: 50px;
  text-align: center;
}

.title04_icon {
  margin: 0px auto 10px auto;
  text-align: center;
}

/* Instagramアタリ画像 */
.atari_Instagram {
  width: 1000px;
  margin: 0 auto;
}

.atari_Instagram img {
  width: 100%;
  height: auto;
}

/* ======================================
	ご賛同のお願い :::::::::::::::::::::::::::::::
========================================== */
/* ご賛同タイトル*/
#leaf {
  width: 50px;
  text-align: center;
}

.title05_icon {
  margin: 0px auto 20px auto;
  text-align: center;
}

.leaf__wrap {
  margin: 0 auto;
}

.leaf__text--container {
  display: flex;
  justify-content: center;
}

.leaf__text--item--text {
  background: #fff;
  opacity: 0.8;
  max-width: 570px;
  padding: 5%;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  left: 3%;
}

.leaf__text--item--text p {
  color: #625B59;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 100;
  text-align: justify;
  letter-spacing: -0.01rem;
  white-space: nowrap; /*改行させない*/
}

.leaf__text--item--text span {
  color: #776F6D;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 700;
  background: linear-gradient(transparent 50%, #D6F1F4 50%);
  text-align: justify;
}

.leaf__text--item--img {
  width: 500px;
  top: 50px;
  right: 3%;
  position: relative;
  border-radius: 10px;
  background-image: url(../images/eco-image.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

@media (max-width: 650px) {
  .leaf__text--container {
    flex-direction: column;
  }
  .leaf__text--item--text {
    width: 90%;
    position: static;
    margin: 0 auto;
  }
  .leaf__text--item--text p {
    text-align: center;
  }
  .leaf__text--item--text span {
    text-align: center;
  }
  .leaf__text--item--img {
    display: none;
  }
}
/* ======================================
	賛同リンク :::::::::::::::::::::::::::::::
========================================== */
.leaf__link--wrap {
  display: flex;
  gap: 50px;
  margin: 0 auto;
  justify-content: center;
}

.leaf__link--container {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.leaf__link--item--img {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leaf__link--item--img img {
  width: 100%;
}

.leaf__link--item--qr {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leaf__link--item--qr img {
  width: 100%;
}

.leaf__link--item--caption {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid #776F6D;
  margin-right: 10px;
  margin-left: 50px;
}

.leaf__link--item--caption img {
  margin-top: 0.5rem;
  width: 15px;
}

.leaf__link--item--caption p {
  font-size: 0.8rem;
  text-align: center;
}

.kanren__link--container {
  margin-top: 30px;
}

.leaf__link--item--caption {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid #776F6D;
  margin-right: 10px;
  margin-left: 50px;
}

@media (max-width: 800px) {
  .leaf__link--wrap {
    flex-direction: column;
    gap: 0;
    margin-top: 50px;
  }
  .leaf__link--container {
    margin-top: 0;
  }
}
/* ======================================
	関連BOOK: :::::::::::::::::::::::::::::::
========================================== */
.book__container {
  max-width: 1280px;
  margin: 0 auto;
}

/* bookタイトル*/
#book {
  width: 50px;
  text-align: center;
}

.title06_icon {
  margin: 0px auto;
  text-align: center;
}

.booklink__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3%;
  padding: 0 1rem;
}
.booklink__container::before {
  content: "";
  display: block;
  width: 13.6666666667%;
  order: 1;
}
.booklink__container::after {
  content: "";
  display: block;
  width: 13.6666666667%;
}

.booklink__item {
  width: 13.6666666667%;
  padding-bottom: 3%;
}

.booklink__item img {
  width: 100%;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 650px) {
  .booklink__container {
    display: flex;
    flex-wrap: nowrap;
    max-width: 650px;
    overflow-x: scroll;
    overflow-y: hidden;
    margin: 0 auto;
    justify-content: flex-start;
    align-items: center;
    margin: 0 1rem;
  }
  .booklink__item {
    width: 40%;
    padding-bottom: 3%;
    flex-shrink: 0;
  }
  .booklink__container::-webkit-scrollbar {
    height: 14px; /* スクロールバーの高さ */
  }
  .booklink__container::-webkit-scrollbar-thumb {
    background: #7ABFC6; /* ツマミの色 */
    border-radius: 7px; /* ツマミ両端の丸み */
  }
  .booklink__container::-webkit-scrollbar-track {
    background: #bee9ed; /* トラックの色 */
    border-radius: 7px; /* トラック両端の丸み */
  }
}
/* ======================================
	関連リンク: :::::::::::::::::::::::::::::::
========================================== */
.kanren__link--container {
  gap: 20px;
  margin: 0 auto;
  margin-bottom: 64px;
  margin-top: 64px;
}

.banner_container {
  max-width: 600px;
  width: calc(100% - 40px);
  margin: 0 auto;
  border: 1px solid #afafaf;
}

.leaf__link--item--img {
  max-width: 250px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 32px;
}/*# sourceMappingURL=coolchoice.css.map */