@import url("column.css");
/*-----------------------------------------------------
reset
-----------------------------------------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* font */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.8;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
}

/* layout */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

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

/* element */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}


/* screen reader */
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}


/*-----------------------------------------------------
styling
R90 G90 B90
primary_light R110 G200 B240 #6EC8F0
        R0 G190 B240 #00BEF0
primary R0 G175 B220 #00AFDC
        R0 G110 B195 #006EC3
secondary R0 G60 B152 #003C98

旧カラー：#a5c05b
-----------------------------------------------------*/
:root {
  --color-primary-rgb: 0, 175,220 ;
  --color-primary: rgb(var(--color-primary-rgb)) ;
  --color-primary-light-rgb: 110, 200, 240;
  --color-primary-light: rgb(var(--color-primary-light-rgb)) ;
}

html {
  font-size: 62.5%;
  background-color: #ffffff;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #000000;
  overflow-x: hidden;
}

h1 {
  margin-bottom: 60px;
  font-size: 4.2rem;
}

.top h1 {
  margin-bottom: 30px;
  font-family: 'Bellota Text', cursive;
  font-weight: 500;
  color: #7ba4a8;
}

h1 span {
  display: block;
  font-family: 'Bellota Text', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: #89b0b3;
}

h2 {
  margin-bottom: 30px;
  font-size: 3.2rem;
  line-height: 4.5rem;
}

.main h2 {
  max-width: 674px;
}

.main h2:nth-child(n+2) {
  margin: 50px 0 30px;
}

h3 {
  position: relative;
  margin: 50px 0 20px;
  padding-left: 20px;
  font-size: 2.6rem;

}

h3:before {
  position: absolute;
  top: 5px;
  left: 0px;
  width: 6px;
  height: 90%;
  content: '';
  border-radius: 6px;
  background: var(--color-primary);
}

h4 {
  margin: 40px 0 20px;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

p.note {
  margin-left: 1.2rem;
  text-indent: -1.2rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

.main article a {
  border-bottom: dotted 1px #000000;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.main article a:hover {
  color: #7ba4a8;
  border-bottom: dotted 1px #7ba4a8;
}

.main article a[target="_blank"]:after {
  margin-left: 4px;
  content: "open_in_new";
  font-family: 'Material Icons';
  vertical-align: text-top;
  color: #7ba4a8;
}

.main article p {
  margin-bottom: 3rem;
}

.main article a img {
  border-bottom: none;
}

.main article .wp-caption a {
  border-bottom: none;
}

strong,
em {
  background: linear-gradient(transparent 65%, var(--color-primary));
  font-weight: bold;
  font-style: normal;
}

.alignnone {
  margin: 16px 0;
}

.alignright {
  float: right;
  margin: 10px 0 10px 10px;
}

.alignleft {
  float: left;
  margin: 10px 10px 10px 0;
}

.aligncenter {
  display: block;
  margin: 20px auto;
}


/* list */
.main article ul,
.main article ol {
  margin: 20px 0;
}

.main article ul li {
  position: relative;
  padding-left: 2.4rem;
  margin: 0 0 0.5rem 1.6rem;
  text-indent: -2.4rem;
}

.main article ul li:before {
  margin-right: 0.8rem;
  content: "trip_origin";
  font-family: "Material Icons";
  color: #7ba4a8;
  vertical-align: text-top;
}

.main article ul li ul,
.main article ol li ol {
  margin: 10px 0;
}

.main article ul li ul li {
  padding-left: 1.0rem;
  text-indent: -1.8rem;
}

.main article ul li ul li:before {
  margin-right: 0.8rem;
  content: "lens";
  font-size: 1.0rem;
  vertical-align: middle;
}

.main article ol {
  counter-reset: ol-counter;
}

.main article ol li {
  position: relative;
  margin-left: 2.4rem;
  padding-left: 30px;
  text-indent: -3.2rem;
}

.main article ol li:before {
  display: block;
  width: 32px;
  float: left;
  counter-increment: ol-counter;
  content: counter(ol-counter)'.';
  padding-right: 1.2rem;
  font-weight: 700;
}

.main article ol li ol li {
  padding-left: 1.0rem;
}

.main article ol li ol li:before {
  display: block;
  width: 32px;
  float: left;
  counter-increment: ol-counter;
  content: '('counter(ol-counter)')';
  padding-right: 1.2rem;
}

.main article table ul,
.main article table ol {
  margin: 0;
}

.main article table ul li {
  margin: 0 0 0.4rem 0;
  line-height: 1.8;
}


/* qa */
.main article dl.qa {
  position: relative;
  width: 100%;
  margin-top: 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.main article dl.qa dd,
.main article dl.qa dt {
  width: 100%;
  padding-left: 3.2rem;
  text-indent: -3.2rem;
}

.main article dl.qa dd:first-letter,
.main article dl.qa dt:first-letter {
  padding-right: 16px;
  font-size: 2.4rem;
  color: var(--color-primary);
}

.main article dl.qa dt {
  margin-bottom: 16px;
}

.main article dl.qa dd {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px #dddede;
}

/* interview page */
.main article.interview-article p {
  margin-block-start: 1em;
  margin-block-end: 1em;
}

@media (min-width: 768px) {
  .main article.interview-article p {
    margin-bottom: 40px;
  }
}

/* table */
.main table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  border: solid 1px #dddede;
}

.main tr:nth-child(odd) td {
  background: #fbf5ea;
}

.main th {
  background-color: var(--color-primary);
  color: #ffffff;
  text-align: center;
  min-width: 6rem;
}

.main th,
.main td {
  padding: 8px;
  border-right: solid 1px #dddede;
  border-bottom: solid 1px #dddede;
}


/* form */
label {
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 4px;
  border: 1px solid #dddede;
  font-size: 1.6rem;
  outline: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  margin-bottom: 2px;
}

textarea {
  height: 300px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: solid 2px rgba(123, 164, 168, 0.4);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  .top h1 {
    margin-bottom: 20px;
  }


  h2 {
    font-size: 2.1rem;
    margin-bottom: 20px;
    line-height: 2.5rem;
    
  }
}



/*-----------------------------------------------------
layout
-----------------------------------------------------*/
.wrapper {
  position: relative;
/*  display: flex;
  flex-direction: column;*/
  min-height: 100vh;
}

section {
  position: relative;
  padding: 80px 0;
}

section.bg {
  background: rgba(221, 222, 222, 0.4);
}

section.ban-area {
  padding: 48px 0;
}

article {
  margin-bottom: 80px;
  max-width: 674px;
}

.contents {
  position: relative;
  width: 94%;
  max-width: 1024px;
  margin: 0 auto;
}

.sub {
  padding: 40px 0 100px;
}

.col-2 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.main {
  position: relative;
  -webkit-flex: 1;
  flex: 1;
}

.side {
  position: relative;
  width: 300px;
  margin-left: 50px;
}


/* 天地中央 */
.tb-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* 左右中央 */
.lr-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translatex(-50%);
  transform: translatex(-50%);
}

/* 天地左右中央 */
.tblr-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}



@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .sub {
    padding: 30px 0 60px;
  }

  .col-2 {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .main,
  .side {
    width: 100%;
    margin-left: 0;
  }

  .main {
    margin-bottom: 60px;
  }
}

.wp-caption-text {
  font-size: 1.3rem;
  color: rgb(5, 0, 51)
}

/*-----------------------------------------------------
header
-----------------------------------------------------*/
/* header */
header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  background-color: #ffffff;
  border-top: solid 3px #000000;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}


/* navigation animation */
header.sub,
header.is-animation {
  background-color: #ffffff;
  box-shadow: 0 3px 9px -2px rgba(112, 112, 112, 0.16);
}

.header-contents {
  position: relative;
  width: 94%;
  max-width: 1024px;
  height: 140px;
  margin: 0 auto;
}

/* logo area */
.header-logo {
  position: absolute;
  z-index: 9999;
}

.header-logo img {
  display: inline-block;
  vertical-align: top;
}

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

.header-logo img.logo-ttl {
  width: 345px;
  margin-left: 24px;
}

@media (max-width: 768px) {
  header {
    box-shadow: 0 3px 9px -2px rgba(112, 112, 112, 0.16);
  }

  .header-contents {
    position: relative;
    width: 100%;
    height: 80px;
  }

  .header-logo {
    width: 100%;
  }

  .header-logo img.logo {
    height: 60px;
    width: auto;
    padding-left: 6%;
  }

  .header-logo img.logo-ttl {
    width: 164px;
    margin: 10px 0 0 12px;
  }
}


/* navigation */
.header-nav {
  position: relative;
}

/* toggle Button */
.nav-toggle {
  display: none;
}

/* sub navigation */
.sub-nav {
  position: relative;
  height: 70px;
  margin: 0;
  padding-top: 20px;
  text-align: right;
}

.sub-nav li {
  display: inline-block;
  margin-left: 20px;
  font-size: 1.4rem;
  vertical-align: middle;
}

.sub-nav li.sub-nav_faq:before,
.sub-nav li.sub-nav_access:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.sub-nav li.sub-nav_faq:before {
  background: url(../img/icon-faq.png);
  background-size: 24px 24px;
}

.sub-nav li.sub-nav_access:before {
  background: url(../img/icon-map.png);
  background-size: 24px 24px;
}

#qtranslate-chooser {
  right: 0;
  width: 70px;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  border: solid 1px var(--color-primary);
}

#qtranslate-chooser li.active {
  background-color: var(--color-primary);
  color: #ffffff;
}

#qtranslate-chooser li {
  width: calc(100%/2);
  text-align: center;
  margin-left: 0;
}

/* search box */
.search_container {
  box-sizing: border-box;
  position: relative;
  border: 1px solid #DDDEDE;
  display: block;
  border-radius: 20px;
  height: 36px;
  width: 180px;
  overflow: hidden;
}

.search_container input[type="text"] {
  border: none;
  height: 36px;
  margin-bottom: 0;
  padding: 0 0 0 40px;
}

.search_container input[type="text"]:focus {
  outline: 0;
}

.search_container input[type="image"] {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.search_container label {
  display: none;
}

/* global navigation */
.global-nav {
  position: relative;
  width: 100%;
}

.global-nav ul {
  position: relative;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-top: 20px;
  font-size: 1.8rem;
  font-weight: 500;
}

.global-nav ul li {
  height: 50px;
  margin-left: 48px;
}

.global-nav li a {
  position: relative;
  display: block;
}

.global-nav li a:after {
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translatex(-50%);
  transform: translatex(-50%);
  content: '';
  width: 50px;
  height: 4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  background-color: #7ba4a8;
  border-radius: 30px;
}

.global-nav li a.current:after,
.global-nav li a:hover::after {
  bottom: -16px;
  opacity: 1;
  visibility: visible;
}

.global-nav li .sub-menu {
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translatex(-50%);
  transform: translatex(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 9px -2px rgba(112, 112, 112, 0.16);
}

.global-nav li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.global-nav label,
.global-nav input {
  display: none;
}

.sub-menu-contents {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.sub-menu-title {
  position: relative;
  width: 30%;
}

.sub-menu-contents p.sub-title {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}

.menu-gnavi_news-container,
.menu-gnavi_activity-container,
.menu-gnavi_about-container,
.menu-gnavi_project-container {
  width: 70%;
}
.menu-gnavi_activity-container {
  width: 100%;
}

.sub-menu-contents ul {
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 40px 0;
  padding: 0 0 0 50px;
  border-left: solid 1px #dddede;
  font-size: 1.6rem;
  font-weight: 400;
}

.sub-menu-contents ul li {
  width: calc(100% / 3);
  height: auto;
  margin: 0;
  padding: 10px 10px 10px 20px;
}

.sub-menu-contents ul li a {
  text-indent: -17px;
}

.sub-menu-contents ul li a:before {
  display: inline-block;
  position: relative;
  margin-right: 6px;
  top: 1px;
  left: 0;
  content: '';
  width: 10px;
  height: 14px;
  background: url(../img/icon-link-arrow.svg);
  background-size: 10px 14px;
  background-repeat: no-repeat;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.sub-menu-contents ul li a:hover {
  color: #7ba4a8;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.sub-menu-contents ul li a:hover:before {
  left: 4px;
}

.sub-menu-contents ul li a:after {
  display: none;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translatex(-50%);
  transform: translatex(-50%);
  content: '';
  width: 50px;
  height: 4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  background-color: #7ba4a8;
  border-radius: 30px;
}


@media (max-width: 768px) {
  .header-nav {
    width: 100%;
    right: 0;
  }

  .navigation {
    position: absolute;
    top: -800px;
    width: 100%;
    transition: 0.5s;
  }

  .open-nav .navigation {
    -moz-transform: translateY(800px);
    -webkit-transform: translateY(800px);
    transform: translateY(800px);
    transition: 0.5s;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 17px;
    right: 3%;
    width: 42px;
    height: 42px;
    background-color: var(--color-primary);
    z-index: 9999;
  }

  .nav-toggle div {
    position: relative;
    cursor: pointer;
    width: 70%;
    margin: 0 auto;
  }

  .nav-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    margin: 0 auto;
    border-bottom: solid 2px #ffffff;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    z-index: 2;
  }

  .nav-toggle span:nth-child(1) {
    top: 11px;
  }

  .nav-toggle span:nth-child(2) {
    top: 20px;
  }

  .nav-toggle span:nth-child(3) {
    top: 29px;
  }

  .open-nav .nav-toggle span:nth-child(1) {
    top: 20px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .open-nav .nav-toggle span:nth-child(2),
  .open-nav .nav-toggle span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .sub-nav {
    position: absolute;
    top: 80px;
    width: 100%;
    height: auto;
    padding-top: 0;
    text-align: center;
    background-color: #ffffff;
    border-bottom: solid 1px #dddede;
    transition: 0.5s;
  }

  .sub-nav li {
    display: block;
    margin-left: 0;
    padding: 4px 10px;
    line-height: 3;
  }

  .sub-nav li.sub-nav_search {
    width: 100%;
    background-color: var(--color-primary);
  }

  .sub-nav li.sub-nav_faq,
  .sub-nav li.sub-nav_access {
    width: calc(100% / 2);
    float: left;
  }

  .sub-nav li.sub-nav_access {
    border-left: solid 1px #dddede;
  }

  .search_container {
    width: 100%;
    margin: 10px 0;
    padding: 3px 10px;
    height: 3.0em;
    background-color: #ffffff;
  }

  .global-nav {
    top: 201px;
  }

  .global-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 0;
    background-color: #ffffff;
    box-shadow: 0 3px 9px -2px rgba(112, 112, 112, 0.16);
    font-size: 1.6rem;
  }

  .global-nav ul li {
    position: relative;
    height: auto;
    margin: 0;
  }

  .global-nav ul li:not(:last-child) {
    border-bottom: solid 1px #dddede;
  }

  .global-nav ul li a {
    position: relative;
    top: 14px;
    margin: 0 6%;
  }

  .global-nav a:after {
    display: none;
  }

  .global-nav label {
    display: inline-block;
  }

  .global-nav label span {
    position: absolute;
    top: 12px;
    right: 5%;
  }

  .menu-label span:before {
    display: inline-block;
    content: '';
    width: 16px;
    height: 8px;
    background: url(../img/icon-arrow-down.svg);
    background-size: 16px 8px;
    background-repeat: no-repeat;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }

  .global-nav input:checked+.menu-label span:before {
    transform: rotateZ(180deg);
  }

  .global-nav li:hover .sub-menu {
    display: none;
  }

  .sub-menu-contents {
    width: 100%;
  }

  .sub-menu-title {
    display: none;
  }

  .sub-menu-contents ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    padding: 0;
    border-left: none;
    background-color: rgba(221, 222, 222, 0.3);
    box-shadow: none;
  }

  .sub-menu-contents ul li {
    overflow: hidden;
    width: 100%;
    height: 48px;
    padding: 0;
  }

  .sub-menu-contents ul li a {
    font-size: 1.4rem;
    text-indent: 0;
  }

  .sub-menu-contents ul li a:before {
    display: none;
  }

  #menu-news:checked~#sub-news,
  #menu-activity:checked~#sub-activity,
  #menu-about:checked~#sub-about,
  #menu-project:checked~#sub-project {
    display: contents;
  }

  .menu-gnavi_news-container,
  .menu-gnavi_activity-container,
  .menu-gnavi_about-container,
  .menu-gnavi_project-container {
    width: 100%;
  }
}



/*-----------------------------------------------------
Top page
-----------------------------------------------------*/
/* main visual */
.mv {
  position: relative;
  width: 100%;
  height: 680px;
  margin-top: 140px;
  padding: 0;
  background: url(../img/img-top-mv_01.png) top center / cover no-repeat;
}

.top-mv-contents {
  position: absolute;
  right: 0;
  bottom: 80px;
  z-index: 5;
  padding: 30px;
  background-color: rgba(var(--color-primary-rgb), 0.9);
}

.top-mv-contents p {
  font-size: 2.2rem;
  color: #ffffff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.14);
}

.top-mv-contents p.sub-catch {
  display: inline-block;
}

.top-mv-contents p span {
  margin-right: 6px;
  font-size: 3.2rem;
  font-weight: 700;
}


@media (max-width: 768px) {
  .mv {
    height: 480px;
    margin-top: 80px;
  }

  .top-mv-contents {
    bottom: 30px;
    padding: 10px 20px;
  }

  .top-mv-contents p {
    font-size: 1.6rem;
  }

  .top-mv-contents p span {
    margin-right: 0;
    font-size: 2.0rem;
  }

  .mv img {
    width: 100%;
  }
}



/* pickup */
.pickup-area {
  position: relative;
  padding: 60px 0;
  border-bottom: solid 1px #dddede;
}

.pickup-contents {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.pickup-box {
  position: relative;
  width: calc(100% / 3 - 20px);
  margin-right: 30px;
}

.pickup-box:nth-child(3) {
  margin-right: 0;
}

.pickup-img {
  position: relative;
  width: 100%;
  padding-top: 61%;
  border: solid 1px #dddede;
}

.pickup-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}

.pickup-box ul {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 8px 0 4px;
}

.pickup-box li {
  vertical-align: middle;
}

.pickup-box p a:hover {
  color: #7ba4a8;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}


@media (max-width: 768px) {
  .pickup-contents {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .pickup-box,
  .pickup-box img {
    width: 100%;
  }

  .pickup-box {
    margin-bottom: 50px;
  }

  .pickup-box:last-child {
    margin-bottom: 0;
  }
}



/* News */
.news-area {
  position: relative;
  padding: 60px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news {
  flex: 1;
  padding-right: 32px;
}

.news-fb {
  width: 320px;
}

@media (max-width: 768px) {
  .news-area {
    padding: 30px 0 80px;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .news,
  .news-fb {
    width: 100%;
  }

  .news {
    margin-bottom: 40px;
    padding: 0 0 40px;
    border-bottom: solid 1px #dddede;
  }
}


/* News tab */
.tab-area {
  position: relative;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.tab-label {
  position: relative;
  width: 105px;
  height: 40px;
  border: solid 1px var(--color-primary);
  margin: 0 8px 20px 0;
  padding: 3px 12px;
  order: -1;
  text-align: center;
  color: var(--color-primary);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  cursor: pointer;
}

.tab-label:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.tab-content {
  width: 100%;
  display: none;
}

.tab-switch:checked+.tab-label {
  background-color: var(--color-primary);
  color: #ffffff;
}

.tab-switch:checked+.tab-label:after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  content: "";
  border-style: solid;
  border-color: var(--color-primary) transparent transparent transparent;
  border-width: 12px 8px 0 8px;
}

.tab-switch:checked+.tab-label+.tab-content {
  display: block;
}

.tab-switch {
  display: none;
}

.news-box {
  position: relative;
  width: 100%;
  height: 80px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 20px;
  border: solid 1px #dddede;
}

.news-date {
  width: 130px;
}

.news-ttl {
  flex: 1;
  line-height: 1.5;
}

.news-ttl a:hover {
  color: #7ba4a8;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.view-list a {
  position: absolute;
  right: 0;
  font-weight: 500;
  text-align: right;
}

a.read-more:after,
.view-list a:after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 16px;
  vertical-align: middle;
  margin-left: 8px;
  background: url(../img/icon-link-arrow.svg);
  background-size: 12px 16px;
  background-repeat: no-repeat;
}

.interview-area .view-list a,
.column-area .view-list a {
  top: 40px;
}

.due-date {
  position: absolute;
  top: 6px;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #f39800;
}

.due-date span {
  margin-left: 6px;
  font-size: 1.0rem;
}

.event-status {
  position: absolute;
  bottom: 4px;
  font-size: 1.1rem;
}

.event-status_accept {
  font-weight: 700;
  color: #f39800;
}

.event-status_close {
  color: var(--color-primary);
}

.event-status:before {
  position: relative;
  content: '[';
  display: inline-block;
  margin-right: 2px;
}

.event-status:after {
  position: relative;
  content: ']';
  display: inline-block;
  margin-left: 2px;
}


@media (max-width: 768px) {
  .tab-label {
    position: relative;
    width: calc(100% / 4);
    height: auto;
    margin: 0 0 20px 0;
    padding: 10px 3px;
    font-size: 1.4rem;
    line-height: 1.2;
    vertical-align: middle;
    border-collapse: collapse;
  }

  .news-box {
    height: auto;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 10px 14px 14px;
  }

  .news-date,
  .news-ttl {
    width: 100%;
  }

  .due-date {
    position: absolute;
    top: 14px;
    right: 14px;
  }

  .event-status {
    position: absolute;
    top: 16px;
    left: 112px;
  }

  .interview-area .view-list a,
  .column-area .view-list a {
    top: 18px;
    font-size: 1.4rem;
  }

}


/* Activities */
.activities {
  width: 100%;
  padding: 60px 3% 80px;
  background: url(../img/bg-activity.jpg) top center / cover no-repeat;
}

.activities h1 {
  color: #ffffff;
  text-shadow: 0px 3px 6px #535353;
}

.activities h1 span {
  display: inline;
  margin-left: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  vertical-align: middle;
}

.act {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}

.act-box {
  position: relative;
  width: calc(100%/3);
  height: auto;
  text-align: center;
}

.act-box svg {
  width: 72px;
  height: 72px;
  margin-top: 30px;
  fill: var(--color-primary-light);
}

.act-link {
  position: relative;
  border-right: solid 1px #dddede;
  border-bottom: solid 1px #dddede;
  background-color: #ffffff;
}

.act-link:hover {
  outline: solid 8px #7ba4a8;
  outline-offset: -8px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.act-link a {
  display: block;
  position: relative;
  padding: 40px;
}

.act-link h2 {
  margin-bottom: 10px;
  font-family: 'Bellota Text', cursive;
  font-size: 2.3rem;
  font-weight: 700;
  color: #7ba4a8;
}

.act-link h2 span {
  display: block;
  margin-top: -4px;
  font-size: 1.3rem;
  color: #000000;
}

.act-link p {
  font-size: 1.4rem;
  line-height: 1.5;
}

.act-link img {
  width: 72px;
  height: auto;
  margin-top: 30px;
}

.dei-mark {
  background-color: #ebebeb;
}


@media (max-width: 768px) {
  .activities h1 span {
    display: block;
    margin-left: 0;
    font-size: 1.6rem;
  }

  .act {
    width: 100%;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .act-box {
    width: 100%;
    text-align: left;
  }
  .act-box svg {
    position: absolute;
    right: 20px;
    width:48px;
    top: 50%;
    fill: var(--color-primary-light);
    transform: translateY(-100%);
  }

  .act-link img {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 48px;
  }

  .act-link a {
    padding: 20px;
  }

  .dei-mark {
    display: none;
  }
}


/* Interview Area */
.interview-list {
  position: relative;
  width: 100%;
  height: 160px;
  margin: 0 auto 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  background-color: #ffffff;
}

.interview-img {
  position: relative;
  width: 259px;
  height: 160px;
}

.interview-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}

.interview-contents {
  position: relative;
  flex: 1;
  padding: 12px 20px;
}

/* Column Area */
.column-list {
  position: relative;
  width: 100%;
  height: 160px;
  margin: 0 auto 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  background-color: #ffffff;
}

.column-img {
  position: relative;
  width: 259px;
  height: 160px;
}

.column-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}

.column-contents {
  position: relative;
  flex: 1;
  padding: 12px 20px;
}

h3.title {
  margin: 0 0 10px;
  padding: 0;
  font-size: 2.1rem;
  line-height: 1.5;
}

h3.title:before {
  display: none;
}

p.lead {
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .interview-list {
    height: auto;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .interview-img {
    width: 100%;
    padding-top: 61%;
    border-bottom: solid 1px #dddede;
  }

  .interview-contents {
    padding: 20px;
  }
  .column-list {
    height: auto;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .column-img {
    width: 100%;
    padding-top: 61%;
    border-bottom: solid 1px #dddede;
  }

  .column-contents {
    padding: 20px;
  }
}


/* Banner Area */
.banner-area {
  position: relative;
  width: 94%;
  max-width: 1024px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner-area li {
  width: 220px;
  margin: 10px 5px;
}

.banner-area li img {
  box-shadow: 0 3px 9px -2px rgba(112, 112, 112, 0.16);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.banner-area li img:hover {
  box-shadow: 0 3px 9px -2px rgba(123, 164, 168, 1.0);
}

@media (max-width: 768px) {
  .banner-area {
    justify-content: space-between;
  }

  .banner-area li {
    width: calc(100% / 2 - 5px);
    margin: 0;
  }
}



/*-----------------------------------------------------
Sub page
-----------------------------------------------------*/
.sub-mv {
  position: relative;
  width: 100%;
  height: 240px;
  margin-top: 140px;
  padding: 0;
  background: url(../img/img-sub-mv_01.webp) top center / cover no-repeat;
}

.page-title {
  position: relative;
  width: 94%;
  max-width: 1024px;
  margin: 0 auto;
}

.sub-mv h1 {
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.14);
}

.sub-mv h1 span {
  font-size: 1.8rem;
  color: #ffffff;
}


/* contact information [short code] */
.contact-info {
  position: relative;
  margin: 16px 0;
  padding: 16px;
  border: solid 1px #dddede;
}

.contact-info span.material-icons {
  margin-right: 8px;
  font-size: 2.1rem;
  color: var(--color-primary);
  vertical-align: middle;
}


/* breadcrumbs */
.breadcrumbs {
  padding: 10px 0;
  font-size: 1.4rem;
}

.breadcrumbs a {
  font-weight: 700;
  color: #7ba4a8;
}

.breadcrumbs .material-icons {
  margin: 0 6px 2px;
  line-height: normal;
  vertical-align: middle;
}


/* page sprit */
.pagesprit {
  margin: 40px 0 0;
}

.pagesprit a {
  border-bottom: none !important;
}

.pagesprit span.pg {
  margin: 0 8px 0 0;
  font-family: 'Bellota Text', cursive;
  font-weight: 700;
}

.pagesprit span.pagesprit-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 4px;
  border: 1px solid #dddede;
  font-family: 'Bellota Text', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: #7ba4a8;
}

.pagesprit span.current span {
  border: 1px solid #7ba4a8;
  background-color: #7ba4a8;
  cursor: default;
  pointer-events: none;
  color: #ffffff;
}




@media (max-width: 768px) {
  .sub-mv {
    position: relative;
    height: 160px;
    margin-top: 64px;
  }
}

ariticle.column-article p {
  color: #636363;
  line-height: 2rem;
}

/*-----------------------------------------------------
Index page
-----------------------------------------------------*/
.corner-index {
  position: relative;
  margin: 48px 0 0;
}

.corner-index ul {
  position: relative;
  width: 100%;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
}

.corner-index li {
  width: calc(100% / 3 - 20px);
  height: 97px;
  margin: 0 0 20px 0;
}
.corner-index li a {
  padding: 0 30px;
  font-weight: 500;
}


@media (max-width: 768px) {
  .corner-index ul {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .corner-index li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 10px;
  }

  .corner-index li a {
    padding: 0 20px;
  }
}



/*-----------------------------------------------------
News
-----------------------------------------------------*/
.news-list {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 10px;
  margin-bottom: 20px;
  border: solid 1px #dddede;
}

.news-img {
  width: 190px;
  height: 119px;
  overflow: hidden;
  margin-right: 20px;
  border: solid 1px #dddede;

}

.news-img img {
  width: 100%;
  height: 117px;
  object-fit: cover;
}

.news-contents {
  position: relative;
  -webkit-flex: 1;
  flex: 1;
}

ul.news-info {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin: 0 0 4px;
}

ul.news-info li {
  margin: 0 24px 0 0;
  padding-left: 0;
  text-indent: 0;
  vertical-align: middle;
}

ul.news-info li .event-status {
  font-size: 1.4rem;
}


.news-contents p {
  line-height: 1.5;
}

ul.tag-area {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 14px 0 0;
}

ul.tag-area li {
  position: relative;
  margin: 0 10px 6px 0;
  padding-left: 0;
  text-indent: 0;
}

ul.tag-area li:before {
  display: none;
}

.article-img {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  padding-top: 60.5%;
  border: solid 1px #dddede;
}

.article-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}

.article-info {
  margin-bottom: 24px;
}

.article-info span {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .news-list {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 12px;
  }

  .news-img {
    width: 100%;
    height: calc(100vw * 0.54);
    margin: 0 0 14px;
  }

  .news-list img {
    width: 100%;
    height: calc(100vw * 0.54);
  }

  .news-contents,
  ul.news-info {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  ul.news-info li {
    margin: 0;
  }

  ul.news-info li:nth-child(3) {
    display: block;
    width: 100%;
  }

  ul.news-info li .event-status {
    position: relative;
    top: auto;
    left: auto;
  }
}

/* Page Navigation */
.page-nav {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 64px;
}

.page-nav-prev,
.page-nav-next {
  width: calc(100%/2);
}

.page-nav-next {
  text-align: right;
}

.page-nav-prev img {
  margin-right: 8px;
}

.page-nav-next img {
  margin-left: 8px;
}

.page-nav a {
  display: block;
  width: 100%;
  padding: 8px 16px;
  border: solid 1px #dddede;
}

.page-nav a:hover {
  outline: solid 4px #7ba4a8;
  outline-offset: -4px;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
}


/*-----------------------------------------------------
Category , Archives , Tags
-----------------------------------------------------*/
/* Pagination */
ul.pagination {
  margin: 60px 0 0;
}

ul.pagination li:first-of-type a {
  border-left-width: 1px;
}

ul.pagination {
  display: flex;
  flex-wrap: wrap;
}

ul.pagination li {
  padding-left: 0;
  margin: 0;
  text-indent: 0;
}

ul.pagination li:before {
  display: none;
}

ul.pagination li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-right: 6px;
  border: 1px solid #dddede;
  font-family: 'Bellota Text', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: #7ba4a8;
}

ul.pagination li.current a {
  border: 1px solid #7ba4a8;
  background-color: #7ba4a8;
  cursor: default;
  pointer-events: none;
  color: #ffffff;
}


/*-----------------------------------------------------
Search
-----------------------------------------------------*/
.search-list h4 {
  margin: 0;
}


/*-----------------------------------------------------
FAQ
-----------------------------------------------------*/
.qa-item {
  position: relative;
  display: block;
  margin-bottom: 2px;
  background-color: rgba(221, 222, 222, 0.3);
  border-bottom: solid 6px rgba(221, 222, 222, 0.3);
  cursor: pointer;
}

.qa-item:after {
  position: absolute;
  right: 10px;
  top: 18px;
  content: '';
  width: 12px;
  height: 16px;
  margin-left: 8px;
  background: url(../img/icon-link-arrow.svg);
}

.faq-item {
  position: relative;
  display: block;
  margin-bottom: 4px;

}

.faq-title {
  position: relative;
  display: block;
  padding: 10px 34px 10px 14px;
  background-color: rgba(221, 222, 222, 0.3);
  border-bottom: solid 6px rgba(221, 222, 222, 0.3);
  cursor: pointer;
}

.faq-title:after {
  position: absolute;
  right: 14px;
  top: 18px;
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-arrow-down_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.faq-answer {
  display: none;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-right: solid 1px #dddede;
  border-left: solid 1px #dddede;
  border-bottom: solid 1px #dddede;
}


/*-----------------------------------------------------
Side bar
-----------------------------------------------------*/
.side h2 {
  margin-bottom: 20px;
  font-family: 'Bellota Text', cursive;
}

.side-pages,
.side-category,
.side-archives,
.side-tags {
  margin-bottom: 60px;
}

.side-archives ul,
.side-tags ul {
  position: relative;
  width: 100%;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Side Pages */
.side-pages li {
  width: 100%;
  height: auto;
  min-height: 54px;
  margin-bottom: 8px;
}

.side-pages a {
  padding: 10px 26px 10px 20px;
  line-height: 1.5;
}

/* Side category */
.side-category li {
  width: 100%;
  height: 54px;
  margin-bottom: 8px;
}

.side-category a {
  padding: 0 20px;
}

/* Side archives */
.side-archives li {
  width: calc(100% / 3 - 8px);
  height: 54px;
  margin: 0 8px 8px 0;
}

.side-archives li:nth-child(3n) {
  margin-right: 0;
}

.side-archives a {
  padding: 0 16px;
}


/* Side tags */
.side-tags li {
  margin: 0 10px 6px 0;
}

/* Side Banner */
.side-banner li {
  margin: 0 0 10px 0;
}

.side-banner img {
  border: 3px solid #ebebeb;
}

@media (max-width: 768px) {

  .side-pages,
  .side-category,
  .side-archives,
  .side-tags {
    margin-bottom: 30px;
  }
}


/*-----------------------------------------------------
Staff
-----------------------------------------------------*/
.staff-box {
  position: relative;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 30px;
  border: solid 1px #dddede;
}

.staff-box-left {
  position: relative;
  width: 210px;
  margin-right: 40px;
}

.staff-box-right {
  flex: 1;
}

.staff-box h3 {
  margin: 8px 0 4px;
  padding-left: 0;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #000000;
}

.staff-box h3:before {
  display: none;
}

.staff-box h4 {
  margin: 30px 0 6px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.staff-box h4:first-child {
  margin-top: 0;
}

.staff-position {
  font-size: 1.2rem;
}

.staff-box-left img {
  width: 210px;
  height: 210px;
  object-fit: cover;
}


@media (max-width: 768px) {
  .staff-box {
    padding: 30px 20px;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .staff-box img {
    width: 100%;
    height: auto;
  }

  .staff-box-left,
  .staff-box-right {
    width: 100%;
    margin-right: 0;
  }

  .staff-box-left {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #dddede;
  }
}


/*-----------------------------------------------------
Pickup Activities
-----------------------------------------------------*/
.pickup-act-thumbnail {
  margin-bottom: 40px;
}




/*-----------------------------------------------------
Access
-----------------------------------------------------*/
@media (max-width: 768px) {
  .main article iframe {
    width: 100%;
  }
}



/*-----------------------------------------------------
Contact
-----------------------------------------------------*/
/* ContactForm7 */
.wpcf7-validation-errors {
  border: none !important;
  font-size: 1.6rem;
}

.wpcf7-mail-sent-ok {
  border: none !important;
}

.wpcf7-submit {
  text-align: center;
}

.wpcf7-response-output {
  padding: 20px !important;
  margin: 0 !important;
}

.wpcf7-validation-errors {
  position: relative;
  margin: 30px 0 !important;
  padding: 0.5em 0.75em;
  background-color: #f0f0f0;
  border-radius: 4px;
  color: #ffa500 !important;
}

.wpcf7-validation-errors::after {
  position: absolute;
  bottom: 100%;
  left: 30px;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom: 15px solid #f0f0f0;
}

span.wpcf7-not-valid-tip {
  color: #ffa500 !important;
}

input[type=submit] {
  position: relative;
  width: 180px;
  height: 50px;
  margin: 20px auto;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #7ba4a8;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #7ba4a8;
  transition: all 0.5s ease;
  color: #ffffff;
}

input[type=submit]:hover {
  background-color: #ffffff;
  color: #7ba4a8;
}



@media (max-width: 768px) {
  .contact-detail {
    margin: 60px auto 0;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .contact-box {
    width: 100%;
  }
}




/*-----------------------------------------------------
common
-----------------------------------------------------*/
/* link box */
li.link-box {
  position: relative;
  display: inline-flex;
  background-color: rgba(221, 222, 222, 0.3);
  border-bottom: solid 6px rgba(221, 222, 222, 0.3);
}

li.link-box:after {
  position: absolute;
  right: 10px;
  top: calc(50% - 8px);
  content: '';
  width: 12px;
  height: 16px;
  margin-left: 8px;
  background: url(../img/icon-link-arrow.svg);
}

li.link-box:hover {
  border-bottom: solid 6px #7ba4a8;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

li.link-box a {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 500;
}

/* category icon */
.icon-cat {
  display: block;
  width: 92px;
  height: 20px;
  background-color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
}

.icon-cat a {
  display: block;
  border-bottom: none;
}

a.icon-tag {
  position: relative;
  display: block;
  padding: 0 6px;
  border: solid 1px #7ba4a8;
  font-size: 1.2rem;
  text-align: center;
  color: #7ba4a8;
}

a.icon-tag:before {
  display: inline-block;
  content: '';
  width: 12px;
  height: 14px;
  margin-right: 4px;
  background: url(../img/icon-tag.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/*


/* Update */
.update-ymd {
  font-family: 'Bellota Text', cursive;
  font-size: 1.8rem;
  font-weight: 400;
}


/* button */
.btn {
  position: relative;
  display: block;
  width: 320px;
  height: 68px;
  margin: 0 auto 0;
  border: solid 2px #89b0b3;
  transition: 0.5s;
}

a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
}

.btn-link {
  background-color: #ffffff;
}

a.btn-link {
  color: #89b0b3;
}

a.btn-link:after {
  position: absolute;
  right: 20px;
  content: "";
  background: url(../img/img-link-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 10px;
  margin-left: 8px;
  transition: 0.5s;
}

a.btn-link:hover:after {
  right: 10px;
}

.btn-submit {
  background-color: #89b0b3;
}


/* application form button */
.btn-block {
  display: block;
  width: 100%;
  border-radius: .3rem;
}

.btn-group-lg>.btn,
.btn-lg {
  border-radius: .3rem;
}

.btn-success {
  height: 48px;
  margin: 20px 0;
  color: #ffffff !important;
  background-color: #7ba4a8;
  border: solid 2px #7ba4a8 !important;
}

.btn-success:hover {
  color: #7ba4a8 !important;
  background-color: #ffffff;
}

.btn-secondary {
  width: 50%;
}

@media (max-width: 768px) {
  .btn {
    height: 50px;
    margin: 30px auto 0;
    line-height: 46px;
  }

  .btn-success {
    margin-top: 0;
  }

}


/* br */
.pc-br-none {
  display: none;
}

.sp-br-none {
  display: inline;
}

@media (max-width: 768px) {
  .pc-br-none {
    display: inline;
  }

  .sp-br-none {
    display: none;
  }
}

/* Card */
.card-holder {
  display: flex;
  flex-wrap: wrap;
}
.card {
  border: solid 1px #707070;
  opacity: 1;
  width: calc(100% / 2 - 10px);
  padding: 10px;
  margin: 3px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .card {
    width: 100%;
  }
}
.card-body {
  display: flex;
  flex-direction: column;
}
.card .card-title{
  text-align: left;
  font-size: 1.8rem;
}

.card .card-subtitle{
  color: #636363;
  font-weight: normal;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.card .card-text {
  color: #636363;
  line-height: 1.6;
  margin-bottom: 1.5rem;

}

.card .close-date {
  font-size: 1.8rem;
  text-decoration: underline;
  margin-bottom: 1.5rem;
}

.card .card-action {
  margin-bottom: 1rem;
}

.card .card-link-btn {
  display: inline-block;
  text-align: center;
  border: 1px solid transparent;
  padding: 0.5rem;
  min-width: 10rem;
  font-size: 1.8rem;
  background-color: #0069d9;
  color: #ffffff;
  border-radius: 0.25rem;
}


/*-----------------------------------------------------
footer
-----------------------------------------------------*/
footer {
  position: relative;
  background-color: #ffffff;
  border-top: solid 1px #dddede;
}

.footer-menu {
  position: relative;
  padding: 60px 0 20px;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-menu-row {
  position: relative;
  width: calc(100% / 4 - 20px);
}

a.menu-lv1,
a.menu-lv2 {
  display: block;
  margin-bottom: 14px;
  font-weight: 700;
}

a.menu-lv2 {
  font-size: 1.4rem;
  color: #7ba4a8;
}

.item-1 {
  margin-top: 42px;
}

.footer-menu-row ul {
  margin-bottom: 50px;
}

.footer-menu-row ul li {
  margin: 0 0 14px 1.3rem;
  padding-left: 6px;
  text-indent: -1.9rem;
  font-size: 1.3rem;
  line-height: 1.6;
}

.footer-menu-row ul li:before {
  margin-right: 6px;
  content: "\e15b";
  font-family: 'Material Icons';
  font-size: 1.2rem;
  vertical-align: bottom;
}

.footer-menu-row a:hover {
  opacity: 0.5;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}


.footer-info {
  position: relative;
  padding: 30px 0;
  border-top: solid 1px #dddede;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-info img {
  width: 237px;
  height: 72px;
}

.footer-sub-menu {
  position: relative;
  margin-bottom: 16px;
}

.footer-sub-menu li {
  display: inline-block;
  margin-left: 50px;
  font-size: 1.4rem;
}

.footer-sub-menu li:first-child {
  margin-left: 0;
}


@media (max-width: 768px) {
  .footer-menu {
    display: none;
  }

  .footer-info {
    padding: 30px 0 60px;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-top: none;
  }

  .footer-info img {
    width: 160px;
    height: auto;
    margin: 0 auto 30px;
  }

  .footer-sub-menu {
    position: relative;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .footer-sub-menu li {
    margin-left: 0;
    font-size: 1.3rem;
  }

  .footer-sub-menu li:first-child {
    margin-left: 0;
  }

  #qtranslate-chooser {
    left: 50%;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
  }
}


/* copyright */
p.footer-copyright {
  width: 100%;
  padding: 9px 0;
  background-color: #000000;
  font-family: 'Bellota Text', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.0;
}

.footer-copyright span {
  margin-right: 4px;
  font-size: 1.2rem;
  vertical-align: bottom;
}

@media (max-width: 768px) {
  p.footer-copyright {
    line-height: 1.4;
  }
}