@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.618;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;              /* 1 */
  height: auto;                 /* 1 */
  vertical-align: middle;       /* 2 */
  font-style: italic;           /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover;       /* 4 */
  shape-margin: 0.75rem;        /* 5 */
}

strong {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}

/* 文字色
======================================================================= */

body {
  color: #212222;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 820px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

/* 間隔 */

.l-margin {
  margin:40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 20px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 20px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

@media(max-width: 599px) {
  .l-width {
    padding: 0 20px;
  }
  .l-margin {
    margin: 20px auto;
  }
  .l-padding {
    padding: 20px;
  }
  .l-columns-2,
  .l-columns-3 {
    margin: 2em 0;
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }

  /* 画像の大きさ */

  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* --------------------------------------------------
  ヘッダー
-------------------------------------------------- */

.header {
  padding: 20px 20px 0;
  position: relative;
  z-index: 1;
}

.header__logo-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.logo {
  max-width: 312px;
  line-height: 1;
  flex-shrink: 0;
  padding-bottom: 20px;
}


@media(max-width: 820px) {
  .logo {
    max-width: 66%;
  }
}

/* ドロップダウンメニュー
-------------------------------------------------- */

.gnavi__wrap {
  width: 100%;
}
.gnavi__lists {
  display: flex;
  justify-content: flex-end;

  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gnavi__list {
  height: 60px; /* ここを60pxにしないと、カーソルが外れてドロップダウンしたメニューが消えてしまう */
  position: relative;

  padding-inline: 1em;
  transition: all .3s;
}
.gnavi__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;

  text-decoration: none;
  color: #666;
  font-size: 15px;
}
.gnavi__list:hover a {
  color: #369;
}

.dropdown__lists {
  margin: 0;
  padding: 0;
  list-style-type: none;

  display: none; /* デフォルトでは非表示の状態にしておく */
  position: absolute;
  top: 60px; /* 親メニューの高さと同じにする */
  right: 0;
}
.gnavi__list:hover .dropdown__lists {
  display: block; /* Gナビメニューにホバーしたら表示 */
}
.dropdown__list {
  transition: all .3s;
  position: relative;
  white-space: nowrap; /* 改行させない（要素の幅にする） */
}
.dropdown__list a {
  display: block;
  padding: 1em;
  background-color: #fff;
  text-decoration: none;
}

/* ハンバーガーメニュー
-------------------------------------------------- */

/*ボタン*/
.header__btn {
  width: 75px;
  height: 75px;  


  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: 0;
  right: 0;

  border: none;
  background-color: transparent;

  z-index: 3;
  }

/*ハンバーガーアイコン*/

.header__btn .icon {
 display: block;
 position: relative;
 top: 0;
 margin: 0 auto;
 
 width: 24px;
 height: 2px;
 
 background-color: #ccc;
 transition: .3s ease;
}

.header__btn .icon::before,
.header__btn .icon::after {
 content: '';
 display: block;
 position: absolute;
 left: 0;
 width: 100%;
 height: 2px;
 transition: all .3s;
 background-color: inherit;
}

.header__btn .icon::before {
 top: -8px;
}

.header__btn .icon::after {
top: 8px;
}

/*ナビゲーション*/

.header__navigation {
 position: fixed;
 top: 0;
 right: 0;

 width: 100%;
 height: 100%;
 background-color: rgba(255, 255, 255, .9);


 text-align: center;
 transition: .3s ease;
 transform: translateX(100%);

 z-index: 2;
}

 
.header__navigation ul {
 margin: 0;
 padding: 0;
 height: 100%;

 display: flex;
 flex-direction: column;
 justify-content: center;

 list-style-type: none;
}
.header__navigation ul li {
  text-align: left;
  
 }

.header__navigation a {
 padding: .5em 1em;
 display: block;

 color: #333;
 text-decoration: none;
 font-weight: normal;
 font-size: 1em;

 border-bottom: 1px solid #ccc;

}

.header__navigation .child a {
  padding-left: 2em;
}

/*open*/

.open .header__btn .icon {
 background-color: transparent;
}

.open .header__btn .icon::before,
.open .header__btn .icon::after {
 top: 0;
 background-color: #333;
}

.open .header__btn .icon::before {
 transform: rotate(45deg);
}

.open .header__btn .icon::after {
 transform: rotate(-45deg);
}

.open .header__navigation {
 transform: translateX(0);
}

/* =======================================================================
  メイン
======================================================================= */

.main {
  background: linear-gradient(#eefada,#b8dc7c);
}


/* スライダー */

.sliderArea {
  background: #fff;
  overflow: hidden;
}
.sliderWide {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
.sliderWide .slick-arrow {
  opacity: 0;
  transition-duration: 0.3s;
}
.sliderWide:hover .slick-arrow {
  opacity: 1;
}
.slider {
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
}
.slider .slick-list {
  overflow: visible;
}
.slider .slick-slide {
  padding: 0;
  opacity: .5;
  transition-duration: 0.3s;
}
.slider .slick-slide.slick-current {
  opacity: 1;
}
.slider .slick-slide a {
  display: block;
}
.slider .slick-slide a:hover {
  display: block;
  opacity: .7;
}
.slider img {
  height: auto;
  width: 100%;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-dots {
  bottom: -33px;
}

/* =======================================================================
  リード文
======================================================================= */

.lead {
  text-align: center;
}

.lead__h2 {
  margin-top: 0;
  font-size: 26px;
}


.lead p {
  color: #171717;
  font-size: 18px;
}

.lead__img {
  display: flex;
}

.lead__img-item {
  align-items: center;
}
  


@media screen and (min-width:768px) {
  .lead__content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }

  .lead__txt,
  .lead__img {
    flex: 1;
  }

  .lead__txt {
    margin-left: 1em;
  }

  .lead__img {
    margin-right: 1em;
  }
}



/*-------------------------------------------
　フッター
-------------------------------------------*/

.footer {
  padding-block: 40px;
  color: #fff;
  text-align: center;
  background-color: #0f6700;
}

.footer a {
  color: inherit;
}


.footer__logo {
  margin-bottom: 1em;
}

.footer__link {
  font-size: 1em;
}

.footer__txt {
  font-size: 1em;
}

.footer__copyright {
  font-size: 1em;
}

/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: bold;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* 形状 */

.is-shadow {
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.15));
}
.is-shadow:hover {
  filter: none;
}

.is-round {
  border-radius: 9px;
}


/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
20px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */


