﻿@charset "UTF-8";

/* 共通 -------------------------------------------------------------------------------*/
a:hover {
  opacity: 0.7;
  transition: 0.2s;
}

.inner {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width:1000px) {
  .inner {
    width: 90%;
  }
}

img {
  max-width: 100%;
}

.is_sp {
  display: none;
}

@media screen and (max-width:1000px) {
  .is_pc {
    display: none;
  }

  .is_sp {
    display: block;
  }
}

body {
  font-size: 20px;
  line-height: 1.8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

@media screen and (max-width:1000px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* header */
header {
  background-color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}


/* header menu */
h1 {
  font-size: 2.75rem;
  font-weight: bold;
}

h1 img {
  height: 50px;
  margin-right: 10px;
}

.h1_sub {
  color: #777;
  font-size: 95%;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 10;
}

.menu-btn span {
  background: #777;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
}

.menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 165px;
  right: 20px;
  background: #333;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu a {
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
}

.menu a:hover {
  background: #555;
}

.menu.open {
  display: flex;
}

@media screen and (max-width:1000px) {
  h1 {
    font-size: 1.75rem;
  }
}

/* main */
.site_main {
  width: 100%;
  background: #19b1c6;
}

.site_main_img {
  text-align: center;
}


/* 共通 */
#profile .inner,
#policy .inner,
#activity .inner,
#information .inner {
  padding: 80px 0;
}

.h2_title {
  color: #fff;
  background: #19b1c6;
  font-size: 3.5rem;
  text-align: center;
  font-weight: bold;
  padding: 20px 0;
}

@media screen and (max-width:1000px) {

  #profile .inner,
  #policy .inner,
  #activity .inner,
  #information .inner {
    padding: 40px 0;
  }

  .h2_title {
    font-size: 2rem;
  }

}

/* profile */
.message_area {
  margin-bottom: 40px;
}

.message_area p {
  margin-bottom: 20px;
}

.message_area .name {
  text-align: right;
  font-size: 140%;
  font-weight: bold;
}

.h2_profile_title {
  color: #19b1c6;
  font-weight: bold;
  font-size: 200%;
}

@media screen and (max-width:1000px) {
  .h2_profile_title {
    font-size: 180%;
  }
}

.profile_flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.img_area {
  width: 30%;
}

.profile_area {
  width: calc(100% - 30% - 40px);
}

.profile_area_block {
  margin-bottom: 20px;
}

.profile_area_block p {
  font-size: 90%;
}

.h3_profile_title {
  color: #19b1c6;
  font-weight: bold;
  font-size: 140%;
  border-left: 5px solid #19b1c6;
  padding-left: 0.5rem;
  line-height: 1;
  margin-bottom: 20px;
}

.h3_profile_title_flex{
  display: flex;
  gap:15px;
}

.h3_profile_title_flex p:first-child{
  width: 240px;
  font-weight: bold;
  color: #777;
}
@media screen and (max-width:1000px) {
  .img_area {
    width: 40%;
    margin: 0 auto;
  }

  .profile_area {
    width: 100%;
  }

  .h3_profile_title_flex{
    gap: 0px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .h3_profile_title_flex p:first-child {
    width: 100%;
    font-size: 100%;
}

}

/* policy */

.policy_list {
  /* display: flex; */
  gap: 40px;
}

.policy_list h3 {
  color: #19b1c6;
  font-weight: bold;
  font-size: 200%;
}

.policy_list li {
  width: calc((100% - 0px)/1);
  margin-bottom: 40px;
}

@media screen and (max-width:1000px) {
  .policy_list {
    flex-wrap: wrap;
  }

  .policy_list li {
    width: 100%;
  }
}


/* activity */

.activity_list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.activity_list li {
  width: calc((100% - 80px)/3);
}

.activity_list li .activity_list_title {
  color: #19b1c6;
  font-weight: bold;
  font-size: 110%;
}

.activity_list li img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #777;
  margin-bottom: 20px;
}

@media screen and (max-width:1000px) {
  .activity_list{
    justify-content: center;
  }
  .activity_list li {
    width: 85%;
  }

  .activity_list li .activity_list_title {
    font-size: 130%;
  }
}

/* information */
.information_flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.information_flex .text_area h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.information_flex .text_area p {
  font-size: 90%;
}

.information_flex .text_area p+p {
  margin-top: 20px;
}

.information_flex .text_area {
  width: calc(70% - 40px);
}

.information_flex .qr_area {
  width: 30%;
}

.information_flex .mail {
  font-weight: bold;
}

.information_list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.information_list li {
  width: 100%;
}

.information_list li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  border: 1px solid #aaa;
  border-radius: 5px;
  color: #19b1c6;
}

.information_list li a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 2px solid #19b1c6;
  border-right: 2px solid #19b1c6;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.information_list li a i {
  font-size: 1.5rem;
  margin-right: 10px;
}

@media screen and (max-width:1000px) {

  .information_flex {
    margin-bottom: 40px;
  }

  .information_flex .text_area {
    width: 100%;
  }

  .information_flex .qr_area {
    width: 50%;
    margin: 0 auto;
  }
}

/* footer */

footer {
  background: #f4f5f6;
  color: #aaa;
  padding: 40px;
  text-align: right;
}