@charset "utf-8";

/* ==========================================================================
   Foundation
   ========================================================================== */

/* Reset ----------------------------------------------------------------- */
html {
  min-width: 100%;
  overflow-y: scroll;
}
body, header, footer, nav, main, section, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, span, table, tr, th, td, a, :after, :before {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
  font: inherit;
  vertical-align: baseline;
}
object, embed {
  vertical-align: top;
}
img, abbr, acronym, fieldset {
  border: 0;
}
a img {
  outline: none;
  border: none;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
  border: none;
  outline: none;
}
ul, ol {
  list-style-type: none;
}
button, input, optgroup, select, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font: inherit;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button[disabled], [type='button'][disabled], [type='reset'][disabled], [type='submit'][disabled] {
  cursor: default;
}
[type='checkbox'], [type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
[type='number']::-webkit-inner-spin-button, [type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none; 
  appearance: none;
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  appearance: textfield;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
::-webkit-input-placeholder {
  font: inherit;
}
:-ms-input-placeholder {
  font: inherit;
}
::-ms-input-placeholder {
  font: inherit;
}
:-ms-input-placeholder {
  font: inherit;
}
::placeholder {
  font: inherit;
}
a:focus, *:focus {
  outline:none;
}
label[for] {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*, :after, :before {
  box-sizing: border-box;
}


/* Base ----------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  background-color: #FFF;
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 48.0625em){
  body {
    min-width: 1200px;
  }
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}


/* Color ----------------------------------------------------------------- */
:root {
  --c-black: #333;
  --c-main: #22A6B3;
  --c-sub: #FFBA00;
  --c-bg: #ecf2ff;
}

a:hover {
  color: var(--c-main);
}


/* ==========================================================================
   Layout
   ========================================================================== */

/* Wrapper  ----------------------------------------------------------------- */
.l-wrapper {
  min-width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* Header  ----------------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 1001;
}

.l-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 2rem;
  width: 1200px;
  height: 8rem;
}
.l-header__logo {
  padding: 1rem 0;
  height: 100%;
}
.l-header__logo a {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.l-header__logo a:hover {
  color: var(--c-black);
}
.l-header__logo img {
  width: auto;
  height: 100%;
}
.l-header__logo span {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.l-header__logo span span {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 48.0625em){
  .l-header__inner {
    padding: 0 1rem;
    width: 100%;
    height: 7rem;
    border-bottom: 5px solid var(--c-main);
    background-color: #FFF;
  }
  .l-header__logo a {
    gap: 1rem;
  }
  .l-header__logo span {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .l-header__logo span span {
    font-size: 1.5rem;
  }
}

.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 48.0625em){
  .l-header__hamburger {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 6.5rem;
    height: 6.5rem;
    background-color: #FFF;
    cursor: pointer;
  }
  .l-header:not(.is-open) .hamburger-open {
    display: block;
  }
  .l-header:not(.is-open) .hamburger-close {
    display: none;
  }
  .l-header.is-open .hamburger-open {
    display: none;
  }
  .l-header.is-open .hamburger-close {
    display: block;
  }
}

.l-header__menu {
  height: 4.5rem;
  background-color: var(--c-main);
}
.l-header__menu-inner {
  position: relative;
  margin: 0 auto;
  width: 1200px;
  height: 100%;
}
@media screen and (max-width: 48.0625em){
  .l-header__menu {
    position: fixed;
    top: 7rem;
    right: -200%;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 7rem);
    transition: .4s;
  }
  .l-header.is-open .l-header__menu {
    right: 0;
  }
  .l-header__menu-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    overflow-y: auto;
  }
}

.l-header__gnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.l-header__nav-list,
.l-header__nav-sublist {
  display: flex;
  height: 100%;
}
.l-header__nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-left: 1px solid #FFF;
  color: #FFF;
}
.l-header__nav-item:last-child {
  border-right: 1px solid #FFF;
}
.l-header__nav-item > *:not(.l-header__area) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; 
  font-size: 1.5rem;
  color: #FFF;
  cursor: pointer;
}
.l-header__nav-item > *:not(.l-header__area):hover {
  color: var(--c-sub);
}
.l-header__nav-list .l-header__nav-item {
  width: 200px;
  font-weight: 700;
}
.l-header__nav-sublist .l-header__nav-item {
  margin: auto 0;
  width: auto;
  height: calc(100% - 2rem);
}
.l-header__nav-sublist .l-header__nav-item a {
  padding: 0 2rem;
}
@media screen and (max-width: 48.0625em){
  .l-header__gnav {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
  }
  .l-header__nav-list,
  .l-header__nav-sublist {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .l-header__nav-item {
    flex-direction: column;
    border-left: none;
    border-top: 1px solid #FFF;
  }
  .l-header__nav-item:last-child {
    border-right: none;
  }
  .l-header__nav-item > *:not(.l-header__area) {
    justify-content: flex-start;
    width: 100%;
    height: auto; 
    font-size: 1.8rem;
    color: #FFF;
  }
  .l-header__nav-list .l-header__nav-item {
    width: 100%;
    font-weight: 500;
  }
  .l-header__nav-list .l-header__nav-item a {
    padding: 1rem;
  }
  .l-header__nav-sublist .l-header__nav-item {
    width: 100%;
    height: auto;
  }
  .l-header__nav-sublist .l-header__nav-item a {
    padding: 1rem;
  }
}

.l-header__areabtn {
  position: relative;
}
@media screen and (min-width: 48.0625em){
  .l-header__areabtn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5rem;
    width: 1rem;
    height: 1rem;
    transform: translateY(-80%) rotate(135deg);
    border-top: solid 2px #FFF;
    border-right: solid 2px #FFF;
  }
  .l-header__areabtn:hover::before {
    border-top: solid 2px var(--c-sub);
    border-right: solid 2px var(--c-sub);
  }
  .l-header__nav-item.is-open {
    background-color: var(--c-sub);
    color: #FFF;
  }
  .l-header__nav-item.is-open .l-header__areabtn {
    color: #FFF;
  }
  .l-header__nav-item.is-open .l-header__areabtn::before {
    transform: translateY(-40%) rotate(-45deg);
    border-top: solid 2px #FFF;
    border-right: solid 2px #FFF;
  }
}
@media screen and (max-width: 48.0625em){
  .l-header__areabtn {
    pointer-events: none;
    padding: 1rem;
  }
}

.l-header__area-inner {
  display: flex;
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 1200px;
}
.l-header__area-list {
  width: 50%;
}
.l-header__area-title {
  display: none;
}
.l-header__area-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
.l-header__area-cat dt {
  width: 150px;
  font-weight: 700;
}
.l-header__area-cat dd {
  width: calc(100% - 150px);
  font-weight: 500;
}
.l-header__area-cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
}
.l-header__area-cat a:hover {
  color: var(--c-sub);
}
.l-header__area-cat span {
  font-weight: 500;
}
.l-header__area-cat span::before {
  content: "（";
}
.l-header__area-cat span::after {
  content: "）";
}
.l-header__area-map {
  position: relative;
  width: 50%;
  aspect-ratio: 16 / 12;
  border-radius: 1rem;
  background-color: #FFF;
  line-height: 0;
}
.l-header__area-map svg {
  width: 100%;
}
.l-header__area-map a:hover {
  opacity: .9;
}
@media screen and (min-width: 48.0625em){
  .l-header__area {
    display: none;
    position: fixed;
    top: 12.5rem;
    left: 0;
    width: 100%;
    border-top: 1px solid #FFF;
    background-color: var(--c-main);
  }
  .l-header__nav-item.is-open .l-header__area {
    display: block;
  }
}
@media screen and (max-width: 48.0625em){
  .l-header__area {
    width: 100%;
  }
  .l-header__area-inner {
    flex-direction: column-reverse;
    padding: 0 1rem;
    width: 100%;
  }
  .l-header__area-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
  }
  .l-header__area-title {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 0 1rem;
    cursor: pointer;
  }
  .l-header__area-title::after {
    content: "";
    width: 1rem;
    height: 1rem;
    transform: translateY(-30%) rotate(135deg);
    border-top: solid 2px #FFF;
    border-right: solid 2px #FFF;
  }
  .l-header__area-title:hover {
    color: var(--c-sub);
  }
  .l-header__area-title:hover::after {
    border-top: solid 2px var(--c-sub);
    border-right: solid 2px var(--c-sub);
  }
  .l-header__area-title.is-open::after {
    transform: translateY(10%) rotate(-45deg);
  }
  .l-header__area-cat {
    gap: .5rem;
    padding: 0 0 2rem;
    width: 100%;
  }
  .l-header__area-cat dt {
    margin-top: 1rem;
    width: 100%;
  }
  .l-header__area-cat dt:first-child {
    margin-top: 0;
  }
  .l-header__area-cat dd {
    padding: 0 1rem;
    width: 100%;
  }
  .l-header__area-cat ul {
    gap: .5rem;
  }
  .l-header__area-cat a:hover {
    color: var(--c-sub);
  }
  .l-header__area-cat span::before {
    content: "（";
  }
  .l-header__area-cat span::after {
    content: "）";
  }
  .l-header__area-map {
    width: 100%;
  }
}

.l-header__subnav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  height: 8rem;
}
.l-header__menber {
  width: 4rem;
}
.l-header__menber .c-button_circle {
  background-color: #FFF;
  border: 2px solid var(--c-main);
}
.l-header__search form {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--c-main);
  border-radius: 100vh;
  overflow: hidden;
}
.l-header__search input {
  width: 150px;
  height: calc(4rem - 4px);
  padding: .5rem 4rem .5rem 1.5rem;
  background-color: #FFF;
  font-size: 1.5rem;
}
.l-header__search input::placeholder{
  color: #666;
}
.l-header__search button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 4rem;
  height: 100%;
  cursor: pointer;
}
.l-header__search button::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background-image: url(../img/icon_search.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-header__language {
  margin-left: 1rem;
}
.l-header__language-switcher {
  display: flex;
  align-items: center;
  gap: .5rem;
  height: 4rem;
  line-height: 1;
}
.l-header__language-switcher a {
  display: block;
  margin: 0 !important;
  padding: 0 .5rem;
  width: auto !important;
  height: auto !important;
  background: none !important;
}
.l-header__language-switcher a.current {
  pointer-events: none;
  font-weight: 700;
}
@media screen and (min-width: 48.0625em){
  .l-header__subnav {
    position: absolute;
    top: -8rem;
    right: 0;
  }
  .l-header__search input {
    transition: width .4s;
  }
  .l-header__search input:focus {
    width: 400px;
  }
}
@media screen and (max-width: 48.0625em){
  .l-header__subnav {
    position: relative;
    justify-content: space-between;
    padding: 1rem 1rem 6.5rem;
    height: auto;
  }
  .l-header__search {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    width: 100%;
  }
  .l-header__search label {
    width: 100%;
  }
  .l-header__search input {
    width: 100%;
    height: 4rem;
  }
  .l-header__language {
    margin-left: 0;
    width: 100%;
  }
  .l-header__language-switcher {
    justify-content: center;
    width: 100%;
  }
}


/* Footer  ----------------------------------------------------------------- */
.l-footer {
  margin-top: auto;
  padding-bottom: 90px;
  background-color: #F6F6F6;
}

.l-footer__pagetop {
  position: fixed;
  right: 15px;
  display: block;
  margin: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--c-main);
  cursor: pointer;
  z-index: 1000;
}
.l-footer__pagetop::before,
.l-footer__pagetop::after {
  content: "";
  position: absolute;
  top: 35%;
  left: calc(50% - 1px);
  width: 2px;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: #FFF;
  transform-origin: 50% 1px;
}
.l-footer__pagetop::before {
  transform: rotate(45deg);
}
.l-footer__pagetop::after {
  transform: rotate(-45deg);
}

.l-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5rem;
  margin: 0 auto;
  padding: 3rem 3rem 2rem;
  width: 1200px;
}
.l-footer__logo a {
  display: block;
  margin: 0 auto;
  width: 10rem;
}
.l-footer__copyright {
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
}
.l-footer__sitemap {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 700;
}
.l-footer__sitemap > div:not(:first-child) {
  margin-top: 2rem;
}
.l-footer__sitemap ul {
  display: flex;
  gap: 1rem 3rem;
}
.l-footer__sitemap a:hover {
  color: var(--c-sub);
}
.l-footer__area-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  width: 800px;
}
.l-footer__area-cat dt {
  width: 110px;
  font-weight: 700;
}
.l-footer__area-cat dd {
  width: 250px;
  font-weight: 500;
}
.l-footer__area-cat dd:last-child {
  width: calc(100% - 110px);
}
.l-footer__area-cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
}
.l-footer__contact {
  font-size: 1.4rem;
}
.l-footer__contact ul {
  flex-wrap: wrap;
}
.l-footer__sns {
  font-size: 2.5rem;
}
@media screen and (max-width: 48.0625em){
  .l-footer {
    padding-bottom: 50px;
  }
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1.5rem 1rem;
    width: 100%;
  }
  .l-footer__sitemap {
    flex: none;
    padding: 0 .5rem;
  }
  .l-footer__sitemap > div {
    margin-top: 1rem;
  }
  .l-footer__sitemap ul {
    gap: .5rem 2rem;
  }
  .l-footer__area-cat {
    width: 100%;
  }
  .l-footer__area-cat dd {
    width: calc(100% - 110px);
  }
  .l-footer__area-cat dd:last-child {
    width: calc(100% - 110px);
  }
  .l-footer__area-cat ul {
    gap: .5rem 2rem;
  }
}


/* Container  ----------------------------------------------------------------- */
.l-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 12.5rem auto 0;
  padding-bottom: 5rem;
  width: 1200px;
}
@media screen and (max-width: 48.0625em){
  .l-container {
    flex-direction: column;
    gap: .5rem;
    margin: 7rem auto 0;
    padding-bottom: 3rem;
    width: 100%;
  }
}


/* Breadcrumb  ----------------------------------------------------------------- */
.l-breadcrumb {
  padding: 1.5rem 1rem 1.5rem 0;
  width: 100%;
  overflow-x: hidden;
}
.l-breadcrumb__list {
  display: flex;
  gap: 1.5rem;
  font-size: 1.4rem;
  white-space: nowrap;
}
.l-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.l-breadcrumb__list li:not(:last-child)::after {
  content: "";
  width: .8rem;;
  height: .8rem;
  border-top: 1px solid var(--c-black);
  border-right: 1px solid var(--c-black);
  transform: rotate(45deg);
}
.l-breadcrumb__list a {
  font-weight: 700;
}
.l-breadcrumb__list span {
  color: #666;
}
@media screen and (max-width: 48.0625em){
  .l-breadcrumb {
    padding: 1.5rem 1rem 1rem;
    width: 100%;
    overflow-x: scroll;
  }
  .l-breadcrumb__list li:last-child {
    padding-right: 1rem;
  }
}


/* pager  ----------------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0;
}
.wp-pagenavi > * {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 4rem;
  height: 4rem; 
}
.wp-pagenavi > a {
  border: 1px solid #CCC;
  background-color: #FFF;
}
.wp-pagenavi > a:hover {
  background-color: var(--c-bg);
}
.wp-pagenavi > span {
  border: 1px solid var(--c-main);
  background-color: var(--c-main);
  color: #FFF;
}



/* Main  ----------------------------------------------------------------- */
.l-main {
  position: relative;
  width: 870px;
}
@media screen and (max-width: 48.0625em){
  .l-main {
    position: relative;
    padding: 0 1rem;
    width: 100%;
  }
}


/* Aside  ----------------------------------------------------------------- */
.l-aside {
  position: relative;
  display: flex;
}
.l-aside__inner {
  position: sticky;
  bottom: 2rem;
  width: 100%;
}
@media screen and (min-width: 48.0625em){
  .l-aside {
    align-items: flex-end;
    width: 300px;
  }
  .l-aside__inner {
    position: sticky;
    bottom: 2rem;
  }
}
@media screen and (max-width: 48.0625em){
  .l-aside {
    margin-top: 4rem;
    padding: 0 1rem;
  }
}
.l-aside__contents:not(:first-child) {
  margin-top: 2rem;
}
.l-aside .c-title01 {
  gap: .5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--c-main);
  font-size: 1.8rem;
}



/* ==========================================================================
  Component
  ========================================================================== */

/* ad  ----------------------------------------------------------------- */
.world-highlight-wrapper {
  width: 100%;
}
.c-layout01_list .c-ad {
  box-sizing: content-box;
}

/*footer*/
.c-ad_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(40,40,40,.3);
  z-index: 999999;
}
.c-ad_footer__pc {
  height: 90px
}
.c-ad_footer__sp {
  height: 50px
}
.c-ad_footer__pc .c-ad {
  margin: 1rem auto 0;
  width: 970px;
  height: 90px;
}
.c-ad_footer__sp .c-ad {
  margin: 0 auto;
  width: 320px;
  height: 50px;
}
.c-ad_footer__close {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.c-ad_footer__close::before, .c-ad_footer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 36px;
  background: #FFF;
}
.c-ad_footer__close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.c-ad_footer__close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.c-ad_footer__pc .c-ad_footer__close {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.c-ad_footer__sp .c-ad_footer__close {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: rgba(40,40,40,.3);
}


/* section ----------------------------------------------------------------- */
.c-section {
  position: relative;
  margin-top: 6rem;
  width: 100%;
}
.l-main > .c-section:first-child {
  margin-top: 0;
}
@media screen and (max-width: 48.0625em){
  .c-section {
    margin-top: 4rem;
  }
}


/* article ----------------------------------------------------------------- */
.c-article__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.c-article__image {
  position: relative;
  width: 100%;
}
.c-article__image picture {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  transition: opacity .4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-article__link:hover~.c-article__image picture {
  opacity: .8;
}
.c-article__photo {
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.c-article__title {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  transition: color .2s ease;
}
.c-article__link:hover~.c-article__contents .c-article__title {
  color: var(--c-main);
}
.c-article__description {
  display: none;
}
.c-article__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-article__date {
  font-size: 1.4rem;
  text-align: right;
}
.c-article__footer {
  width: 100%;
}
.c-article__author {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: .5rem;
  z-index: 3;
}
.c-article__author_photo {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #CCC;
  border-radius: 50%;
  overflow: hidden;
}
.c-article__author_photo img {
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.c-article__author_name {
  flex: 1;
  margin-top: .9rem;
  font-size: 1.5rem;
  line-height: 1.2;
}
.c-article__tags {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  width: 100%;
  z-index: 3;
}
.c-article__tags_link a {
  display: inline-flex;
  padding: .5rem 1rem;
  border: 1px solid #CCC;
  border-radius: .4rem;
  font-size: 1.2rem;
  line-height: 1;
}
.c-article__tags_link a::before {
  content: "#";
}
.c-article__tags_link a:hover {
  border: 1px solid var(--c-main);
}
.c-article__sponsor {
  width: 100%;
  color: #888;
  font-size: 1.4rem;
  line-height: 1.2;
}
@media screen and (min-width: 48.0625em){
  .c-article__title {
    font-size: 2rem;
  }
  .c-article__description {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
  .c-article__date {
    font-size: 1.6rem;
  }
}


/* layout ----------------------------------------------------------------- */
.c-layout_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-layout {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0 1rem;
  width: 100%;
}
.c-layout .c-article__image {
  width: 45%;
}
.c-layout .c-label__pickup {
  top: -.5rem;
  left: -.5rem;
}
.c-layout .c-article__contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-layout .c-article__title {
  -webkit-line-clamp: 4;
}
.c-layout .c-article__date {
  margin-top: 0;
}
.c-layout .c-article__author {
  margin-top: .5rem;
}
.c-layout .c-article__sponsor {
  margin-top: 1rem;
  text-align: right;
}
@media screen and (max-width: 48.0625em){
  .c-layout_list {
    gap: 1rem;
  }
  .c-layout {
    padding: 0 0 1rem;
    border-bottom: 1px dotted #CCC;
  }
  .c-layout:first-child {
    padding-top: 1rem;
    border-top: 1px dotted #CCC;
  }
}

/*layout01*/
.c-layout01_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-layout01 {
  padding: 0 0 1rem;
  border-bottom: 1px dotted #CCC;
}
.c-layout01:first-child {
  padding-top: 1rem;
  border-top: 1px dotted #CCC;
}
@media screen and (min-width: 48.0625em){
  .c-layout01 .c-article__image {
    width: 35%;
  }
  .c-layout01 .c-article__contents {
    justify-content: flex-start;
  }
  .c-layout01 .c-article__title {
    -webkit-line-clamp: 3;
  }
  .c-layout01 .c-article__description {
    margin-top: .5rem;
    -webkit-line-clamp: 3;
  }
  .c-layout01 .c-article__info {
    margin-top: auto;
    justify-content: flex-start;
    gap: 1rem;
  }
  .c-layout01 .c-article__footer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .c-layout01 .c-article__author {
    margin-top: 1rem;
    width: 35%;
  }
  .c-layout01 .c-article__tags {
    margin-top: 1rem;
    flex: 1;
  }
}

/*layout02*/
@media screen and (max-width: 48.0625em){
  .c-layout02 .c-label {
    height: 2.5rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 48.0625em){
  .c-layout02_list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem 2rem;
  }
  .c-layout02 {
    flex-direction: column;
    width: calc(calc(100% - 6rem) / 4);
  }
  .c-layout02 .c-article__image {
    width: 100%;
  }
  .c-layout02 .c-article__contents {
    position: relative;
  }
  .c-layout02 .c-article__title {
    margin-top: .5rem;
    font-size: 1.8rem;
    -webkit-line-clamp: 3;
  }
  .c-layout02 .c-article__description {
    margin-top: .5rem;
    -webkit-line-clamp: 4;
  }
  .c-layout02 .c-label {
    position: absolute;
    top: -3.5rem;
    right: .5rem;
  }
  .c-layout02 .c-article__date {
    width: 100%;
    color: #888;
    font-size: 1.5rem;
    text-align: right;
  }
}

/*layout03*/
.c-layout03_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3rem 2rem;
  margin-top: 1rem;
}
.c-layout03 {
    flex-direction: column;
    padding: 0;
    border: none;
    width: calc(50% - 1rem);
}
.c-layout03 .c-article__image {
  width: 100%;
}
.c-layout03 .c-article__photo {
  border-radius: .5rem;
}
.c-layout03 .c-article__title {
  margin-top: .5rem;
}
.c-layout03 .c-article__description {
  margin-top: .5rem;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 48.0625em){
  .c-layout03_list {
    gap: 2rem 1rem;
  }
  .c-layout03 {
      flex-direction: column;
      width: calc(50% - .5rem);
  }
  .c-layout03:first-child {
    padding: 0;
    border: none;
}
  .c-layout03 .c-article__title {
    font-size: 1.6rem;
  }
  .c-layout03 .c-article__description {
    display: -webkit-box;
    font-size: 1.4rem;
  }
}

/*layout-aside01*/
.c-layout-aside01_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-layout-aside01 {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}
.c-layout-aside01 .c-article__image {
  width: 40%;
}
.c-layout-aside01 .c-label {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 .5rem;
  height: 2.5rem;
  font-size: 1.2rem;
  border-radius: .2rem 0 0 .2rem;
}
.c-layout-aside01 .c-article__contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-layout-aside01 .c-article__title {
  -webkit-line-clamp: 4;
  font-size: 1.4rem;
}
.c-layout-aside01 .c-article__sponsor {
  margin-top: .5rem;
}
@media screen and (min-width: 48.0625em){
  .c-layout-aside01 .c-label {
    font-size: 1.1rem;
  }
  .c-layout-aside01 .c-article__title {
    -webkit-line-clamp: 3;
  }
}


.c-layout.is-private {
  background-color: #f7dedc;
}


/* Title ----------------------------------------------------------------- */
.c-title01 {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 2rem;
  width: 100%;
  border-bottom: 3px solid var(--c-main);
  font-size: 3rem;
  font-weight: 700;
}
.c-title01::before {
  content: "";
  display: block;
  width: 1.4em;
  height: 1.4em;
  background-image: url(../img/icon_logo.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 48.0625em){
  .c-title01 {
    gap: .5rem;
    font-size: 2.5rem;
  }
}


/* Button ----------------------------------------------------------------- */
.c-button_wrap {
  margin-top: 3rem;
}
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  width: 90%;
  max-width: 500px;
  border: 2px solid var(--c-main);
  border-radius: 100vh;
  background-color: #FFF;
  color: var(--c-black);
  font-weight: 700;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.c-button:hover {
  background-color: var(--c-main);
  color: #FFF;
}
@media screen and (max-width: 48.0625em){
  .c-button {
    padding: 1rem 2rem;
  }
}

.c-button_circle {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

/* Text ----------------------------------------------------------------- */


/* Label ----------------------------------------------------------------- */
.c-label__pickup {  
  display: inline-block;
  position: absolute;
  padding: .8rem 1rem;
  color: #FFF;
  text-shadow: 0 1px 1px #666;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: .1rem;
  /*background: linear-gradient(#22A6B3 40%, #33D9B2 100%);*/
  background-color: var(--c-sub);
  line-height: 1;
  z-index: 2;
}
@media screen and (min-width: 48.0625em){
  .c-label__pickup {  
    font-size: 1.6rem;
  }
}

.c-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  height: 3rem;
  border-radius: .3rem .3rem;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transition: opacity .4s;
}
.c-label__link:hover {
  color: #FFF;
  opacity: .9;
}
@media screen and (min-width: 48.0625em){
  .c-label {
    padding: 0 1.5rem;
    font-size: 1.4rem;
    letter-spacing: .1rem;
  }
}


.c-label__hokkaido {
  background-color: #1E508D;
}
.c-label__tohoku {
  background-color: #2D98DA;
}
.c-label__kanto {
  background-color: #18B256;
}
.c-label__tokai {
  background-color: #F96274;
}
.c-label__hokuriku {
  background-color: #F7750B;
}
.c-label__kansai {
  background-color: #EA3632;
}
.c-label__chugoku_shikoku {
  background-color: #B561B3;
}
.c-label__kyusyu_okinawa {
  background-color: #6B3E99;
}
.c-label__world {
  background-color: #B2A460;
}


/* form ----------------------------------------------------------------- */
.wpcf7 {
  margin-top: 3rem;
}
.wpcf7 .paragraph {
  margin-top: 1rem;
  font-weight: 700;
}
.wpcf7 .input-area input {
    padding: 1rem;
    width: 100%;
    border: none;
    border: 1px solid #CCC;
    border-radius: .4rem;
}
.wpcf7 .input-area textarea {
  padding: 1rem;
    width: 100%;
    height: 12rem;
    border: 1px solid #CCC;
    border-radius: .4rem;
    line-height: 1.4;
    resize: vertical;
}
.wpcf7 span.wpcf7-list-item {
  margin: 0;
}
.wpcf7 span.wpcf7-list-item label {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-left: 3rem;
  cursor: pointer;
  line-height: 2.5rem;
}
.wpcf7 span.wpcf7-list-item label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: #FFF;
  border: 1px solid #888;
}
.wpcf7 span.wpcf7-list-item label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: .7rem;
  transform: translateY(-1rem) rotate(45deg) ;
  display: block;
  width: 1rem;
  height: 1.5rem;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  opacity: 0;
}
.wpcf7 span.wpcf7-list-item label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
.wpcf7 .formmes {
  margin-top: 2rem;
}
.wpcf7 .submit-area input {
  display: block;
  margin: 3rem auto 0;
  padding: 1rem;
  width: 20rem;
  background-color: var(--c-main);
  border-radius: 100vh;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}
.wpcf7 .submit-area input:hover {
  opacity: .8;
}
.wpcf7-not-valid-tip {
  font-size: 1.2rem !important;
  color: #F00 !important;
}
.wpcf7-response-output {
  margin-top: 1rem !important;
  border: none !important;
  text-align: center;
  color: #F00;
}
.wpcf7-turnstile.cf-turnstile {
  text-align: center;
}




/* ==========================================================================
  Project
  ========================================================================== */

/* index ----------------------------------------------------------------- */
.p-index {
  margin: 0 auto;
  padding-bottom: 5rem;
  width: 1200px;
}
@media screen and (max-width: 48.0625em) {
  .p-index {
    padding-bottom: 3rem;
    width: 100%;
  }
}

/*slider*/
.p-index_slider {
  position: relative;
  margin: 12.5rem 0 3rem;
  padding: 2rem 0 5.5rem;
  width: 100%;
  background-color: #F0F7F7;
  overflow: hidden;
}
.p-index_slider .c-layout {
  display: flex;
  flex-direction: column;
}
.p-index_slider .c-article__image {
  width: 100%;
}
.p-index_slider .c-label__pickup {
  font-size: 2rem;
}
.p-index_slider .c-label {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  height: 3.5rem;
  padding: 0 1.5rem;
  border-radius: .3rem;
  font-size: 1.6rem;
  letter-spacing: .1rem;
}
.p-index_slider .c-article__title {
  margin-top: 1rem;
  -webkit-line-clamp: 2;
}
.p-index_slider .swiper-pagination {
  bottom: 1rem;
}
.p-index_slider .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.p-index_slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 .5rem;
}
.p-index_slider .swiper-pagination-bullet {
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid var(--c-main);
  background-color: transparent;
  opacity: 1;
}
.p-index_slider .swiper-pagination-bullet-active {
  background-color: var(--c-main);
}
@media screen and (max-width: 48.0625em){
  .p-index_slider {
    margin: 7rem auto 2rem;
    padding: 2rem 0 4rem;
  }
  .p-index_slider .c-layout {
    padding: 0;
    border: none;
  }
  .p-index_slider .c-label__pickup {
    font-size: 1.5rem;
  }
  .p-index_slider .c-label {
    font-size: 1.5rem;
    letter-spacing: .05rem;
  }
  .p-index_slider .c-article__title {
    font-size: 1.8rem;
  }
  .p-index_slider .swiper-pagination {
    bottom: .5rem;
  }
  .p-index_slider .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/*contents*/
.p-index_contents__tabs {
  display: flex;
  gap: 1rem;
  width: 100%;
  border-bottom: 2px solid var(--c-main);
}
.p-index_contents__tab {
  flex: 1;
  border: 2px solid var(--c-main);
  border-bottom: none;
  border-radius: .8rem .8rem 0 0;
  color: var(--c-main);
  cursor: pointer;
}
.p-index_contents__tab.is-current {
  background-color: var(--c-main);
  color: #FFF;
  cursor: default;
}
.p-index_contents__tab h2 {
  padding: .7rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.p-index_contents__panel {
  display: none;
  margin-top: 2rem;
}
.p-index_contents__panel.is-open {
  display: block;
}
@media screen and (max-width: 48.0625em){
  .p-index_contents__tab h2 {
    padding: .5rem;
    font-size: 1.6rem;
  }
  .p-index_contents .c-layout:first-child {
    padding-top: 0;
    border-top: none;
  }
}

/*pickup*/
.p-index_pickup .c-layout_list {
  flex-direction: row;
  flex-wrap: wrap;
}
.p-index_pickup .c-layout {
  flex-direction: column;
  padding: 2rem;
  border: 2px solid var(--c-main);
  box-shadow: .5rem .5rem 0px 0px #DDD;
  width: calc(50% - 1rem);
}
.p-index_pickup .c-layout .c-article__image {
  width: 100%;
}
.p-index_pickup .c-layout .c-article__photo {
  aspect-ratio: 16 / 7;
}
.p-index_pickup .c-layout .c-label {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
}
.p-index_pickup .c-layout .c-article__title {
  margin-top: .5rem;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 48.0625em){
  .p-index_pickup .c-layout {
    width: 100%;
  }
  .p-index_pickup .c-layout .c-article__title {
    font-size: 1.6rem;
  }
}

/*feature*/
.p-index_feature .c-layout_list {
  flex-direction: row;
  flex-wrap: wrap;
}
.p-index_feature .c-layout {
  flex-direction: column;
  padding: 1.5rem 2rem;
  width: calc(50% - 1rem);
  background-color: #F9F6EE;
}
.p-index_feature .c-layout .c-article__title {
  margin-left: -3rem;
  overflow: visible;
}
.p-index_feature .c-layout .c-article__title span {
  position: relative;
  display: inline-block;
  padding: .5rem 1.5rem;
  background-color: var(--c-main);
  color: #FFF;
  font-size: 2.2rem;
  text-shadow: 0 1px 1px #666;
  letter-spacing: .05rem;
}
.p-index_feature .c-layout .c-article__title span::before {
  content: "";
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  display: block;
  border: none;
  border-bottom: solid 1.2rem transparent;
  border-right: solid 1rem #82C5CB;
}
.p-index_feature .c-layout .c-article__image {
  margin-top: 1rem;
  width: 100%;
}
.p-index_feature .c-layout .c-article__photo {
  aspect-ratio: 8 / 3;
  border-radius: 1rem;
}
.p-index_feature .c-layout .c-article__description {
  display: block;
  margin-top: 1rem;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  background-color: rgba(255,255,255,.9);
  line-height: 1.4;
}
@media screen and (max-width: 48.0625em){
  .p-index_feature .c-layout {
    padding: 1.5rem 1rem;
    width: 100%;
    border: none;
  }
  .p-index_feature .c-layout .c-article__title {
    margin-left: -1.5rem;
  }
  .p-index_feature .c-layout .c-article__title span {
    font-size: 1.8rem;
  }
  .p-index_feature .c-layout .c-article__title span::before {
    bottom: -1rem;
    border-bottom: solid 1rem transparent;
    border-right: solid .5rem #82C5CB;
  }
  .p-index_feature .c-layout .c-article__description {
    padding: 1rem;
  }
}

/*ranking*/
.p-index_ranking .c-layout::after {
  position: absolute;
  top: -.5rem;
  left: -.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--c-main);
  box-shadow: .2rem .2rem 0px 0px #FFF;
  color: #FFF;
  font-weight: 700;
  font-size: 2rem;
}
.p-index_ranking__list01 > .c-layout::after {
  content: "1";
}
.p-index_ranking__list02 > .c-layout:nth-child(1)::after {
  content: "2";
}
.p-index_ranking__list02 > .c-layout:nth-child(2):after {
  content: "3";
}
.p-index_ranking__list03 > .c-layout:nth-child(1)::after {
  content: "4";
}
.p-index_ranking__list03 > .c-layout:nth-child(2)::after {
  content: "5";
}
@media screen and (min-width: 48.0625em){
  .p-index_ranking .c-layout::after {
    box-shadow: .3rem .3rem 0px 0px #FFF;
  }
  .p-index_ranking__list01 > .c-layout::after {
    width: 6rem;
    height: 6rem;
    box-shadow: .4rem .4rem 0px 0px #FFF;
    font-size: 3.5rem;
  }
  .p-index_ranking__list02 > .c-layout::after {
    width: 5rem;
    height: 5rem;
    font-size: 2.5rem;
  }
  .p-index_ranking .c-article__title {
    -webkit-line-clamp: 2;
  }
  .p-index_ranking__list01 {
    display: flex;
    gap: 3rem;
  }
  .p-index_ranking__list01 > .c-layout {
    flex: 1;
  }
  .p-index_ranking__list02 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .p-index_ranking__list02 > .c-layout {
    flex-direction: row;
    width: 100%;
  }
  .p-index_ranking__list02 .c-article__image {
    width: 53%;
  }
  .p-index_ranking__list02 .c-label {
    top: unset;
    right: unset;
    bottom: .5rem;
    left: -1.5rem;
    transform: translateX(-100%);
  }
  .p-index_ranking__list03 {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
  }
  .p-index_ranking__list03 > .c-layout {
    flex: 1;
    flex-direction: row;
  }
  .p-index_ranking__list03 .c-article__image {
    width: 30%;
  }
  .p-index_ranking__list03 .c-label {
    top: unset;
    right: unset;
    bottom: .5rem;
    left: -1.5rem;
    transform: translateX(-100%);
  }
  .p-index_ranking__list03 .c-article__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 48.0625em){
  .p-index_ranking .c-layout {
    padding: 0;
    border: none;
  }
  .p-index_ranking__list02 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .p-index_ranking__list03 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}


/* aside ----------------------------------------------------------------- */
.p-aside_feature .c-layout-aside01_list {
  gap: 1.5rem;
}
.p-aside_feature .c-layout-aside01 {
  flex-direction: column;
  gap: .5rem;
}
.p-aside_feature .c-article__image {
  width: 100%;
}
.p-aside_feature .c-article__title {
  font-size: 1.6rem;
}
@media screen and (max-width: 48.0625em){
  .p-aside_feature .c-layout-aside01 .c-article__photo {
    aspect-ratio: 16 / 7;
  }
}

.p-aside_ranking .c-layout-aside01::after {
  position: absolute;
  top: -.2rem;
  left: -.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--c-main);
  box-shadow: .2rem .2rem 0px 0px #FFF;
  color: #FFF;
  font-weight: 700;
  font-size: 1.75rem;
}
.p-aside_ranking .c-layout-aside01:nth-child(1)::after {
  content: "1";
}
.p-aside_ranking .c-layout-aside01:nth-child(2)::after {
  content: "2";
}
.p-aside_ranking .c-layout-aside01:nth-child(3)::after {
  content: "3";
}
.p-aside_ranking .c-layout-aside01:nth-child(4)::after {
  content: "4";
}
.p-aside_ranking .c-layout-aside01:nth-child(5)::after {
  content: "5";
}


/* lists ----------------------------------------------------------------- */
.p-lists .c-title01 {
  margin-bottom: .5rem;
  border-bottom: none;
  font-size: 2.5rem;
}
.p-lists_head {
  margin-bottom: .5rem;
  padding: 1rem;
  border-radius: .4rem;
  background-color: var(--c-bg);
}
@media screen and (max-width: 48.0625em){
  .p-lists .c-title01 {
    font-size: 2rem;
  }
}


/* feature ----------------------------------------------------------------- */
.p-feature_catch {
  position: relative;
}
.p-feature_catch .c-article__photo {
  border-radius: 1rem;
}
.p-feature_catch .c-article__title {
  position: absolute;
  bottom: 2.5rem;
  left: -1rem;
  overflow: visible;
}
.p-feature_catch .c-article__title span {
  position: relative;
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: var(--c-main);
  color: #FFF;
  font-size: 2.5rem;
  text-shadow: 0 1px 1px #666;
  letter-spacing: .05rem;
}
.p-feature_catch .c-article__title span::before {
  content: "";
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  display: block;
  border: none;
  border-bottom: solid 1.2rem transparent;
  border-right: solid 1rem #82C5CB;
}
.p-feature_head .c-article__description {
  display: block;
  margin: 2rem auto;
}
@media screen and (max-width: 48.0625em){
  .p-feature_catch .c-article__title {
    bottom: 2rem;
    left: -.5rem;
  }
  .p-feature_catch .c-article__title span {
    padding: .8rem 1.5rem;
    font-size: 2rem;
  }
  .p-feature_catch .c-article__title span::before {
    bottom: -1rem;
    border-bottom: solid 1rem transparent;
    border-right: solid .5rem #82C5CB;
  }
  .p-feature_head .c-article__description {
    margin: 1.5rem auto;
  }
}


/* area ----------------------------------------------------------------- */
.p-lists__area-list {
  display: flex;
  gap: 1rem;
}
.p-lists__area-list .c-label {
  padding: 0 1rem;
}

.p-area .c-title01 {
  border-bottom: none;
  font-size: 2.5rem;
}
.p-area .l-header__area-map {
  margin-bottom: 1rem;
  width: 100%;
}
.p-area .l-header__area-map svg {
  width: 100%;
}
.p-area .l-header__area-map a:hover {
  opacity: .9;
}

.p-area_lists__box:not(:first-child) {
  margin-top: 3rem;
}
.p-area_lists .c-layout_list {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dotted #CCC;
}
.p-area_lists .c-button_wrap {
  margin-top: 2rem;
}
@media screen and (min-width: 48.0625em){
  .p-area_lists .c-article__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 48.0625em){
  .p-area .c-title01 {
    font-size: 2rem;
  }
  .p-area_lists .c-layout_list {
    margin-top: 1rem;
    padding-top: 0;
    border-top: none;
  }
}


/* article ----------------------------------------------------------------- */
.p-article_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: .5rem;
  border-bottom: 1px solid #CCC;
}
.p-article_head .c-article__title {
  font-size: 2.5rem;
  display: block;
}
.p-article_head__author {
  margin-top: 1rem;
  line-height: 1;
}
.p-article_head__author .c-article__author_name {
  margin-top: .8rem;
  font-size: 1.6rem;
}
.p-article_head__info {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.p-article_head .c-article__sponsor {
  margin-top: .5rem;
}
.p-article_catch {
  margin-top: 2rem;
  width: 100%;
}
.p-article_catch img {
  width: 100%;
}
@media screen and (max-width: 48.0625em){
  .p-article_head {
    padding-bottom: 1rem;
  }
  .p-article_head  .c-article__title {
    font-size: 2rem;
  }
  .p-article_head__author {
    width: 100%;
  }
  .p-article_head__info {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
  }
}

.p-article_tags {
  margin-bottom: 2rem;
}
.p-article_tags .c-article__tags_link a {
  padding: 1rem;
  font-size: 1.6rem;
}

.p-article_author__title {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-article_author__box {
  margin-top: .5rem;
  padding: 1.5rem;
  background-color: var(--c-bg);
}
.p-article_author__profile .c-article__author {
  align-items: center;
  gap: 1rem;
}
.p-article_author__profile .c-article__author_photo {
  width: 7rem;
  height: 7rem;
}
.p-article_author__profile .c-article__author_name {
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.p-article_author__links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.p-article_author__links li {
  margin-top: 1rem;
}
.p-article_author__links li a {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  word-break: break-all;
  line-height: 1.2;
}
.p-article_author__links li span {
  font-size: 2rem;
}
@media screen and (max-width: 48.0625em){
  .p-article_author__links {
    flex-direction: column;
    gap: 0;
  }
  .p-article_author__links li:not(:first-child) {
    margin-top: .5rem;
  }
}

.p-article_author__entries {
  margin-top: 2rem;
}
.p-article_author__entries-title {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-article_author__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.p-article_author__article {
  padding: 1rem 0 0;
  border-top: 1px solid #CCC;
}
.p-article_author__article:last-child {
  padding: 1rem 0;
  border-bottom: 1px solid #CCC;
}
.p-article_author__article .c-label {
  margin-right: 1rem;
  height: 2.5rem;
}

.p-article_related {
  margin-top: 3rem;
}
.p-article_related .yarpp-related {
  margin: 0;
}
.p-article_related .c-title01 {
  gap: .5rem;
  font-size: 2.5rem;
}
@media screen and (min-width: 48.0625em){
  .p-article_related .c-layout02 {
    width: calc(calc(100% - 6rem) / 3);
  }
  .p-article_related .c-article__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 48.0625em){
  .p-article_related .c-layout:first-child {
    padding-top: 1rem;
    border-top: none;
}
  .p-article_related .c-title01 {
    gap: .8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--c-main);
    font-size: 2rem;
  }
}

/*search*/
.p-search__title {
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 700;
}
.p-search__notfound {
  padding: 2rem 0;
}
@media screen and (max-width: 48.0625em){
  .p-search__title {
    font-size: 2rem;
  }
}

/*article_content*/
.p-article_content {
	margin-top: 0.8em;
  margin-bottom: 1.8em;
  line-height: 1.75;
}
.p-article_content img {
  max-width: 100%;
  height: auto;
  margin: 0.5em 0;
}
.p-article_content br + img {
  margin: 1em 0;
}
.p-article_content .bnr img {
  margin: 0.5em 0;
}
.p-article_content h2 {
  position: relative;
  margin: 2em 0 0.65em 0;
  padding: 0 0.25em 0.25em 0.25em;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-article_content h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--c-main);
}
.p-article_content h3 {
  margin: 1.4em 0 0.65em 0;
  padding: 0 0.25em 0.25em 0.25em;
  border-bottom: 2px solid #d0cdde;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-article_content h4 {
  margin: 1.4em 0 0.65em 0;
  padding: 0 0.25em 0.25em 0.25em;
  border-bottom: 2px solid #d0cdde;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-article_content a {
  color: var(--c-main);
  font-weight: 700;
}
.p-article_content a:hover {
  text-decoration: underline;
}
.p-article_content .single_textbox {
  margin: 1em 0;
  padding: 1em;
  background: #F6F6F6;
}
.p-article_content blockquote {
  position: relative;
  margin: 1em 0;
  padding: 1em;
  background: #F6F6F6;
  font-size: 0.9em;
  font-style: italic;
}
.p-article_content blockquote:before {
  content: '“';
  position: absolute;
  top: -0.2em;
  left: 0.15em;
  display: block;
  font-size: 3em;
  line-height: 1;
}
.p-article_content blockquote:after {
  content: '”';
  position: absolute;
  bottom: -0.7em;
  right: 0.3em;
  display: block;
  font-size: 3em;
  line-height: 1;
}
.p-article_content ul,
.p-article_content ol {
  margin: 1em 0;
}
@media screen and (max-width: 48.0625em){
  .p-article_content h2 {
    font-size: 2rem;
  }
  .p-article_content h3 {
    font-size: 1.8rem;
  }
  .p-article_content h4 {
    font-size: 1.6rem;
  }
}

/*gmap*/
.p-article_content #gmap {
  max-width: 100%;
  height: auto;
  overflow: hidden;
}
.p-article_content #gmap iframe {
  width: 100%;
}

/*video-wra*/
.p-article_content .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.p-article_content .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-article_content .video {
  width: 100%;
  height: auto;
}

/*embed-plan-area*/
.p-article_content .embed-plan-area {
  margin: 1.25em 0;
}
.p-article_content .embed-plan-area h2#featured-plan {
  margin: 0 0 0.5em 0;
  padding: 0;
}
.p-article_content h2#featured-plan:after {
  content: none;
}

/*featured-spot*/
.p-article_content .featured-spot {
  margin: 2.4em 0 0 0;
}
.p-article_content .featured-spot h2 {
  background: url(./img/entry-content/featured_spot.png) left center no-repeat;
  width: 382px;
  height: 26px;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
}
.p-article_content .featured-spot h2:after {
  content: none;
}
.p-article_content ul.featured-spot-list {
  border: 1px solid #d0cdde;
}
.p-article_content .featured-spot-list li {
  display: table;
  table-layout: fixed;
  border-top: 1px solid #d0cdde;
  padding: 10px;
}
.p-article_content .featured-spot-list li:first-child {
  border-top: none;
}
.p-article_content .featured-spot-list li .spot-img img {
  display: table-cell;
  line-height: 1;
  max-width: none;
  width: 216px;
  height: auto;
  margin: 0;
  padding: 0 0.8em 0 0;
  vertical-align: top;
}
.p-article_content .featured-spot-list li .spot-info {
  display: table-cell;
  vertical-align: top;
  font-size: 0.9em;
  line-height: 1.6;
  word-break:break-all;
}
.p-article_content .featured-spot-list li .spot-info .spot-name {
  font-size: 1.1em;
  padding: 0 0 0.2em 0;
}
.p-article_content .featured-spot-list li .spot-info .go-tripro {
  display: block;
  text-align: right;
}

/*btn-af*/
.p-article_content .btn-af {
  display: block;
  padding: 1em ;
  text-align: center;
  border-radius: 4px;
  letter-spacing: 1px;
  color: #ffffff;
  background-image: -webkit-linear-gradient(45deg, #FEAE00 0%, #F24E00 100%);
  background-image: linear-gradient(45deg, #FEAE00 0%, #F24E00 100%);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #c58668;
  margin: 1em auto 0.5em auto;
}

/*page-links*/
.p-article_content #page-links {
  position: relative;
  font-size: 16px;
  line-height: 1;
  margin: 3.8em 0 0 0;
  text-align: center;
}
.p-article_content #page-links a {
  color: #2d2d2d;
}
.p-article_content #page-links .page-txt {
  position: absolute;
  top: 50%;
  display: inline;
  font-size: 14px;
  background: #d0cdde;
  padding: 1px;
  margin-top: -15px;
  color: #2d2d2d;
}
.p-article_content #page-links .next {
  right: 0;
}
.p-article_content #page-links .prev {
  left: 0;
}
.p-article_content #page-links .page-txt .txt {
  display: block;
  background: #ffffff;
  padding: 8px 14px;
}
.p-article_content #page-links .next .txt .arrow {
  background: url(img/arrow_next.png) center right no-repeat;
  background-size: 6px 10px;
  width: 6px;
  height: 10px;
  padding-left: 14px;
}
.p-article_content #page-links .prev .txt .arrow {
  background: url(img/arrow_prev.png) center left no-repeat;
  background-size: 6px 10px;
  width: 6px;
  height: 10px;
  padding-right: 14px;
}
.p-article_content #page-links li {
  display: inline-block;
}
.p-article_content #page-links li + li {
  margin-left: 1.25em;
}
.p-article_content #page-links li a {
  display: block;
  background: #d0cdde;
  padding: 1px;
}
.p-article_content #page-links li a .link {
  display: block;
  background: #ffffff;
  padding: 6px 10px;
}


/* author ----------------------------------------------------------------- */
.p-author__box {
  margin-top: .5rem;
  padding: 1.5rem;
  background-color: var(--c-bg);
}
.p-author__head {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.p-author__photo {
  width: 9rem;
  height: 9rem;
  border: 1px solid #CCC;
  border-radius: 50%;
  overflow: hidden;
}
.p-author__photo img {
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.p-author__names {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.p-author__name {
  font-size: 2.5rem;
  font-weight: 700;
}
.p-author__position {
  margin-top: 1rem;
}
.p-author__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.5rem;
}
.p-author__links li {
  margin-top: 1rem;
}
.p-author__links li a {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  word-break: break-all;
  line-height: 1.2;
}
.p-author__links li span {
  font-size: 2rem;
}
.p-author__profile dt {
  margin-top: 1rem;
  font-weight: 700;
}
.p-author__profile dd {
  padding: 0 1rem;
}
.p-author__keireki {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-left: 2rem;
  list-style: disc;
}
.p-author__tags {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .5rem;
}
.p-author__tags li {
  display: inline-flex;
  padding: 1rem;
  border: 1px solid #CCC;
  border-radius: .4rem;
  font-size: 1.4rem;
  line-height: 1;
}
.p-author__articles {
  margin-top: 2rem;
}
.p-author__articles .c-title01 {
  margin-bottom: .5rem;
  border-bottom: none;
  font-size: 2.5rem;
}
@media screen and (max-width: 48.0625em) {
  .p-author__head {
    gap: 1rem;
  }
  .p-author__photo {
    width: 7rem;
    height: 7rem;
  }
  .p-author__name {
    font-size: 2rem;
  }
  .p-author__position {
    margin-top: .5rem;
  }
  .p-author__links {
    flex-direction: column;
    gap: 0;
  }
  .p-author__links li:not(:first-child) {
    margin-top: .5rem;
  }
  .p-author__articles .c-title01 {
    font-size: 2rem;
  }
}


/* author list ----------------------------------------------------------------- */
.p-author_list .c-layout01 {
  padding: 1rem;
  border: 1px dotted #CCC;
}
.p-author_list .p-author__box {
  margin-top: 0;
  padding: 0;
  width: 100%;
  background-color: #FFF;
}
.p-author_list .p-author__name {
  font-size: 2rem;
}
.p-author_list .p-author__profile {
  margin-top: 1rem;
  line-height: 1.4;
}
.p-author_list .c-article__link:hover~.p-author__box .p-author__photo img {
    opacity: .8;
}
.p-author_list .c-article__link:hover~.p-author__box .p-author__name {
  color: var(--c-main);
}
@media screen and (min-width: 48.0625em) {
  .p-author_list.c-layout01_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .p-author_list .c-layout01 {
    width: calc(50% - .5rem);
  }
}
@media screen and (max-width: 48.0625em) {
  .p-author_list .p-author__name {
    font-size: 1.8rem;
  }
  .p-author_list .p-author__profile {
    margin-top: .5rem;
  }
}


/* page ----------------------------------------------------------------- */
.p-page__title {
  position: relative;
  display: block;
  padding: 1rem 0 1rem 1.5rem;
  width: 100%;
  border-left: 5px solid var(--c-main);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-page__title + * {
  margin-top: 3rem;
}
.p-page .container_inner {
  margin-top: 4rem;
}
.p-page .container_inner:first-child {
  margin-top: 0;
}
.p-page .container_inner h2 {
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--c-main);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-page .container_inner p {
  margin-top: .5rem;
	line-height: 1.8;
}
.p-page .container_inner ul {
  margin-left: 2rem;
  padding-left: 1rem;
  list-style: disc;
}
.p-page .container_inner li {
  margin-top: 1rem;
}
.p-page .container_inner a {
  color: var(--c-main);
}
.p-page .container_inner a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 48.0625em) {
  .p-page__title{
    font-size: 2.5rem;
  }
  .p-page__title + * {
    margin-top: 2rem;
  }
  .p-page .container_inner {
    margin-top: 3rem;
  }
  .p-page .container_inner h2 {
    font-size: 2rem;
  }
}

/*company*/
.p-page_company #ourmission {
  margin-left: auto;
  margin-right: auto;
  background: url(../img/static/ourmission.png) left top no-repeat;
  background-size: 156px 14px;
  width: 156px;
  height: 14px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#ourpolicy {
  margin-top: 2.5rem;
  margin-bottom: 8rem;
  font-size: 2.5rem;
  letter-spacing: .2rem;
  text-align: center;
  line-height: 1.4;
}
.p-page_company h2 {
  margin-top: 5rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.p-page_company table {
  margin-top: 2rem;
  width: 100%;
  text-align: left;
  border-top: 1px solid #CCC;
}
.p-page_company th {
  padding: 2rem;
  width: 150px;
  border-bottom: 1px solid #CCC;
  vertical-align: middle;
}
.p-page_company td {
  padding: 2rem;
  border-bottom: 1px solid #CCC;
  vertical-align: middle;
}
.p-page_company #news {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}
.p-page_company #news a {
  color: var(--c-main);
}
.p-page_company #news a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 48.0625em) {
  #ourpolicy {
    font-size: 1.8rem;
    letter-spacing: .1rem;
  }
  .p-page_company th {
    padding-right: 0;
    width: 120px;
  }
  .p-page_company td {
    padding-right: 0;
  }
}

/*ad*/
.p-page_ad .container_inner .gmap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-page_ad .container_inner .gmap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: calc(50% - .5rem);
}
.p-page_ad .container_inner .gmap li {
  width: calc(50% - .5rem);
}
.p-page_ad .container_inner .gmap a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  border: 1px solid #CCC;
  width: 100%;
  height: 100%;
}
.p-page_ad .area_mediaworks {
  margin-top: 1rem;
}
.p-page_ad .area_mediaworks + strong {
  display: block;
  margin-top: 3rem;
}
@media screen and (max-width: 48.0625em) {
  .p-page_ad .container_inner .gmap ul {
    width: 100%;
  }
}

/*privacy*/
.p-page_privacy dt {
  font-weight: 700;
}
.p-page_privacy dd {
  margin-bottom: 2rem;
}
.p-page_privacy dd dl {
  margin-top: 1rem;
}
.p-page_privacy ol {
  margin-left: 2rem;
  padding-left: 1rem;
  list-style: decimal;
}
.p-page_privacy ol li {
  margin-top: 1rem;
}
.p-page_privacy #statue {
  margin-top: 3rem;
  text-align: right;
}


/* 404 ----------------------------------------------------------------- */
.p-404 p {
  margin-top: 2rem;
  text-align: center;
  font-weight: 700;
}







/* ==========================================================================
  Utility
  ========================================================================== */

/*-- Font --*/
.u-font-bold {
  font-weight: 700;
}
.u-font-size14 {
  font-size: 1.4rem;
}
.u-font-size18 {
  font-size: 1.8rem;
}
.u-text-al {
  text-align: left;
}
.u-text-ac {
  text-align: center;
}
.u-text-ar {
  text-align: right;
}
.u-text-underline {
  text-decoration: underline;
}
@media screen and (min-width: 48.0625em) {
  .u-text-al--pc-ac {
    text-align: center;
  }
  .u-text-ac--pc-al {
    text-align: left;
  }
}

.u-color-red {
  color: var(--c-red);
}
.u-color-glay {
  color: var(--c-gray-text);
}

/*-- Margin --*/
.u-mb0 {
  margin-bottom: 0 !important;
}
.u-mb10 {
  margin-bottom: 1rem !important;
}
.u-mb15 {
  margin-bottom: 1.5rem !important;
}
.u-mb20 {
  margin-bottom: 2rem !important;
}
.u-mb40 {
  margin-bottom: 4rem !important;
}
.u-mt0 {
  margin-top: 0 !important;
}
.u-mt05 {
  margin-top: .5rem !important;
}
.u-mt10 {
  margin-top: 1rem !important;
}
.u-mt15 {
  margin-top: 1.5rem !important;
}
.u-mt20 {
  margin-top: 2rem !important;
}
.u-mt40 {
  margin-top: 4rem !important;
}

/*-- Display none --*/
@media screen and (min-width: 48.0625em) {
  .--nopc {
    display: none;
  }
}
@media screen and (max-width: 48.0625em) {
  .--nosp {
    display: none;
  }
}
