@charset "utf-8";

:root {
  /*カラー*/
  --text-color: #707070;
  --text-color-W: #fff;
  --background-navbar: rgba(55, 55, 55, 0.5);
  --background-gray: #F2F2F2;

  /*フォント*/
  --noto-sans-font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --arial-font-family: Arial, sans-serif;
  --font-yu-mincho: YuMincho,'Yu Mincho',serif;

  /*jp*/
  --paragraph-jp-md-font-family: var(--noto-sans-font-family);
  --font-size-3vw: 3vw;
  --font-size-XL: 30px;
  --font-size-L: 22px;
  --font-size-M: 18px;
  --font-size-S: 16px;
  --font-weight_M: 400;
  --font-weight_B: bold;
  --line-height_M: 2;
  --line-height_S: 1.5;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  padding: 0px;
  margin: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

input,
button,
textarea,
select {
  font: inherit;
}
header {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
  position: fixed;
  background-color: #fff;
  z-index: 10;
}
.logo_area {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.logo img {
  width: 4rem;
}
header h1 {
  font-size: 7vw;
  font-weight: var(--font-weight_B);
}
header h1 span {
  font-size: 6vw;
  margin: 0;
  padding: 0 0.5rem;
  color: #00a960;
}

/*nav---------------------*/
.menu_wrap {
  width: 100%;
}
nav {
  margin: 0;
  padding: 0;
}
.list_nav_header {
  display: grid;
  width: 100%;
  grid-template-columns:2fr 2fr;
  gap: 2px;
  color: var(--text-color-W);
  margin: 10px auto 0;
}


.list_nav_header li{
  margin: 0 auto;
  text-align: center;
  background-color: #00913a;
  width: 100%;
  padding: 15px;
}



/* .top_wrap {
  padding-top: 200px;
} */

.greeting {
  padding-bottom: 100px;
}

/*slider*/
.slider_wrap {
    padding-top: 150px;
}
#slider {
  width: 100%;
  height: 50vh;
}
#slider h1 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size:5vw;
  text-transform: uppercase;
  color: #fff;
}

/*sider内の文字アニメ---------------------------------------*/
.glowAnime span{opacity: 0;}
/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span{ animation:glow_anime_on 10s ease-out forwards;
  font-size: 5vw;
}
/* .glowAnime.glow span{ animation-delay:15s;
  font-size: 5vw;
} */

@keyframes glow_anime_on{
  0% { opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
  50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
  100% { opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}
/*sider内の文字アニメ END---------------------------------------*/
iframe {
  padding: 10px 0;
}
.wrap{
  position: relative;
  width: 100%;
}
.slogan {
  text-align: center;
  font-size: 5vw;
  color: #ffab04;
  font-weight: var(--font-weight_B);
  margin: 5rem 0;
}
section {
  padding: 2% 0;

}
section h2 {
  font-family: var(--noto-sans-font-family);
  font-weight: var(--font-weight_B);
  font-size: var(--font-size-XL);
  text-align: center;
  margin: 2rem auto 3rem;
  position: relative;
}
section h2 span {
  color: #707070;
  display: block;
  font-size: var(--font-size-M);
  margin-top: 5px;
}
section h2::after{
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 1px;
  background-color: #000;
}

.comment {
  margin: 0.5rem auto;
  line-height: var(--line-height_M);
  padding: 0 2%;
  text-align: justify;
}

.greeting > .comment {
  background-image: url(../images/commnt_logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  padding: 0 2%;
}
.comment p {
  text-align: center;
}
.photo {
  margin: 20px auto;
}
figure {
  text-align: center;
}
figure img {
  width: 80%;
  max-width: 100%;
  margin: auto;
}
figure .name {
  font-size: var(--font-size-XL);
  font-weight: var(--font-weight_B);
  text-align: center;
}
figcaption {
  margin: 10px auto;
}

/*pdf_area---------------------------------------*/
.bg_GR {
  /* height: 500px; */
  min-height: 100%;
  /* clip-path: polygon(0 19%, 100% 0, 100% 100%, 0% 100%); */
  background-color: #ddf5e6;
  padding-bottom: calc(10vw + 10px);
  position: relative;
  overflow: hidden;

}
.bg_GR::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #B6DFC6;  /* 三角 */
  border-left: 100vw solid transparent;
  }

.pdf_area {
  display: flex;
  flex-direction: column;
}
.pdf {
  font-size: 1.5rem;
  color: var(--text-color-W);
  text-align: center;
  margin: 1rem;
}
.pdf a {
  background-color: #00913a;
  box-shadow: 6px 6px rgba(0, 145, 58, .5);
  color: var(--text-color-W);
  display: block;
  line-height: 2;
}
.pdf a:hover {
  background-color: rgba(0, 145, 58, .5);
  display: block;
  line-height: 2;
}

/*polcy_area-----------------------------------------------------------*/
.policy_area {
  min-height: 100%;
  background-color: #fff9ee;
  padding-bottom: calc(10vw + 10px);
  position: relative;
  overflow: hidden;
}
.policy_area > .comment{
  width: 100%;
  max-width: 980px;
}
.policy {
  margin-top: 2rem;
    padding-bottom: calc(10vw + 10px);
    /* position: relative; */
    overflow: hidden;
    background-color:#fff9ee;
}
.policy::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #fff;
  border-left: 100vw solid transparent;
}
.policy_box {
  padding: 2rem;
  width: 95%;
  margin: 2rem auto;
  background-color: #fff;
  position: relative;
  display: block;
}
.policy_photo{
  width: 100%;
}
.policy_photo img{
  width: 100%;
}
.policy_box h3{
  font-weight: var(--font-weight_B);
  position: absolute;
  top: -6%;
  left: 0;
  right: 0;
  font-size: 8vw;
  color: #ffab04;
  border-bottom: solid 5px;
  width: 90%;
}
h3 span{
  font-size: 5rem;
  font-style: italic;
  margin-right: 20px;
  color: rgba(277, 199, 165, .5);
}
.policy_box ul {
  list-style: square;
  padding-top: 3rem;
}
.policy li {
  margin-bottom: 1.5rem;
  line-height: var(--line-height_M);
  font-size: var(--font-size-M);
}
.policy li::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/triangle.png);
    background-size: 100%;
    background-repeat: no-repeat;
    /* background-position: left top; */
    position: absolute;
    right: 10px;
    bottom: 10px;
}



/*slider-------------------------------------------*/
.slider img {
  width: 100%;
  height: auto;
}
.slider .slick-slide {
  margin: 0;
}
.slider {
  margin: 2rem 0;
}

/*footer------------------------------------------------*/
footer {
  background: url(../images/bg1.jpg) no-repeat top center;
  height: 100vh;
  background-size: cover;
  padding: 2rem 0;
  color: var(--text-color-W);
  text-align: center;
  position: relative;
}
footer::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
}
.footer {
  position: absolute;
  width: 100%;
  text-align: center;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  margin:auto;
}
.text {
  font-size: 3.5vw;
  color: var(--text-color-W);
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  font-size: 3.5vw;
}

/*info----------------*/
.info {
  width: 100%;
  padding: 2rem 0;
  margin: auto;
  width: 100%;
}
.info_inner {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column-reverse;
}
.info_area{
  border: solid 5px #fff;
  /* flex: 0 0 calc(50% - 20px); */
  padding: 1.5rem 1rem;
  margin: 10px auto;
  width: 95%;
}

.name_area {
  position: relative;
  padding: 1.5rem 1rem;
}
.name_area::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.name_area span {
  position: relative;
  padding: 0 1em;
  margin: 2% auto;
  font-size: var(--font-size-L);
  font-family: var(--font-yu-mincho);
  font-weight: var(--font-weight_B);
}
.tel_area {
  font-size: var(--font-size-XL);
  margin-top: 20px;
}
.tel_area a {
  margin-left: 20px;
}

.mail_area {
  margin-top: 1.2rem;
}
.mail_area p {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
}
.mail_area p a {
  margin-top: 10px;
  font-size: 5vw;
}

/* Page-top */
#page-top a {
  background-color: #00913a;
  bottom: 0;
  color: var(--text-color-W);
  padding: 20px;
  position: fixed;
  right: 0;
}
#page-top a:hover {
  background-color: rgba(0, 145, 58, .5);
}


/*tablet-PC------------------------------------------------------------------*/
@media (min-width: 769px) {
header {
  flex-direction: row;
  /* justify-content: center; */
  align-items: center;
  gap: 100px;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}
.logo {
  padding: 1rem 2rem;
}
.logo img {
  width: 100%;
  padding: 0 ;
}
header h1 {
  font-size: var(--font-size-3vw);
  font-weight: var(--font-weight_B);
  width: 100%;
}
header h1 span {
  font-size: var(--font-size-L);
}
.logo_area {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/*nav---------------------*/
.menu {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: #fff;
  transition: all 0.3s;
  top: 0;
  z-index: 10;
  gap: 20px;
}
.menu_wrap {
  width: auto;
}
header nav {
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.list_nav_header {
  display: flex;
  align-items: center;
  flex-direction: row;
  color: var(--text-color-W);
  margin: auto;
}
.list_nav_header li {
  color: #000;
  white-space: nowrap;
  display: block;
  background-color: #fff;
  padding: 0 20px;
}
.list_nav_header li a {
  display: inline-block;
  position: relative;
}
.list_nav_header li a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #00913a;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.list_nav_header li a:hover:after {
  transform: scale(1, 1);
}



/*burger_btn------------------*/
#burger {
  display: none;
}

#slider {
  height: 100vh;
}

.container {
  width: 1500px;
  max-width: 100%;
  margin: 50px auto;
}
.greeting {
  display: flex;
  flex-wrap: wrap;
}
.comment {
  margin: 2rem auto;
  padding: 0 1rem;
  width: 40%;
  order: 2;
}
.photo {
  width: 30%;
  order: 3;
}
.photo:last-child {
  width: 30%;
  order: 1;
}

/*news letter_PC-----------------------------------------*/
.pdf_area {
  flex-direction: row;
  margin: 2rem auto;
  flex-wrap: wrap;
  width: 1200px;
  max-width: 100%;
}
.pdf {
  width: calc(100% / 5);
  background-color: #00a960;
  font-size: 1.5rem;
  color: var(--text-color-W);
  text-align: center;
  margin: 1rem;
  box-shadow: 6px 6px rgba(190, 227, 165, .5);
}

/*policy_PC-------------------------------------*/
.policy {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.policy_box {
  padding: 2rem;
  /* width: calc((100% - 30px) / 2); */
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  background-color: #fff;
  position: relative;
  display: block;
  margin-top: 5rem;
}
.policy_box h3 {
  font-size: var(--font-size-3vw);
  top: -3%;
  left: -2%;

  width: 50%;
}
.box > ul {
  width: 100%;
}
.policy li {
  font-size: var(--font-size-L);
}
.box {
  display: flex;
  flex-direction: row;
  padding: 2rem;
  margin: 0 auto;
}
.policy_photo img {
  margin-left:10px;
}
/*footer info---------------------------------*/
.text {
  font-size: 2vw;
  color: var(--text-color-W);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.info_inner {
  margin: 2rem auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 1200px;
  max-width: 100%;
}
.info_area {
  width: calc((100% - 20px)/ 2);
}
.name_area {
  font-size: var(--font-size-L);
  text-align: center;
  margin-bottom: 1.2rem;
  padding: 0.8rem 0;
}
.mail_area p a {
  margin-top: 10px;
  font-size: 1.2vw;
}
.tel_area {
  font-size: var(--font-size-L);
}



}
