@charset "utf-8";
/*======================================================================
  variable
======================================================================*/
:root {
  --color-white: #FFF;
  --color-primary: #FFEFC7;
  --color-secondary: #4AB9E7;
  --color-tertiary: #FFF8E5;
  --color-text: #004999;
  --color-gray: #F7F7F7;
  --color-black: #454545;
}

/*======================================================================
  Reset CSS for HTML5
======================================================================*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, main, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
ul {
    list-style: none;
}
a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
}
img {
    line-height: 1;
    vertical-align: bottom;
}

/*======================================================================
  FORMAT
======================================================================*/
.inner {
    max-width: 76.8rem;
    margin-inline: auto;
    padding-inline: 2.4rem;
}

h3 a, h4 a {
  display: inline-block;
}

/*======================================================================
  BASIC
======================================================================*/
html {
	font-size: 10px;
  scroll-behavior: smooth;
}
html,body {
    height: 100%;
}
body {
    line-height: 1.5;
    font-family: "Yu Gothic" , "Yu Gothic UI" , "Segoe UI" , "游ゴシック" , "Meiryo" , "Meiryo UI" , "メイリオ" , "Hiragino Sans" , "Sanfrancisco" , "Hiragino Kaku" , "Gothic ProN" , "Helvetica Neue" , "Noto Sans CJK JP" , "Roboto" , sans-serif;
    font-size: 1.6rem;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    background: var(--color-gray);
}

p { line-height: 1.5; }

a {
  color: var(--color-text);
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color-secondary);
}

* {box-sizing: border-box;}

.img {
    display: block;
    width: 100%;
    height: auto;
}

a img {
  transition: .2s;
}

.fit {
  position: relative;
  display: block;
  overflow: hidden;
}
.fit img {
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  margin: auto;
  width: 100%;
  height: auto;
}
a.fit img:hover {
  transform: scale(1.1);
}

/*======================================================================
  component
======================================================================*/
.container {
  padding-block: 4rem;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.head-24 {
  font-weight: bold;
  font-size: 2.4rem;
}

.head-20 {
  font-weight: bold;
  font-size: 2rem;
}

.head-18 {
  font-weight: bold;
  font-size: 1.8rem;
}

.date {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  color: var(--color-secondary);
  font-weight: bold;
}

.more {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.more_btn {
  position: relative;
  padding: 1.6rem 8rem 1.6rem 2.4rem;
  border: 1px dashed var(--color-primary);
  font-weight: bold;
  color: var(--color-white);
  background: var(--color-text);
}
.more_btn::before, .more_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.1rem;
  transition: .2s;
}
.more_btn::before {
  background: url(images/icon_arrow.svg) no-repeat center;
  background-size: contain;
  opacity: 1;
}
.more_btn::after {
  background: url(images/icon_arrow-hov.svg) no-repeat center;
  background-size: contain;
  opacity: 0;
}
.more_btn:hover {
  color: var(--color-text);
  border: 1px dashed var(--color-text);
  background: var(--color-white);
}
.more_btn:hover::before {
  opacity: 0;
}
.more_btn:hover::after {
  opacity: 1;
}

/*======================================================================
  header
======================================================================*/
.header_head {
  padding-block: 1.6rem;
  border-radius: 0 0 2.4rem 2.4rem;
  background: var(--color-white);
}

.header_head_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
}

.header_logo:hover {
  opacity: .5;
}

/*ハンバーガーボタン*/
.el_hamburger {
  position: relative;
  z-index: 10000;
  transition: .2s;
  padding-top: 3rem;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}
.el_hamburger::before, .el_hamburger::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 5.2rem;
  height: 2.4rem;
  background-size: contain;
  transition: .2s;
}
.el_hamburger::before {
  background: url(images/icon_menu.svg) no-repeat center;
  opacity: 1;
}
.el_hamburger::after {
  background: url(images/icon_menu-hov.svg) no-repeat center;
  opacity: 0;
}
.el_hamburger:hover {
  color: var(--color-secondary);
}
.el_hamburger:hover::before {
  opacity: 0;
}
.el_hamburger:hover::after {
  opacity: 1;
}

/*ナビゲーション*/
.uq_spNavi {
  display: none;
}
.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 9999;
}
.uq_spNavi_screen {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--color-gray);
  z-index: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: auto;
}
.gnav {
  padding-top: 10rem;
  text-align: center;
}
.gnav li {
  padding: 0 2rem 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px dashed var(--color-text);
}
.gnav li > a {
  color: var(--color-text);
  font-weight: bold;
  text-decoration: none;
}
.gnav li > a:hover {
  color: var(--color-secondary);
}
.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.header {
  background: url(images/mv_wave.svg) no-repeat center bottom 7.2rem;
  background-size: 100% 15rem;
}

.header_mv_content {
  position: relative;
  aspect-ratio: 720 /395;
  background: url(images/mv.jpg) no-repeat center;
  background-size: cover;
}

.header_mv_bottom {
  position: absolute;
  left: 0;
  bottom: -1px;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-block: 5.8rem 1.6rem;
  background: url(images/mv_circle.svg) no-repeat center bottom;
  background-size: contain;
}

.header_mv_title {
  display: flex;
  align-items: center;
  max-width: 32rem;
  min-height: 12.6rem;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}

.breadcrumb {
  margin: 0 auto;
  padding-block: 2.4rem;
  background: var(--color-primary);
}

.breadcrumb ul li {
  padding-right: 5px;
  display: inline-block;
}

.breadcrumb ul li a span {
  font-weight: bold;
}

/*======================================================================
  footer
======================================================================*/
.footer {
  position: relative;
  margin-top: 3.6rem;
  background: var(--color-text);
}
.footer::before {
  content: '';
  position: absolute;
  top: -3.5rem;
  left: 0;
  width: 100%;
  height: 3.6rem;
  background: url(images/footer_wave.svg) no-repeat center;
  background-size: 100% 3.6rem;
}

.footer_content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer_totop {
  display: flex;
  justify-content: flex-end;
}

.footer_totop a {
  display: flex;
  justify-content: center;
  min-width: 10.7rem;
  height: 6.8rem;
  padding: .8rem;
  font-size: 1.8rem;
  font-weight: bold;
  background: url(images/totop.svg) no-repeat center;
  background-size: contain;
}

.footer_copy {
  display: flex;
  justify-content: center;
  width: 100%;
  color: var(--color-white);
}

/*======================================================================
  recommend
======================================================================*/
.recommend_category, .recommend_post {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.recommend_category_link {
  height: 15rem;
}

.recommend_category_link_title {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 1.6rem;
  border-radius: 0 0 2.4rem 0;
  background: var(--color-text);
  font-weight: bold;
  color: var(--color-white);
  transition: .2s;
  pointer-events: none;
}
.recommend_category_link:hover .recommend_category_link_title {
  background: var(--color-white);
  color: var(--color-text);
}

.recommend_post_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.recommend_post_list_item {
  display: flex;
  align-items: center;
}

.recommend_post_img {
  width: 20rem;
  height: 20rem;
}

.recommend_post_info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex: 1;
  padding: 2.4rem;
}

.recommend_post_category {
  display: flex;
  gap: 1.6rem;
}

.recommend_post_category_link {
  display: inline-block;
  padding: .8rem 1.6rem;
  border: 1px dashed var(--color-primary);
  font-weight: bold;
  color: var(--color-white);
  background: var(--color-text);
}
.recommend_post_category_link:hover {
  border: 1px dashed var(--color-text);
  color: var(--color-text);
  background: var(--color-white);
}

/*======================================================================
  index
======================================================================*/
.index, .category, .detail {
  background: var(--color-primary);
}

.index_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.index_head_text {
  width: 100%;
}

.index_new {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem;
  background: var(--color-white);
}

.index_category {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.index_category_item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem;
  background: var(--color-tertiary);
}

.index_category_item p {
  color: var(--color-black);
}

/*======================================================================
  category
======================================================================*/
.category_head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.category_post {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem;
  background: var(--color-white);
  border-radius: 2.4rem;
}

.category_post_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.category_post_list_item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem;
  background: var(--color-tertiary);
}

.category_post_column {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.category_post_img {
  width: 20rem;
  height: 20rem;
}

.category_post_info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex: 1;
}

.category_post_info p {
  color: var(--color-black);
}

/*======================================================================
  detail
======================================================================*/
.detail_date {
  display: flex;
  justify-content: flex-end;
}

.detail_head {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.detail_head_img {
  width: 100%;
  height: 15rem;
}

.detail_post {
  padding: 2.4rem;
  background: var(--color-white);
  color: var(--color-black);
}

.detail_post h3 {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
}
.detail_post h3:not(:first-child) {
  margin-top: 2.4rem;
}

.detail_post a {
  font-weight: bold;
  color: #02d06c;
  text-decoration: underline;
}
.detail_post a:hover {
  opacity: .5;
}

a.link_item {
  display: inline-block;
  margin-block: 1em;
}
span.link_item {
  display: block;
}
.link_item img {
  max-width: 100%;
  height: auto;
}

/*======================================================================
  sp
======================================================================*/
@media screen and (max-width: 690px) {
  .head-eng {
    min-width: 100%;
  }
  .head-eng img {
    width: 100%;
    height: auto;
  }

  .header_mv_bottom {
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    padding-block: 7rem 0;
  }

  .header_mv_title {
    max-width: 30rem;
    width: 65%;
    min-height: 6rem;
    font-size: 1.8rem;
  }

  .recommend_post_list {
    gap: 2.4rem;
  }

  .recommend_post_list_item {
    flex-direction: column;
  }

  .recommend_post_img {
    width: 100%;
  }

  .recommend_post_info {
    width: 100%;
    padding: 1.6rem 0 0;
  }

  .category_post_column {
    flex-direction: column;
    gap: 1.6rem;
  }

  .category_post_img {
    width: 100%;
  }
}
/* お問い合わせエラー画面の編集 */
.screen-reader-response {
    display: none;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
}
.wpcf7 form.invalid .wpcf7-response-output {
    border: 2px solid #ff0000;
    padding: 10px;
    margin-top: 10px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border: 2px solid #00fa9a;
    padding: 10px;
    margin-top: 10px;
}

/* お問い合わせ項目の修正 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea{
	width: 100%;
	box-sizing: border-box;
	padding: 5px;
	border: 1px solid #ccc;
}
.wpcf7 p{
	margin-bottom: 15px;
}
.wpcf7 input[type="submit"]{
	background: #004999;
	color: #fff;
	padding: 10px 25px;
	font-weight: bold;
	border: 1px dashed #004999;
}
.wpcf7 input[type="submit"]:hover{
	background: #fff;
	color: #004999;
	border: 1px dashed #004999;
}
