@charset "UTF-8";
/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

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

img,
embed,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

html {
  font-size: 62.5%;
}

img {
  vertical-align: top;
}

input {
  border: 0 none;
  border-radius: 0;
  outline: 0 none;
  vertical-align: middle;
}

input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent none repeat scroll 0 0;
  border-radius: 0;
  margin: 0;
  border: none;
  outline: medium none;
  text-overflow: ellipsis;
}

select::-ms-expand {
  display: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* ==========================================================================
   base
   ========================================================================== */
body {
  color: #304E4C;
  font-family: mamelon, "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  font-size: 1.2em;
  background: #FFF1E0;
}

a {
  color: #304E4C;
  text-decoration: none;
}
a:hover {
  color: #00CCBB;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: linear 0.5s;
  transition: linear 0.5s;
}

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

.sp {
  display: none;
}
@media screen and (max-width: 580px) {
  .sp {
    display: block;
  }
}

/* ---------
 header
 --------- */
.header {
  background: #fff;
}
.header.fix {
  background: transparent;
  position: fixed;
  top: 3%;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 580px) {
  .header {
    padding: 2% 0;
  }
  .header.fix {
    display: block;
    position: fixed;
  }
}
.header_box {
  width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 0 16px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .header_box {
    width: 96%;
    padding: 10px 0;
  }
}
@media screen and (max-width: 580px) {
  .header_box {
    padding: 0 8px;
    gap: 8px;
    justify-content: space-between;
  }
}
.header_box .logo {
  height: 48px;
}
.header_box .logo img {
  height: 100%;
}
.header_box .toggle {
  display: none;
}
@media screen and (max-width: 580px) {
  .header_box .toggle {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00A597;
    position: relative;
    cursor: pointer;
  }
  .header_box .toggle span {
    height: 1px;
    background: #fff;
    width: 60%;
    position: absolute;
    left: 20%;
    transition: linear 0.5s;
  }
  .header_box .toggle span:nth-last-of-type(1) {
    top: 40%;
  }
  .header_box .toggle span:nth-last-of-type(2) {
    top: 60%;
  }
  .header_box .toggle.on span {
    transition: linear 0.5s;
  }
  .header_box .toggle.on span:nth-last-of-type(1) {
    top: 50%;
  }
  .header_box .toggle.on span:nth-last-of-type(2) {
    top: 50%;
  }
}
.header_box .nav {
  display: flex;
  align-items: center;
  column-gap: 32px;
}
@media screen and (max-width: 580px) {
  .header_box .nav {
    display: none;
    position: absolute;
    width: 80vw;
    top: 100%;
    right: 5%;
    padding: 5%;
    border: 1px solid #00A597;
    background: #fff;
    border-radius: 16px;
    z-index: 10;
  }
}
.header_box .nav_link {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 32px;
  padding: 24px 16px;
  gap: 16px;
  font-size: 16px;
}
@media screen and (max-width: 840px) {
  .header_box .nav_link {
    font-size: 14px;
  }
}
@media screen and (max-width: 840px) {
  .header_box .nav_link {
    padding: 10px 12px;
    gap: 8px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 580px) {
  .header_box .nav_link {
    padding: 8px 12px;
    display: block;
    border-radius: 0;
  }
  .header_box .nav_link > li {
    margin-bottom: 3%;
  }
  .header_box .nav_link > li:last-of-type {
    margin-bottom: 0;
  }
  .header_box .nav_link > li a {
    display: block;
  }
}
.header_box .nav_button {
  display: flex;
  column-gap: 10px;
}
@media screen and (max-width: 580px) {
  .header_box .nav_button {
    display: block;
  }
}
.header_box .nav_button > li > a {
  border-radius: 20px;
  color: #fff;
}
.header_box .nav_button > li > a {
  font-size: 14px;
}
@media screen and (max-width: 840px) {
  .header_box .nav_button > li > a {
    font-size: 12px;
  }
}
.header_box .nav_button > li > a {
  display: block;
  padding: 10px 36px;
  box-shadow: 0px 4px 4px 0px rgba(48, 78, 76, 0.5);
}
@media screen and (max-width: 840px) {
  .header_box .nav_button > li > a {
    padding: 8px 16px;
    min-width: 80px;
  }
}
@media screen and (max-width: 580px) {
  .header_box .nav_button > li > a {
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 580px) {
  .header_box .nav_button > li.application {
    margin-bottom: 5%;
  }
}
.header_box .nav_button > li.application a {
  background: #FF7733;
}
.header_box .nav_button > li.contact a {
  background: #00A597;
}

/* ---------
 main
 --------- */
main {
  display: block;
}
main .contents {
  position: relative;
  font-size: 16px;
}
@media screen and (max-width: 840px) {
  main .contents {
    font-size: 14px;
  }
}
main .contents .inner {
  background: #fff;
  border-radius: 24px;
  padding: 24px 24px 40px;
  width: 800px;
}
@media screen and (max-width: 840px) {
  main .contents .inner {
    width: 90%;
  }
}
main .contents .inner {
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  main .contents .inner {
    width: 80%;
  }
}
@media screen and (max-width: 580px) {
  main .contents .inner {
    width: 80%;
    padding: 16px 16px 20px;
  }
}
main .contents .inner .ttl {
  font-size: 28px;
}
@media screen and (max-width: 840px) {
  main .contents .inner .ttl {
    font-size: 22px;
  }
}
main .contents .inner .ttl {
  text-align: center;
  margin-bottom: 34px;
}

/* ---------
 footer
 --------- */
.footer {
  border-top: 2px solid #304E4C;
}
.footer_img {
  background: #00CCBB url(../img/footer_image.png) repeat-x center bottom/auto 158px;
  height: 178px;
}
@media screen and (max-width: 580px) {
  .footer_img {
    background-size: auto 130px;
    height: 150px;
  }
}
.footer_box {
  padding: 16px 0 24px;
  background: #fff;
}
.footer_info {
  display: flex;
  justify-content: space-between;
  width: 800px;
}
@media screen and (max-width: 840px) {
  .footer_info {
    width: 90%;
  }
}
.footer_info {
  margin: 0 auto;
}
@media screen and (max-width: 580px) {
  .footer_info {
    display: block;
  }
}
.footer_nav {
  width: calc(100% - 250px);
}
@media screen and (max-width: 580px) {
  .footer_nav {
    width: auto;
  }
}
.footer_nav .logo {
  height: 60px;
}
@media screen and (max-width: 580px) {
  .footer_nav .logo {
    height: 40px;
  }
}
.footer_nav .logo img {
  height: 100%;
}
.footer_nav .nav {
  padding: 16px 16px 14px 16px;
}
@media screen and (max-width: 580px) {
  .footer_nav .nav {
    padding: 10px;
  }
}
.footer_nav .nav > ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 580px) {
  .footer_nav .nav > ul {
    gap: 10px;
  }
}
.footer_share {
  width: 250px;
}
@media screen and (max-width: 580px) {
  .footer_share {
    width: auto;
    margin-bottom: 5%;
  }
}
.footer_share .sns {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media screen and (max-width: 580px) {
  .footer_share .sns {
    justify-content: center;
    margin: 10px auto;
  }
}
.footer_share .sns .x a {
  display: block;
  padding: 4px 0;
}
.footer_share .sns .x a img {
  height: 32px;
}
@media screen and (max-width: 580px) {
  .footer_share .sns .x a img {
    height: 24px;
  }
}
.footer_share .sns .insta a {
  display: block;
}
.footer_share .sns .insta a img {
  height: 40px;
}
@media screen and (max-width: 580px) {
  .footer_share .sns .insta a img {
    height: 32px;
  }
}
.footer_share .supporter_ttl {
  font-size: 12px;
}
@media screen and (max-width: 580px) {
  .footer_share .supporter_ttl {
    font-size: 10px;
    text-align: center;
    margin-bottom: 1%;
  }
}
.footer_share .supporter_list {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
@media screen and (max-width: 580px) {
  .footer_share .supporter_list {
    justify-content: center;
    column-gap: 4%;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 580px) {
  .footer_share .supporter_list > li a {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 580px) {
  .footer_share .supporter_list .fukuin img {
    height: 24px;
    margin: 8px auto;
  }
}
.footer_share .supporter_list .lkmac img {
  width: 60px;
}
@media screen and (max-width: 580px) {
  .footer_share .supporter_list .lkmac img {
    width: 40px;
  }
}
.footer .copy {
  text-align: center;
  display: block;
}

.button {
  display: flex;
  align-items: center;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(48, 78, 76, 0.5);
}
@media screen and (max-width: 840px) {
  .button {
    width: 200px;
  }
}
@media screen and (max-width: 580px) {
  .button {
    width: 180px;
  }
}
.button:after {
  content: "";
  background: url(../img/icon_arrow.svg) no-repeat center center/contain;
  width: 12px;
  height: 24px;
  margin-right: 14px;
}
.button a {
  color: #fff;
  padding: 12px 0 12px 16px;
  text-align: center;
  width: calc(100% - 26px);
}
.button.accent {
  background: #FF7733;
}
.button.gray {
  background: #ccc;
}
.button.gray a {
  pointer-events: none;
}

.page .main {
  background: #00A597;
}
.page .main_ttl {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  padding: 56px 24px 64px;
  color: #fff;
  position: relative;
  line-height: 1.3;
}
@media screen and (max-width: 840px) {
  .page .main_ttl {
    padding: 6% 3% 7%;
    font-size: 32px;
    line-height: 1.1;
  }
}
.page .main_ttl span {
  font-size: 75%;
}
@media screen and (max-width: 840px) {
  .page .main_ttl span {
    font-size: 50%;
  }
}
.page .main_ttl:after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../img/page/ttl_img.svg) no-repeat center center/contain;
  height: 40px;
  width: 530px;
  bottom: 0;
}
@media screen and (max-width: 840px) {
  .page .main_ttl:after {
    width: 428px;
    height: 32px;
  }
}
@media screen and (max-width: 580px) {
  .page .main_ttl:after {
    width: 322px;
    height: 24px;
  }
}
.page .contents {
  background: #fff;
  border-radius: 24px;
  padding: 42px 60px;
  margin: 40px auto 62px;
  width: 800px;
}
@media screen and (max-width: 840px) {
  .page .contents {
    width: 90%;
  }
}
.page .contents {
  font-size: 16px;
}
@media screen and (max-width: 840px) {
  .page .contents {
    font-size: 14px;
  }
}
@media screen and (max-width: 840px) {
  .page .contents {
    padding: 6% 5%;
  }
}
.page .contents > .lead {
  margin-bottom: 32px;
}
@media screen and (max-width: 840px) {
  .page .contents > .lead {
    margin-bottom: 6%;
  }
}
.page .contents > .lead span {
  font-size: 14px;
}
@media screen and (max-width: 840px) {
  .page .contents > .lead span {
    font-size: 12px;
  }
}
.page .contents > .lead span {
  color: rgba(48, 78, 76, 0.8);
}
.page .contents h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
}
@media screen and (max-width: 840px) {
  .page .contents h3 {
    font-size: 18px;
  }
}
.page .contents h3 {
  position: relative;
  padding-top: 34px;
}
@media screen and (max-width: 840px) {
  .page .contents h3 {
    padding-top: 26px;
    margin-bottom: 3%;
  }
}
.page .contents h3:before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  background: url(../img/page/icon_green.png) no-repeat center center/contain;
  width: 35px;
  height: 30px;
}
@media screen and (max-width: 840px) {
  .page .contents h3:before {
    width: 24px;
    height: 28px;
  }
}
.page .contents h3 + .lead {
  margin: 24px auto 32px;
}
@media screen and (max-width: 840px) {
  .page .contents h3 + .lead {
    margin: 4% auto 8%;
  }
}
.page .contents h3.no-icon {
  position: static;
}
.page .contents h3.no-icon::before {
  content: none;
}
.page .contents h3.no-icon picture {
  display: block;
  margin-bottom: 62px;
}
@media screen and (max-width: 840px) {
  .page .contents h3.no-icon picture {
    width: 13.333333vw;
    margin: 0 auto 8%;
    min-width: 80px;
  }
}
.page .contents h4.line {
  font-size: 14px;
}
@media screen and (max-width: 840px) {
  .page .contents h4.line {
    font-size: 12px;
  }
}
.page .contents h4.line {
  margin-bottom: 8px;
}
@media screen and (max-width: 840px) {
  .page .contents h4.line {
    margin-bottom: 4px;
  }
}
.page .contents h4.line > span {
  background: linear-gradient(transparent 65%, rgba(0, 204, 187, 0.5) 35%);
  display: inline;
  font-weight: 300;
}
.page .contents h4.label {
  background: #00CCBB;
  min-width: 71px;
  min-height: 21px;
  color: #fff;
  text-align: center;
  padding: 3px 4px;
  display: inline-block;
}
.page .contents h4.label {
  font-size: 14px;
}
@media screen and (max-width: 840px) {
  .page .contents h4.label {
    font-size: 12px;
  }
}
@media screen and (max-width: 840px) {
  .page .contents h4.label {
    margin-bottom: 1%;
  }
}
.page .contents .list > li {
  margin-bottom: 16px;
}
@media screen and (max-width: 840px) {
  .page .contents .list > li {
    margin-bottom: 3.5%;
  }
}
.page .contents .list > li:last-of-type {
  margin-bottom: 0;
}
.page .contents .list.disc > li {
  display: flex;
}
.page .contents .list.disc > li:before {
  content: "・";
}
.page .contents .list_box .name {
  font-size: 16px;
}
@media screen and (max-width: 840px) {
  .page .contents .list_box .name {
    font-size: 14px;
  }
}
.page .contents .list_box .name {
  margin-bottom: 4px;
}
.page .contents .list_box .tag {
  font-size: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: baseline;
}
.page .contents .list_box .tag > li {
  display: flex;
  max-width: 180px;
  padding: 2px 10px;
  border-radius: 10px;
  background: rgba(0, 204, 187, 0.3);
}
.page .contents .list_box .tag > li:before {
  display: block;
  content: "# ";
}
.page .contents .list_box .tag > li.core {
  background: #FFF1E0;
}
.page .contents .table .sp_icon {
  display: none;
}
@media screen and (max-width: 580px) {
  .page .contents .table .sp_icon {
    display: block;
    text-align: right;
  }
}
@media screen and (max-width: 580px) {
  .page .contents .table_box {
    overflow-x: auto;
    display: block;
  }
}
.page .contents .table_ttl {
  border-bottom: 1px solid #00CCBB;
}
.page .contents .table_ttl th:last-of-type {
  border-right: none;
}
.page .contents .table_list {
  line-height: 1.3;
}
@media screen and (max-width: 580px) {
  .page .contents .table_list {
    width: 400px;
  }
}
.page .contents .table_notice {
  font-size: 12px;
  list-style-type: "※";
  padding-left: 1em;
  margin-top: 0.5em;
}
.page .contents .table tr:nth-of-type(even) {
  background: rgba(0, 165, 151, 0.05);
}
.page .contents .table th {
  font-weight: 300;
  vertical-align: baseline;
}
.page .contents .table th, .page .contents .table td {
  border-right: 1px solid #00CCBB;
  text-align: center;
  padding: 8px 4px;
}
.page .contents .table td:last-of-type {
  border-right: none;
}
.page .contents .table td .size {
  font-size: 12px;
}
.page .contents .text_box {
  margin-bottom: 80px;
}
@media screen and (max-width: 840px) {
  .page .contents .text_box {
    margin-bottom: 10%;
  }
}
.page .contents .text_box:last-of-type {
  margin-bottom: 0;
}
.page .contents .text_box {
  font-size: 14px;
}
@media screen and (max-width: 840px) {
  .page .contents .text_box {
    font-size: 12px;
  }
}
.page .contents .text_box .txt {
  margin-bottom: 32px;
}
@media screen and (max-width: 840px) {
  .page .contents .text_box .txt {
    margin-bottom: 4%;
  }
}
.page .contents .text_box .txt:last-of-type {
  margin-bottom: 0;
}
.page .contents .text_box strong {
  color: #00A597;
  font-weight: normal;
}
.page .contents .label_box {
  display: flex;
  column-gap: 18px;
  margin-bottom: 10px;
  align-items: baseline;
}
@media screen and (max-width: 840px) {
  .page .contents .label_box {
    display: block;
  }
  .page .contents .label_box dt {
    display: inline-block;
  }
}
.page .contents .label_box:last-child {
  margin-bottom: 0;
}
.page .contents .label_box dt {
  background: #00CCBB;
  min-width: 71px;
  min-height: 21px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 3px 4px;
}
@media screen and (max-width: 840px) {
  .page .contents .label_box dt {
    margin-bottom: 1%;
  }
}
.page .contents .label_box dd {
  font-size: 14px;
}
@media screen and (max-width: 840px) {
  .page .contents .label_box dd {
    font-size: 12px;
  }
}
.page .contents .label_box .notice {
  font-size: 80%;
}
.page .contents .column h3 {
  margin-bottom: 24px;
}
@media screen and (max-width: 840px) {
  .page .contents .column h3 {
    margin-bottom: 5%;
  }
}
.page .contents .column .img_right {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 840px) {
  .page .contents .column .img_right {
    display: block;
  }
}
.page .contents .column .img_left {
  display: flex;
}
@media screen and (max-width: 840px) {
  .page .contents .column .img_left {
    display: block;
  }
}
.page .contents .column .txt,
.page .contents .column .txt_ex {
  font-size: 14px;
}
@media screen and (max-width: 840px) {
  .page .contents .column .txt,
  .page .contents .column .txt_ex {
    font-size: 12px;
  }
}
.page .contents .column .txt .line, .page .contents .column .txt .label,
.page .contents .column .txt_ex .line,
.page .contents .column .txt_ex .label {
  margin-bottom: 8px;
}
@media screen and (max-width: 840px) {
  .page .contents .column .txt .line, .page .contents .column .txt .label,
  .page .contents .column .txt_ex .line,
  .page .contents .column .txt_ex .label {
    margin-bottom: 4px;
  }
}
.page .contents .column .img.bg {
  background: #FFF1E0;
  border-radius: 18px;
}
