@charset "utf-8";

/* ==== Modern Reset (practical) ==== */
@layer reset {

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

  :where(html) {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  :where(body) {
    margin: 0;
    min-height: 100dvh;
    line-height: 1.6;
  }

  :where(h1, h2, h3, h4, h5, h6) {
    margin: 0;
    line-height: 1.25;
    text-wrap: balance;
  }

  :where(p, li, figcaption) {
    text-wrap: pretty;
  }

  :where(ul, ol) {
    margin: 0;
    padding-left: 1.2em;
  }

  :where(ul[role="list"], ol[role="list"]) {
    list-style: none;
    padding: 0;
  }

  :where(img, svg, video, canvas) {
    display: block;
    max-width: 100%;
    height: auto;
  }

  :where(table) {
    border-collapse: collapse;
    border-spacing: 0;
  }

  :where(button, input, textarea, select) {
    font: inherit;
    color: inherit;
  }

  :where(a) {
    color: inherit;
    text-decoration-skip-ink: auto;
  }

  :where(:focus-visible) {
    outline: 2px solid #1f7a8c;
    outline-offset: 2px;
  }
}

/* 全体 */
html *,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 11px;
}

@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
th,
strong {
  font-weight: 700;
}

a {
  color: #f30;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ヘッダー */
.page-header {
  border-bottom: 1px solid #d8d8d8;
}

@media (min-width: 960px) {
  .header-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1040px;
  }

  .sitetitle {
    display: block;
    padding: 30px 0 0 0;
  }

  .navbtn {
    display: none;
  }

  .header-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
  }

  .header-nav li a {
    padding: 6px 20px 2px 20px;
    border-top: none;
    border-bottom: 4px solid transparent;
    background: none;
  }
}

/* ロゴ＆モバイルボタン */
.sitetitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .sitetitle {
    display: block;
    padding: 30px 0 0 0;
  }
}

.header-logo {
  margin: 0;
  padding-left: 15px;
  font-size: 0;
  line-height: 0;
}

.header-logo img {
  width: 130px;
}

@media (min-width: 768px) {
  .header-logo {
    padding: 0;
  }

  .header-logo img {
    width: 180px;
  }
}

/* ハンバーガー */
.navbtn {
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../images/nav-mobile-open.jpg);
  background-repeat: no-repeat;
  background-position: center center;
}

.navbtn.close {
  background-image: url(../images/nav-mobile-close.jpg);
}

@media (min-width: 768px) {
  .navbtn {
    display: none;
  }
}

/* ナビゲーション */
.header-nav {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav.collapse {
  display: none;
}

.header-nav li a {
  display: block;
  padding: 20px 30px;
  border-top: 1px solid #d8d8d8;
  background: #efefef;
  color: #000;
  text-decoration: none;
}

.header-nav li a:hover {
  background: #b8e5ea;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
  }

  .header-nav li a {
    padding: 6px 20px 2px 20px;
    border-top: none;
    border-bottom: 4px solid transparent;
    background: none;
  }

  .header-nav li a:hover {
    border-bottom: 4px solid #73cbd6;
    background: none;
  }
}

/* パンくず */
.breadcrumb {
  display: none;
}

@media (min-width: 768px) {
  .breadcrumb {
    display: block;
    background: #efefef;
  }

  .bc-container {
    margin: 0 auto;
    padding: 12px 20px;
    max-width: 1040px;
  }

  .bc-nav {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .bc-nav li {
    font-size: .75rem;
    color: #747474;
  }

  .bc-nav li::after {
    padding: 0 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
  }

  .bc-nav li:last-child::after {
    content: "";
  }

  .bc-nav li a {
    color: #747474;
  }

  .bc-nav li a:hover {
    opacity: .8;
  }
}

/* 下部共通 */
.page-bottom {
  background: url(../images/bottom-bg.svg);
}

.bottom-container {
  padding: 60px 4% 0 4%;
}

@media (min-width: 768px) {
  .bottom-container {
    margin: 0 auto;
    padding: 60px 20px 0 20px;
    max-width: 1040px;
  }
}

.banner {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.banner div {
  margin-bottom: 20px;
  text-align: center;
}

.banner a:hover {
  opacity: .8;
}

@media (min-width: 768px) {
  .banner {
    flex-direction: row;
  }

  .banner div {
    margin: 0 10px;
  }
}

.followus {
  margin: 0 0 15px 0;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.875rem;
  text-align: center;
}

.sns {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.sns div {
  margin: 0 7px;
}

.sns div a {
  display: block;
  width: 70px;
  height: 70px;
  background: #73cbd6;
  border-radius: 50%;
  font-size: 30px;
  line-height: 70px;
  text-align: center;
  color: #ffffff;
}

.sns div a:hover {
  opacity: .8;
}

.gotop {
  text-align: center;
}

.gotop a {
  display: inline-block;
  padding: 0.5rem 4rem;
  background: #73cbd6;
  border-radius: 70px 70px 0 0;
  font-size: 2.5rem;
  text-align: center;
  color: #ffffff;
}

.gotop a:hover {
  opacity: .8;
}

.post-contents h1 {
  text-align: center;
}

/* フッター */
.page-footer {
  background: #c48a8a;
}

.footer-container {
  padding: 60px 4%;
}

.pageTop {
  position: fixed;
  right: 2.8em;
  bottom: 1em;
  z-index: 1;
}

.pageTop a {
  background: #c48a8f;
  color: #fff;
  text-decoration: none;
  line-height: 4em;
  width: 6.5em;
  height: 4em;
  margin: 0;
  display: block;
  transition: all .5s ease;
  border-radius: 5%;
  text-align: center;
}

.pageTop a:hover {
  opacity: .6;
}

@media (min-width: 768px) {
  .footer-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px 20px;
  }
}

.footer-logo {
  margin: 10px 20px 30px;
  text-align: center;
}

.footer-logo img {
  width: 160px;
}

.footer-nav1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 15px 0;
  padding: 0;
  list-style: none;
  justify-content: space-evenly;
}

.footer-nav1 li {
  margin: 0 0 2rem 0;
}

.footer-nav1 li a {
  color: #ffffff;
  text-decoration: none;
  font-size: larger;
}

@media (min-width: 768px) {
  .footer-nav1 {
    flex-direction: row;
    justify-content: center;
  }

  .footer-nav1 li {
    margin: 0 1rem;
  }
}

.footer-nav2 {
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

.footer-nav2 li {
  margin: 0 .75rem 3px .75rem;
  font-size: .75rem;
}

.footer-nav2 li a {
  color: #ffffff;
  text-decoration: none;
}

.copyright {
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
}

/* ホーム */
.hero-container {
  position: relative;
}

.home .page-main {
  background-color: #ffffff;
}

.home .main-container {
  padding: 60px 4%;
}

@media (min-width: 768px) {
  .home .main-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px 20px;
  }
}

.news {
  background: #efefef;
}

.news-container {
  padding: 0px 4%;
}

@media (min-width: 968px) {
  .news-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 20px;
  }
}

.hero-logo {
  width: 260px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-130px, -53px);
}

@media (min-width: 768px) {
  .hero-logo {
    width: 400px;
    transform: translate(-200px, -82px);
  }
}

.home-lead {
  max-width: 600px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.home-lead p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 2;
}

.home .main-container h2 {
  display: grid;
  place-items: center;
  margin: 0 auto 30px auto;
  width: 130px;
  height: 130px;
  background: url(../images/side-titleshape.svg) no-repeat;
  background-size: 130px 130px;
  color: #ffffff;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 20px;
}

/* カード */
.home-latest {
  margin: 0 0 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(100px, auto);
  column-gap: 10px;
  row-gap: 30px;
}

@media (min-width: 768px) {
  .home-latest {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
  }
}

.latest-item {
  border: 1px solid #d8d8d8;
  background: #fff;
}

@media (min-width: 768px) {
  .latest-item {
    border: none;
    background: none;
  }
}

.latest-image img {
  margin: 0 0 10px 0;
}

.latest-image img:hover {
  opacity: .9;
}

.latest-text {
  margin-bottom: 10px;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .latest-text {
    padding: 0;
  }
}

.latest-text h3 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  line-height: 1.5;
}

.latest-text h3 a {
  color: #000000;
  text-decoration: none;
}

.latest-text h3 a:hover {
  opacity: .5;
}

/* タグ/場所 */
.home-tag {
  margin-bottom: 1rem;
}

.home-tag span {
  margin: 0 3px 3px 0;
  padding: 2px 10px;
  border: 1px solid #73cbd6;
  border-radius: 100px;
  font-size: .75rem;
}

.home-tag span a {
  color: #73cbd6;
  text-decoration: none;
}

.home-info {
  display: flex;
  font-size: 1rem;
}

.home-info span::before {
  padding-right: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #73cbd6;
  content: "\f3c5";
}

/* メディアオブジェクト */
.home-popular {
  margin: 0 0 60px 0;
  border-top: 1px solid #d8d8d8;
}

.home-popular a {
  display: block;
  color: #000000;
  text-decoration: none;
}

.home-popular a:hover {
  opacity: .5;
}

.popular-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #d8d8d8;
}

.popular-photo {
  flex: 0 0 30%;
  margin-right: 15px;
}

.ranking {
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 5px;
  left: 5px;
  background: url(../images/ranking-bg.svg);
  background-size: 35px 35px;
  border-radius: 50%;
  font-family: 'Croissant One', cursive;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  color: #000;
}

@media (min-width: 768px) {
  .ranking {
    width: 70px;
    height: 70px;
    top: 10px;
    left: 10px;
    background-size: 70px 70px;
    font-size: 30px;
    line-height: 70px;
  }
}

.popular-text {
  flex: 1 1 auto;
}

.popular-text h3 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  line-height: 1.5;
}

.popular-text p {
  margin: 0 0 10px 0;
  display: none;
}

@media (min-width: 768px) {
  .popular-text h3 {
    font-size: 1.25rem;
  }

  .popular-text p {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

/* News */
.news-container h2 {
  margin: 0 0 30px 0;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .news-container h2 {
    max-width: 700px;
    margin: 0 auto 30px auto;
  }
}

.home-news {
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .home-news {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
  }
}

.home-news dl {
  display: flex;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #d8d8d8;
}

.home-news dl:last-child {
  border-bottom: 1px solid #d8d8d8;
}

.home-news dt {
  margin: 0 20px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.home-news dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.home-news dd a {
  color: #73cbd6;
  text-decoration: none;
}

.home-news dd a:hover {
  opacity: .5;
}

/* 記事ページ共通 */
.post .main-container {
  padding: 80px 4% 0 4%;
  background: url(../images/ashiatologo.jpg) repeat-x;
  background-position: 0 10px;
}

@media (min-width: 768px) {
  .post .main-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 80px 20px 0 20px;
  }
}

.post-header {
  margin-bottom: 60px;
}

.post-header h1 {
  margin: 0 0 20px 0;
  font-size: 1.875rem;
  line-height: 1.5;
}

.post-tag {
  margin-bottom: 5px;
  font-size: .75rem;
  line-height: 2;
}

.post-tag span {
  margin: 0 3px 0 0;
  padding: 2px 10px;
  background: #73cbd6;
  border-radius: 100px;
}

.post-tag span a {
  color: #fff;
  text-decoration: none;
}

.post-info {
  margin-bottom: 3px;
  padding-bottom: 15px;
  font-size: .75rem;
  text-align: right;
  background: url(../images/ashiatologo.jpg) bottom repeat-x;
}

.post-info span {
  margin: 0 10px 0 0;
}

.post-info i {
  padding-right: 5px;
  color: #73cbd6;
}

.post-contents {
  margin: 0 0 60px 0;
}

@media (min-width: 768px) {
  .post-contents {
    margin: 0 auto 60px auto;
  }
}

.post-contents>*:first-child {
  margin-top: 0;
}

.post-contents h2 {
  margin: 60px 0 30px 0;
  padding: 1rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.25rem;
}

.post-contents p {
  margin: 30px 0;
  line-height: 1.9;
  text-align: justify;
}

.post-contents mark {
  background: linear-gradient(transparent 50%, #ffff7c 50%);
}

.list {
  margin: 30px 0;
}

.list li {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.info-box {
  margin: 30px 0;
  padding: 2rem;
  border: 4px solid #b8e5ea;
}

.info-box p {
  margin: 0;
}

/* 画像キャプション */
.photo-caption {
  margin: 30px 0;
}

.photo-caption figcaption {
  margin-top: 5px;
  font-size: .75rem;
  color: #747474;
}

/* float */
.float-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: space-around;
}

.float-right {
  float: right;
  margin: 0 0 1rem 1rem;
  width: 40%;
}

.float-box p {
  margin: 0;
}

/* アコーディオン */
.accordion {
  max-width: 920px;
  margin: 0 auto;
  padding: 8px;
  display: grid;
  gap: 45px;
}

details.qa {
  border: 1px solid #e6e6f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  overflow: hidden;
}

details.qa>summary {
  list-style: none;
  display: grid;
  grid-template-columns: 36px 1fr 16px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-weight: 700;
}

details.qa>summary::-webkit-details-marker {
  display: none;
}

details.qa>summary .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

details.qa>summary .q {
  line-height: 1.6;
  word-break: break-word;
}

details.qa>summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #73727a;
  border-bottom: 2px solid #73727a;
  transform: rotate(45deg);
  justify-self: end;
  transition: transform .25s ease;
}

details.qa[open]>summary::after {
  transform: rotate(-135deg);
}

details.qa>summary:focus-visible {
  outline: 3px solid #cfd5ff;
  outline-offset: 2px;
}

details.qa .answer {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 0 16px 14px 16px;
  align-items: start;
  border-top: 1px solid #f1f1f6;
  background: #e3d2c2;
  color: #333;
  transform: translateY(-8px);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: transform .35s ease, opacity .35s ease, max-height .35s ease, padding-top .2s ease;
}

details.qa[open] .answer {
  padding-top: 10px;
  transform: none;
  opacity: 1;
  max-height: 100vh;
}

details.qa .answer .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 4px;
}

details.qa .answer p {
  margin: 0;
  line-height: 1.9;
}

/* 初項の軽い強調 */
#accordion details.qa:first-of-type {
  border-color: #dfe3ff;
  box-shadow: 0 4px 16px rgba(70, 70, 255, .08);
}

/* 小画面 */
@media (max-width: 640px) {
  details.qa>summary {
    padding: 12px;
    grid-template-columns: 32px 1fr 14px;
  }

  details.qa .answer {
    padding: 0 12px 12px 12px;
    grid-template-columns: 32px 1fr;
  }
}

/* ダークモード */
@media (prefers-color-scheme: dark) {
  details.qa {
    background: #1e1f25;
    border-color: #2a2b33;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  }

  details.qa>summary {
    background: #604e22;
    color: #fff;
  }

  details.qa .answer {
    background: #1e1f25;
    color: #e8e8ee;
    border-top-color: #2a2b33;
  }

  details.qa>summary::after {
    border-color: #9aa0ff;
  }
}

/* 記事フッター */
.post-footer {
  margin: 0 0 60px 0;
}

@media (min-width: 768px) {
  .post-footer {
    max-width: 600px;
    margin: 0 auto 60px auto;
  }
}

.post-footer h2 {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  background: #68b37e;
  border-radius: 10px 10px 0 0;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.25rem;
  color: #fff;
}

/* プロフィール */
.profile {
  display: flex;
  padding: 1rem;
  border: 1px solid #000;
  background-color: rgb(217, 241, 217);
}

.pr-photo {
  flex: 0 0 100px;
  margin-right: 1rem;
}

.pr-photo img {
  border-radius: 50%;
}

.pr-text {
  flex: 1 1 auto;
}

.pr-text p {
  margin: 0;
  line-height: 1.9;
}

/* sidebar-post 記事 */
.sidebar-post .main-container {
  padding: 80px 4% 0 4%;
  background: url(../images/ashiatologo.jpg) repeat-x;
  background-position: 0 10px;
}

@media (min-width: 768px) {
  .sidebar-post .main-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 80px 20px 0 20px;
  }
}

@media (min-width: 768px) {
  .columns {
    display: flex;
    grid-template-columns: 1fr 290px;
    grid-gap: 40px;
  }
}

/* サイドカード */
.side-popular {
  margin-bottom: 60px;
  border: 1px solid #000;
}

.side-popular a {
  display: block;
  position: relative;
  color: #000;
  text-decoration: none;
}

.side-popular a:hover {
  opacity: .5;
}

.side-popular h2 {
  display: grid;
  place-items: center;
  position: absolute;
  top: 5px;
  left: 5px;
  margin: 0;
  width: 80px;
  height: 80px;
  background: url(../images/side-titleshape.svg) no-repeat;
  color: #ffffff;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: .75rem;
}

.side-popular p {
  margin: 0;
  padding: 1rem;
  font-size: .875rem;
  line-height: 1.5;
}

/* サイド最新 */
.side-latest {
  margin-bottom: 60px;
}

.side-latest h2 {
  margin: 0 0 10px 0;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.25rem;
}

.side-latest ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-latest li {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 10px;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 1rem;
}

.side-latest img {
  border-radius: 50%;
}

.side-latest p {
  margin: 0;
  font-size: .75rem;
  line-height: 1.5;
}

.side-latest li a {
  color: #000;
  text-decoration: none;
}

.side-latest li a:hover {
  opacity: .5;
}

/* サイド複合 */
.side-book {
  margin-bottom: 60px;
}

.side-book h2 {
  margin: 0 0 20px 0;
  padding: 5px;
  text-align: center;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.25rem;
  background: #5ac4ee;
  color: #fff;
}

.book-info {
  display: flex;
  grid-template-columns: 80px 1fr;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}

.book-image {
  grid-row: 1/3;
}

.book-text {
  font-size: .875rem;
  line-height: 1.5;
  text-align: center;
}

.book-text p {
  margin: 0;
}

.buy button {
  padding: .5rem 3rem;
  border-radius: 50px;
  border: none;
  background: #4c95e9;
  color: #fff;
}

.buy button:hover {
  opacity: .5;
}

/* フォーム */
.apply .campaign-container {
  margin: 0 auto;
  padding-block: clamp(56px, 12vw, 96px);
  padding-inline: 4%;
  max-width: 1040px;
  background-image:
    url(../images/nikukyukurove2.png),
    url(../images/nikukyukurove2.png);
  background-repeat: no-repeat, no-repeat;
  background-size: clamp(72px, 18vw, 140px) auto, clamp(72px, 18vw, 140px) auto;
  background-position: left 12px top 8px, right 12px top 8px;
  background-color: #b8e5ea;
  border: 1px solid #000;
  border-top: 1px solid #000;
}

@media (max-width: 380px) {
  .apply .campaign-container {
    background-image: url(../images/nikukyukurove2.png), none;
    background-size: clamp(64px, 22vw, 90px) auto;
    background-position: center top 6px;
    padding-block: 72px;
    background-repeat: no-repeat;
  }
}

.campaign-container {
  border: 1px solid #000;
  background-color: #b8e5ea;
  border-top: 1px solid #000;
}

@media (min-width: 768px) {
  .apply .campaign-container {
    padding: 60px 20px;
  }
}

.apply .form-container {
  margin: 0 auto;
  padding: 0 4% 30px 4%;
  max-width: 640px;
}

@media (min-width: 768px) {
  .apply .form-container {
    padding: 0 20px 30px 20px;
  }
}

.apply-title {
  margin: 0 0 60px 0;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.5;
}

.apply-title span {
  font-size: 1.875rem;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
}

.apply-lead {
  margin: 0;
  line-height: 1.9;
}

input,
textarea,
label {
  font-size: 16px;
}

.form p {
  margin: 0 0 30px 0;
  line-height: 1.9;
}

.required {
  margin-left: 10px;
  font-size: .875rem;
  color: #73cbd6;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #747474;
}

select {
  -webkit-appearance: none;
  border: 1px solid #747474;
  padding: 10px;
  background: url(../images/caret-down.jpg) no-repeat;
  background-position: right 6px center;
  background-size: 12px 12px;
  font-size: 12px;
  width: 100%;
}

textarea {
  width: 100%;
  height: 6rem;
  padding: 10px;
  border: 1px solid #747474;
  line-height: 1.5;
}

input[type="checkbox"] {
  margin-right: 10px;
}

.form-button {
  margin-bottom: 0;
  text-align: center;
}

input[type="submit"] {
  padding: 20px 30px;
  background-color: #45a8b9;
  border: none;
  border-radius: 40px;
  color: #fff;
}

input[type="submit"]:hover {
  opacity: .5;
}

/* その他 */
ul ul {
  display: none;
  padding: 0;
}

li li:first-child {
  border-top: 1px solid #fff;
  margin: 20px 0 0 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

#content1 {
  margin: 6em auto;
}

.menu_box {
  width: 380px;
}

.apply-title.has-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(6px, 2vw, 12px);
  justify-content: center;
  text-align: center;
}

.apply-title .title-icon {
  width: clamp(28px, 10vw, 64px);
  height: auto;
  flex: 0 0 auto;
}

.apply-title {
  font-size: clamp(14px, 3.8vw, 20px);
}

.apply-title span {
  font-size: clamp(18px, 5.2vw, 30px);
}