@charset "utf-8";

* {
  box-sizing: border-box;
}
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  color: #111;
  scroll-behavior: smooth;
}
h1,h2,h3,h4,h5 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
}
body {
  font-size: 1.6em;
}
main {
  line-height: 1.6;
}
img {
  max-width: 100%;
  vertical-align: top;
}
a {
  text-decoration: none;
  color: #111;
  transition: all 0.4s;
}
a:hover {
  opacity: 0.5;
}
li {
  list-style-type: none;
}

/*==== 共通設定 ====*/
.content {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1030px) {
  .content {
    padding: 0 15px;
  }
}

/*==== 見出し ====*/
h2 {
  font-family: "poiret-one", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  color: #009fe8;
}
h2 span {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  color: #717071;
}
main h2 {
  margin-bottom: 40px;
}
main h2 span {
  padding-left: 10px;
}
.subheading {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  main h2 {
    display: flex;
    flex-direction: column;
  }
  main h2 span {
    padding-top: 8px;
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  main h2 {
    margin-bottom: 30px;
  }
}

/*==== リスト ====*/
main ul li {
  padding-top: 0.5rem;
  padding-left: 1em;
  text-indent: -1em;
}
main ul li::before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  background: #009fe8;
  border-radius: 50%;
  margin: 0.1em 0.4em 0.1em 0.1em;
}

main ol {
  counter-reset: num;
}
main ol li {
  position: relative;
  margin-top: 1rem;
  padding-left: 2em;
}
main ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background: #009fe8;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  text-align: center;
  counter-increment: num;
  content: counter(num);
}

/*==== テキスト ====*/
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-bold {
  font-weight: bold;
}

/*==== flex ====*/
.flex {
  display: flex;
  align-items: flex-start;
}
.inline-flex {
  display: inline-flex;
}
.flex-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

/*==== ボタン ====*/
.btn {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
}
.btn a {
  position: relative;
  display: inline-block;
  padding: 13px 42px 13px 13px;
  background: #fff;
  color: #009fe8;
  border: 2px solid #009fe8;
  border-radius: 10px;
  line-height: 1;
}
.btn a::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 10px;
  width: 20px;
  height: 8px;
  background: url(../img/common/arrow01.svg) no-repeat;
  transform: translateY(-48%);
}
.btn a:hover {
  background: #009fe8;
  color: #fff;
  border: 2px solid #fff;
  opacity: 1;
}
.btn a:hover::after {
  background: url(../img/common/arrow02.svg) no-repeat;
}

.btn.line a {
  color: #03c755;
  border: 2px solid #03c755;
}
.btn.line a::after {
  background: url(../img/common/arrow03.svg) no-repeat;
}
.btn.line a:hover {
  background: #03c755;
  color: #fff;
}
.btn.line a:hover::after {
  background: url(../img/common/arrow02.svg) no-repeat;
}

/*==== 余白 ====*/
.mt-0 {margin-top: 0 !important;}
.mt-f {margin-top: calc(20px / 2) !important;}
.mt-1 {margin-top: 20px !important;}
.mt-2 {margin-top: calc(20px * 2) !important;}
.mt-3 {margin-top: calc(20px * 3) !important;}

.mr-0 {margin-right: 0 !important;}
.mr-f {margin-right: calc(20px / 2) !important;}
.mr-1 {margin-right: 20px !important;}
.mr-2 {margin-right: calc(20px * 2) !important;}
.mr-3 {margin-right: calc(20px * 3) !important;}

.mb-0 {margin-bottom: 0 !important;}
.mb-f {margin-bottom: calc(20px / 2) !important;}
.mb-1 {margin-bottom: 20px !important;}
.mb-2 {margin-bottom: calc(20px * 2) !important;}
.mb-3 {margin-bottom: calc(20px * 3) !important;}

.ml-0 {margin-left: 0 !important;}
.ml-f {margin-left: calc(20px / 2) !important;}
.ml-1 {margin-left: 20px !important;}
.ml-2 {margin-left: calc(20px * 2) !important;}
.ml-3 {margin-left: calc(20px * 3) !important;}

.pt-0 {padding-top: 0 !important;}
.pt-f {padding-top: calc(20px / 2) !important;}
.pt-1 {padding-top: 20px !important;}
.pt-2 {padding-top: calc(20px * 2) !important;}
.pt-3 {padding-top: calc(20px * 3) !important;}

.pr-0 {padding-right: 0 !important;}
.pr-f {padding-right: calc(20px / 2) !important;}
.pr-1 {padding-right: 20px !important;}
.pr-2 {padding-right: calc(20px * 2) !important;}
.pr-3 {padding-right: calc(20px * 3) !important;}

.pb-0 {padding-bottom: 0 !important;}
.pb-f {padding-bottom: calc(20px / 2) !important;}
.pb-1 {padding-bottom: 20px !important;}
.pb-2 {padding-bottom: calc(20px * 2) !important;}
.pb-3 {padding-bottom: calc(20px * 3) !important;}

.pl-0 {padding-left: 0 !important;}
.pl-f {padding-left: calc(20px / 2) !important;}
.pl-1 {padding-left: 20px !important;}
.pl-2 {padding-left: calc(20px * 2) !important;}
.pl-3 {padding-left: calc(20px * 3) !important;}

/*==== header ====*/
.toggle-navi,
.header-info-sp {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  font-size: 1.4rem;
}
.header-inner + div {
  display: none;
}
.header-inner h1 img {
  height: 60px;
}
@media screen and (min-width: 1200px) {
  .header-inner {
    font-size: 1.5rem;
  }
}

.header-info .address {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 15px;
  color: #595757;
}
.header-info .address p a img {
  height: 20px;
}

.header-info nav ul li:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid #595757;
}
.header-info nav ul li:not(:first-child) {
  padding-left: 10px;
}
.header-info nav li {
  position: relative;
}
.header-info nav li a {
  color: #595757;
}
.header-info nav li .menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.25s cubic-bezier(.16,1,.3,1), opacity 0.25s ease;
}
.header-info nav li:hover .menu {
  display: block;
}
.header-info nav li .menu li {
  padding: 10px 20px;
  border: none;
  white-space: nowrap;
}
.header-info nav li .menu li:first-child {
  padding-top: 20px;
}
.header-info nav li .menu li:last-child {
  padding-bottom: 20px;
}

/*==== ハンバーガーメニュー ====*/
@media screen and (max-width: 960px) {
  .header-inner {
    height: 75px;
  }
  .header-inner + div {
    display: block;
    text-align: center;
  }
  .header-inner + div p:first-child {
    padding-bottom: 10px;
  }
  .header-inner + div p:last-child {
    padding-bottom: 10px;
  }
  .header-inner h1 img {
    height: 55px;
  }
  .header-info {
    display: none;
  }

  .toggle-navi {
    display: block;
    position: fixed;
    top: 15px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #53c59e;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
  }
  .toggle-navi span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s;
  }
  .toggle-navi span:nth-of-type(1) {
    left: 50%;
    top: 30%;
    transform: translate(-50%, -30%);
  }
  .toggle-navi span:nth-of-type(2) {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .toggle-navi span:nth-of-type(3) {
    left: 50%;
    top: 70%;
    transform: translate(-50%, -70%);
  }

  .toggle-navi.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  .toggle-navi.active span:nth-of-type(2) {
    opacity: 0;
  }
  .toggle-navi.active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .header-info-sp {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
  }
  .header-info-sp.active {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    background-color: #e5f5fd;
  }

  .accordion {
    margin-top: 75px;
    padding: 0 20px;
    background-color: #fff;
    border-top: solid 4px #53c59e;
    border-bottom: solid 4px #53c59e;
  }
  .accordion li:not(:last-child) {
    border-bottom: solid 1px #dcdcdc;
  }
  .accordion li a,
  .accordion li button {
    position: relative;
    display: block;
    padding: 20px 15px;
    font-size: 2rem;
    color: #53c59e;
    line-height: 1;
  }
  .accordion li a::after,
  .accordion li button::after {
    font-family: 'Material Icons';
    content: "\e5cc";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    font-weight: 600;
    color: #53c59e;
    transition: all 0.3s;
  }
  .accordion li button::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .accordion li.open button::after {
    transform: translateY(-50%) rotate(270deg);
  }
  .a-title {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    cursor: pointer;
  }
  .a-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .a-content li a {
    padding: 20px 15px 20px 25px;
    font-size: 1.8rem;
    color: #3A8A6F;
  }
  .a-content li a::after {
    right: auto;
    left: 0;
    font-size: 23px;
    color: #3A8A6F;
  }

  .header-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 10px 10px 20px;
    background-color: #53c59e;
    color: #fff;
    font-size: 2rem;
    border-radius: 10px;
  }
  .header-btn:last-child {
    background-color: #03c755;
  }
  .header-btn img {
    height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .header-inner {
    padding: 15px;
    height: 75px;
  }
  .header-inner h1 img {
    height: 40px;
  }
  .toggle-navi {
    top: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
  }
  .header-inner + div p:first-child {
    font-size: 1.5rem;
  }
}

/*==== footer ====*/
footer {
  background-color: #e5f5fd;
}
footer p {
  color: #595757;
}
footer p a {
  color: #009fe8;
}
footer .flex {
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}
footer .flex h2 {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: -10px;
}
footer .flex h2 span {
  margin-right: 5px;
  padding-left: 0;
  width: 65px;
  height: 65px;
  line-height: 65px;
  background-color: #53c59e;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 50%;
  white-space: nowrap;
}
footer #information,
footer #access {
  display: flex;
  flex-direction: column;
  width: 48%;
}
@media screen and (max-width: 1080px) {
  footer #information,
  footer #access {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  footer .flex {
    display: block;
  }
  footer #information,
  footer #access {
    width: 100%;
  }
  footer #information {
    margin-bottom: 20px;
  }
}
footer #information div,
footer #access div {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 1.5rem;
}
@media screen and (max-width: 480px) {
  footer #information div,
  footer #access div {
    padding: 15px;
  }
}
footer #information div p:not(:last-child) {
  padding-bottom: 20px;
  line-height: 1.2;
}
footer #information div p:first-child img,
footer #access div img {
  width: 100%;
}
footer #access div p {
  position: absolute;
  right: 10px;
  padding: 8px 16px;
  background-color: #53c59e;
  border-radius: 10px;
}
footer #access div p a {
  display: flex;
  align-items: center;
  margin-top: -2px;
  color: #fff;
  font-size: 1.8rem;
}
footer #access div p a span {
  padding-left: 5px;
  font-size: 2rem;
}

footer ul {
  display: grid;
  gap: 40px;
  justify-content: center;
  grid-auto-flow: column;
  padding: 25px;
  background-color: #fff;
}
footer ul li a {
  font-size: 1.4rem;
}
@media screen and (min-width: 1200px) {
  footer ul li a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 960px) {
  footer ul {
    gap: 30px;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 480px) {
  footer ul {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
}