@charset "UTF-8";

/* Scss Document */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

em {
  font-style: normal;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img,
svg {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
}

a img {
  border: none;
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* Scss Document */
@font-face {
  font-family: 'keyfont';
  src: url("../fonts/Akrobat-Bold.ttf") format("truetype");
  src: url("../fonts/Akrobat-Bold.woff") format("woff");
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeZoomout {
  from {
    opacity: 0;
    transform: scale(2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes fadeZoomout {
  from {
    opacity: 0;
    transform: scale(2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeZoomin {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes fadeZoomin {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* General Style
/* --------------------------------------------------- */
a,
a:visited,
a:active {
  color: #00afcc;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

html {
  font-size: 62.5%;
  /* 16pxに625%を掛けると100pxになる */
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  color: #111;
  background: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1.2em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}

@media print,
screen and (min-width: 769px) {
  body {
    font-size: 1.6em;
  }
}

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

/* レスポンシブルimages */
.rpimg {
  width: 100%;
  height: auto;
}

/* header                                         
/* --------------------------------------------------- */
#header {
  border-top: 5px solid #00afcc;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: white;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#header.hide {
  -webkit-transform: translateY(-105px);
  transform: translateY(-105px);
}

#header .inner {
  z-index: 999;
  text-align: left;
  position: relative;
  padding: 0 10px;
  max-width: 1400px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  height: 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 0 auto;
}

@media print,
screen and (min-width: 1400px) {
  #header .inner {
    height: 100px;
  }
}

#header .logo h1,
#header .logo a {
  height: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin-right: 10px;
}

@media print,
screen and (max-width: 1399px) {

  #header .logo h1,
  #header .logo a {
    width: 70px;
  }
}

@media print,
screen and (min-width: 1400px) {

  #header .logo h1,
  #header .logo a {
    height: 100px;
  }
}

#header .logo h1 img,
#header .logo a img {
  image-rendering: -webkit-optimize-contrast;
}

#header .logo2 {
  width: 180px;
}

@media print,
screen and (min-width: 1400px) {
  #header .logo2 {
    display: none;
  }
}

#header .logo2 img {
  image-rendering: -webkit-optimize-contrast;
}

/* Key common */
.keyCommon {
  padding-top: 65px;
  margin: 0 auto;
}

@media print,
screen and (min-width: 1400px) {
  .keyCommon {
    padding-top: 105px;
  }
}

@media print,
screen and (min-width: 769px) {
  .keyCommon {
    background: url("../img/common/key_common_basebg.jpg") no-repeat center bottom;
    background-size: 2000px;
  }
}

.keyCommon .inner {
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  max-width: 1000px;
  -webkit-box-align: center;
  align-items: center;
}

@media print,
screen and (max-width: 768px) {
  .keyCommon .inner {
    position: relative;
  }
}

@media print,
screen and (min-width: 769px) {
  .keyCommon .inner {
    height: 165px;
  }
}

@media print,
screen and (min-width: 769px) {
  .keyCommon .inner figure {
    display: none;
  }
}

.keyCommon .inner h1,
.keyCommon .inner .h1 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+10,000000+90,000000+100&0+0,0.45+10,0.45+90,0+100 */
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 10%, rgba(0, 0, 0, 0.45) 90%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 10%, rgba(0, 0, 0, 0.45) 90%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 10%, rgba(0, 0, 0, 0.45) 90%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=1);
  /* IE6-9 */
}

@media print,
screen and (max-width: 768px) {

  .keyCommon .inner h1,
  .keyCommon .inner .h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0.3em 1.5em 0.3em;
    width: 100%;
    max-width: 12em;
  }

  #bio .keyCommon .inner h1,
  #bio .keyCommon .inner .h1 {
    max-width: inherit;
  }
}

@media print,
screen and (min-width: 769px) {

  .keyCommon .inner h1,
  .keyCommon .inner .h1 {
    font-size: 3rem;
    min-width: 360px;
    text-align: left;
    padding: 0 1.5em 0.1em;
    margin-left: -1.5em;
  }
}

/* contents                                           
/* --------------------------------------------------- */
.main-contents {
  position: relative;
  word-wrap: break-word;
  overflow: hidden;
}

.main-contents .bgPink {
  background: #fffafa;
}

.main-contents .main-inner {
  padding: 2.5em 4%;
  margin: 0 auto;
  line-height: 1.6;
}

@media print,
screen and (min-width: 769px) {
  .main-contents .main-inner {
    max-width: 1020px;
    padding: 3.5em 10px;
    margin: 0 auto;
  }
}

.main-contents section {
  text-align: left;
}

.main-contents section+section {
  margin-top: 5em;
}

.main-contents article+article {
  margin-top: 2em;
}

@media print,
screen and (min-width: 769px) {
  .main-contents article+article {
    padding: 3em 10px;
  }
}

.main-contents h1,
.main-contents h2,
.main-contents h3,
.main-contents h4,
.main-contents h5,
.main-contents h6 {
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
}

.main-contents h1::before,
.main-contents h2::before,
.main-contents h3::before,
.main-contents h4::before,
.main-contents h5::before,
.main-contents h6::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
  content: "";
}

.main-contents p,
.main-contents ul,
.main-contents ol {
  line-height: 1.6;
}

.main-contents a {
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.main-contents a img {
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.main-contents a:hover img {
  opacity: 0.7;
}

/* パンくずナビ */
.breadcrumb {
  padding: 0.7em 4% 0;
  text-align: left;
  max-width: 1020px;
  margin: 0 auto;
}

@media print,
screen and (min-width: 769px) {
  .breadcrumb {
    padding: 0.7em 10px 0;
  }
}

.breadcrumb p {
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 769px) {
  .breadcrumb p {
    font-size: 1.4rem;
  }
}

.breadcrumb a {
  color: #111;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* footer                                           
/* --------------------------------------------------- */
#footer {
  width: 100%;
  background: #efefef;
  margin-top: 0em;
}

#footer .inner {
  padding: 1.5em 4%;
  margin: 0 auto;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}

@media print,
screen and (min-width: 769px) {
  #footer .inner {
    max-width: 1020px;
    padding: 1.5em 10px;
    margin: 0 auto;
  }
}

#footer .inner a {
  color: #000;
}

#footer ul {
  line-height: 1.3;
  margin-top: 0.5em;
}

#footer li {
  display: inline-block;
}

#footer li a {
  position: relative;
  padding: 0 0.5em 0.1em;
}

@media print,
screen and (max-width: 768px) {
  #footer li a {
    font-size: 1.2rem;
  }
}

#footer li a:before {
  content: "";
  height: 12px;
  width: 1px;
  background-color: #000;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}

#footer li:last-child a:after {
  content: "";
  height: 12px;
  width: 1px;
  background-color: #000;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6px;
}

#footer .logo {
  font-weight: 500;
  margin-bottom: 0.5em;
}

#footer small {
  background-color: #efefef;
  padding: 2em 4%;
  display: block;
}

/* page top */
#page-top {
  display: block;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  right: 0;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 0;
  /*&:after {
  	content: "";
  	display: block;
  	width: 7px;
  	height: 7px;
  	border: 1px solid;
  	border-color: #fff #fff transparent transparent;
  	transform: rotate(-45deg);
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	margin-top: -3px;
  	margin-left: -3px;
  }*/
}

@media print,
screen and (max-width: 768px) {
  #page-top {
    display: none;
  }
}

#page-top.show {
  opacity: 1;
}

/* NAV */
#g-nav {
  color: #000;
  text-align: center;
}

@media print,
screen and (max-width: 1399px) {
  #g-nav {
    background: white;
    padding: 0;
    position: fixed;
    z-index: 99;
    top: 60px;
    left: -120%;
    width: 100%;
    height: 100vh;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    border-top: 1px solid #ccc;
  }
}

#g-nav ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

@media print,
screen and (max-width: 1399px) {
  #g-nav ul {
    background-color: #fff;
  }
}

@media print,
screen and (min-width: 1400px) {
  #g-nav ul {
    margin-left: 40px;
  }
}

#g-nav ul li {
  line-height: 1.4;
  padding: 10px 4%;
}

@media print,
screen and (min-width: 1400px) {
  #g-nav ul li {
    padding: 0 30px;
  }
}

#g-nav ul li.ttl {
  padding: 0;
}

@media print,
screen and (max-width: 1399px) {
  #g-nav ul li.ttl {
    display: none;
  }
}

#g-nav ul li a img {
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#g-nav ul li a:hover img {
  opacity: 0.6;
}

#g-nav ul li.english a {
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: inline-block;
  width: 70px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 0 0 6px 6px;
  background-color: #111;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}

@media print,
screen and (min-width: 1400px) {
  #g-nav ul li.english a {
    margin: auto;
    position: absolute;
    top: 0;
    right: 5px;
  }
}

@media print,
screen and (max-width: 1399px) {
  #g-nav ul li.english a {
    background-color: #000;
    width: 300px;
    margin: 0 auto;
    height: 44px;
    line-height: 44px;
    border-radius: 6px;
  }

  #g-nav ul li.english a::after {
    content: "English";
    font-family: Arial, Helvetica, "sans-serif";
  }
}

#g-nav ul li.english a:hover {
  background-color: #00afcc;
}

#g-nav ul li.english a:after {
  display: none;
}

@media print,
screen and (max-width: 1399px) {
  #g-nav ul {
    display: block;
  }
}

@media print,
screen and (max-width: 1399px) {
  #g-nav.panelactive {
    left: 0;
  }

  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 60px;
  }
}

/* ハンバーガーメニューボタン */
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.openbtn span {
  display: inline-block;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: absolute;
  left: 10px;
  height: 4px;
  background-color: #00afcc;
  width: 20px;
}

.openbtn span:nth-of-type(1) {
  top: 10px;
}

.openbtn span:nth-of-type(2) {
  top: 18px;
}

.openbtn span:nth-of-type(3) {
  top: 26px;
}

.openbtn.active span:nth-of-type(1) {
  top: 10px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 20px;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 22px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 20px;
}

@media print,
screen and (min-width: 1400px) {
  .openbtn {
    top: 25px;
  }
}

@media print,
screen and (min-width: 1400px) {
  .openbtn {
    display: none;
  }
}

/* サブメニュートグルボタン */
.child-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  height: 44px;
  width: 44px;
  background: #eaf1f4;
  display: block;
  cursor: pointer;
}

@media print,
screen and (max-width: 768px) {
  .child-btn {
    height: 41px;
    width: 44px;
  }
}

.child-btn:before,
.child-btn:after {
  content: '';
  height: 2px;
  width: 16px;
  display: block;
  background: #00afcc;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -8px;
  -moz-transition: .3s;
  transition: .3s;
}

.child-btn:after {
  height: 16px;
  width: 2px;
  margin: -8px 0 0 -1px;
}

.child-btn.openMenu:before {
  display: none;
}

.child-btn.openMenu:after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

li li .child-btn,
li li .child-btn {
  background: #fff;
}

.close-btn {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin: 20px auto;
  position: relative;
  cursor: pointer;
  border-bottom: none;
}

.close-btn:before,
.close-btn:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  margin: -8% 0 0 -42%;
  background: #00afcc;
}

.close-btn:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.close-btn:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media print,
screen and (min-width: 1400px) {
  .close-btn {
    display: none;
  }
}

/* Layout                                           
/* --------------------------------------------------- */
/* common */
.flex {
  display: -webkit-flex;
  display: flex;
}

@media print,
screen and (max-width: 768px) {
  .flex.spb {
    display: block;
  }
}

.flex:not(:last-child) {
  margin-right: 2em;
}

@media print,
screen and (max-width: 768px) {
  .flex:not(:last-child) {
    margin: 0 0 2em;
  }
}

.flex-sb {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex-vm {
  -webkit-box-align: center;
  align-items: center;
}

@media print,
screen and (max-width: 768px) {
  .flexTxtImg {
    text-align: center;
  }
}

@media print,
screen and (min-width: 769px) {
  .flexTxtImg {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

.flexTxtImg>.txt {
  margin-bottom: 2em;
}

@media print,
screen and (max-width: 768px) {
  .flexTxtImg>.txt {
    text-align: left;
  }
}

@media print,
screen and (min-width: 769px) {
  .flexTxtImg>.txt {
    margin-bottom: 0;
  }
}

.flexTxtImg>.txt.flex1 {
  -webkit-box-flex: 1;
  flex: 1;
}

.flexTxtImg>figure {
  text-align: center;
}

@media print,
screen and (max-width: 768px) {
  .flexTxtImg>figure {
    display: block;
    margin: 0 auto 1em;
  }
}

@media print,
screen and (min-width: 769px) {
  .flexTxtImg>figure {
    margin-left: 4%;
    flex-basis: 347px;
  }
}

.flexTxtImg.rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

@media print,
screen and (min-width: 769px) {
  .flexTxtImg.rr>figure {
    margin: 0 6.862745098039216% 0 0;
  }
}

/* Theme */
.themePageLink {
  margin-top: 3em;
}

@media print,
screen and (min-width: 769px) {
  .themePageLink {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

.themePageLink a {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  text-align: center;
  text-decoration: none;
  color: #000;
  border: 1px solid #dcdcdc;
  position: relative;
}

@media print,
screen and (max-width: 768px) {
  .themePageLink a {
    padding: 2.5em 0 2em;
    min-height: 5em;
    font-size: 1.2rem;
    margin-top: 5px;
  }
}

@media print,
screen and (min-width: 769px) {
  .themePageLink a {
    padding: 30px 0;
    width: 22%;
    min-height: 150px;
    font-size: 1.5rem;
  }
}

.themePageLink a i {
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media print,
screen and (min-width: 769px) {
  .themePageLink a i {
    font-size: 2.2rem;
    top: 10px;
  }
}

.themePageLink a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -3px;
}

.themePageLink a:hover::before {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.themePageLink a:hover {
  color: #fff;
  background-color: #00afcc;
  border: 1px solid #00afcc;
}

.memberPic {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.memberPic figure {
  width: 50%;
  text-align: right;
}

.memberPic .txt {
  width: 50%;
  padding-left: 1em;
}

.memberPic .txt em {
  text-indent: -0.5em;
  display: inline-block;
}

.memberPic .txt .name {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.4;
  position: relative;
  padding-bottom: 0;
}

.memberPic .txt .name::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media print,
screen and (min-width: 769px) {
  .memberPic .txt .name {
    font-size: 2.2rem;
  }
}

.memberPic .txt .nameEn {
  display: inline-block;
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 769px) {
  .memberPic .txt .nameEn {
    font-size: 1.4rem;
  }
}

.memberPic2 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}

@media print,
screen and (max-width: 768px) {
  .memberPic2 {
    -webkit-box-pack: center;
    justify-content: center;
  }
}

.memberPic2 figure {
  width: 31.33%;
  text-align: center;
}

@media print,
screen and (max-width: 768px) {
  .memberPic2 figure {
    margin: 0 1% 1.5em;
  }
}

@media print,
screen and (min-width: 769px) {
  .memberPic2 figure {
    width: 17%;
  }
}

@media print,
screen and (max-width: 768px) {
  .memberPic2 figcaption {
    font-size: 1.2rem;
  }
}

.memberPic2 a {
  color: #000;
}

#paper p {
  margin: 0 0 1em;
}

#paper .main-contents em,
#theme .main-contents em {
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
}

#pageLink a {
  color: #000;
}

#english .breadcrumb {
  display: none;
}

/* HOME */
.keyV {
  background-color: #00afcc;
  padding-top: 65px;
}

@media print,
screen and (min-width: 1400px) {
  .keyV {
    padding-top: 105px;
  }
}

.hTop {
  text-align: center;
  margin-bottom: 2em;
}

.hTop::before {
  display: none !important;
}

.topNews {
  margin-bottom: 2em;
}

@media print,
screen and (min-width: 769px) {

  .topNews dt,
  .topNews dd {
    padding: 0.8em 0;
  }

  .topNews dt:first-of-type,
  .topNews dd:first-of-type {
    padding-top: 0;
  }
}

@media print,
screen and (min-width: 769px) {
  .topNews dt {
    float: left;
  }
}

@media print,
screen and (max-width: 768px) {
  .topNews dt {
    padding-top: 1em;
  }

  .topNews dt:first-of-type {
    padding-top: 0;
  }
}

.topNews dd {
  border-bottom: 1px solid #c8c8c8;
}

/* 新着情報のアンダーライン色 */
@media print,
screen and (min-width: 769px) {
  .topNews dd {
    padding-left: 8em;
  }
}

.topNews dd:last-of-type {
  border-bottom: 1px solid #000000;
}

/* 新着情報のアンダーライン色（一番下） */
@media print,
screen and (max-width: 768px) {
  .topNews dd {
    padding-bottom: 1em;
  }
}

/* 更新情報をスクロール可能にする（ここから）
.topNews dl {
  max-height: 400px;
  /* 表示領域の高さ制限（お好みで調整）
  overflow-y: auto;
  /* 縦方向にスクロールを表示
  padding-left: 1em;
  /* 必要なら左の余白
  border: 3px solid #00afcc;
  padding: 0.5em 1em;
  border-radius: 0px;
  /* 角を少し丸める（お好みで） 
}

更新情報をスクロール可能にする（ここまで） */

.topConcept {
  text-align: center !important;
}

.topConcept figure {
  margin-bottom: 2em;
}

@media print,
screen and (max-width: 768px) {
  .topConcept figure {
    max-width: 400px;
    margin: 0 auto 2em;
  }
}

@media print,
screen and (max-width: 768px) {
  .topConcept p {
    text-align: left;
  }
}

.topConcept p {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Parts                                         
/* --------------------------------------------------- */
/* タイトル */
.h01 {
  color: #fff;
  background-color: #00afcc;
  font-size: 1.8rem;
  font-weight: 500 !important;
  position: relative;
  padding: 0.5em 1em;
  margin-bottom: 1.5em;
  border-radius: 6px;
  overflow: visible !important;
}

@media print,
screen and (min-width: 769px) {
  .h01 {
    font-size: 2.2rem;
  }
}

.h01::before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: #00afcc transparent;
  border-width: 15px 10px 0 10px;
  bottom: -10px;
  left: 20px;
}

.h02 {
  font-weight: 500;
  margin-bottom: 1.6em;
  color: #fff;
  background-color: #333;
  line-height: 1;
  padding: 0.5em 1em 0.4em;
}

@media print,
screen and (min-width: 769px) {
  .h02 {
    font-size: 1.8rem;
  }
}

.h03 {
  margin-bottom: 0.3em;
  color: #fff;
  background-color: #4d4d4d;
  line-height: 1;
  padding: 0.5em 1em 0.4em;
  display: inline-block;
  font-weight: 400 !important;
}

.h04 {
  margin-bottom: 1em;
  font-size: 1.6rem;
}

@media print,
screen and (min-width: 769px) {
  .h04 {
    font-size: 2rem;
  }
}

@media print,
screen and (min-width: 769px) {
  .readTxt {
    font-size: 2rem;
  }
}

@media print,
screen and (max-width: 768px) {
  .readTxt2 {
    text-align: left;
  }
}

@media print,
screen and (min-width: 769px) {
  .readTxt2 {
    font-size: 1.8rem;
  }
}

/* Other */
.mt1 {
  margin-top: 1em !important;
}

.mt2 {
  margin-top: 2em !important;
}

.mt3 {
  margin-top: 3em !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 0.5em !important;
}

.mb10 {
  margin-bottom: 1em !important;
}

.mb15 {
  margin-bottom: 1.5em !important;
}

.mb20 {
  margin-bottom: 2em !important;
}

.mb30 {
  margin-bottom: 3em !important;
}

.mb40 {
  margin-bottom: 4em !important;
}

.mb50 {
  margin-bottom: 5em !important;
}

.ml1 {
  margin-left: 1em !important;
}

.ml2 {
  margin-left: 2em !important;
}

.ml3 {
  margin-left: 3em !important;
}

.mr1 {
  margin-right: 1em !important;
}

.mr2 {
  margin-right: 2em !important;
}

.mr3 {
  margin-right: 3em !important;
}

.pl1 {
  padding-left: 1em !important;
}

.pl2 {
  padding-left: 2em !important;
}

.pl3 {
  padding-left: 3em !important;
}

.pr1 {
  padding-right: 1em !important;
}

.pr2 {
  padding-right: 2em !important;
}

.pr3 {
  padding-right: 3em !important;
}

.font-bold {
  font-weight: 700 !important;
}

.ta-l {
  text-align: left !important;
}

.ta-r {
  text-align: right !important;
}

.ta-c {
  text-align: center !important;
}

.fsS {
  font-size: 88% !important;
}

/*16→14*/
.fsS2 {
  font-size: 74% !important;
}

/*16→12*/
.kc1 {
  color: #00afcc;
}

.italic {
  font-style: italic !important;
}

.txtIndent {
  text-align: justify;
  text-indent: 1em;
  margin-bottom: 1.5em; /* 段落間の余白を追加 */
}

.main-contents .mb05f {
  margin-bottom: calc(0.5em - (((1em * 1.6) - 1em) / 2));
}

.main-contents .mb10f {
  margin-bottom: calc(1em - (((1em * 1.6) - 1em) / 2));
}

.main-contents .mb15f {
  margin-bottom: calc(1.5em - (((1em * 1.6) - 1em) / 2));
}

.main-contents .mb20f {
  margin-bottom: calc(2em - (((1em * 1.6) - 1em) / 2));
}

.main-contents .mb30f {
  margin-bottom: calc(3em - (((1em * 1.6) - 1em) / 2));
}

.main-contents .mb40f {
  margin-bottom: calc(4em - (((1em * 1.6) - 1em) / 2));
}

.hr01 {
  border-top: 1px solid #00afcc;
  margin: 3.5em 0;
}

figcaption {
  margin-top: 0.5em;
}

.mFig {
  margin: 2em 0 3.5em;
}

.exLink {
  margin: 0 10px;
}

.exLink .exl {
  fill: #fff;
  vertical-align: middle;
}

.exLink.mini .exl {
  width: 12px;
  height: 12px;
}

i.pdf {
  background: url("../img/common/icon_pdf.png") no-repeat;
  background-size: 14px 18px;
  display: inline-block;
  width: 14px;
  height: 18px;
  margin: 0 10px;
}

.btn01 {
  background-color: #00afcc;
  color: #fff;
  text-decoration: none;
  position: relative;
  max-width: 120px;
  width: 100%;
  height: 30px;
  display: inline-block;
  padding: 0 1em;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.btn01:hover,
.btn01:active,
.btn01:visited {
  color: #fff;
}

.btn01::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  right: 5px;
  bottom: 5px;
}

.btn01:hover {
  opacity: 0.7;
}

/* TABLE */
.table01 {
  width: 100%;
  border-collapse: separate;
  border-bottom: 1px solid #808080;
}

.table01 th,
.table01 td {
  vertical-align: top;
  text-align: left;
  padding: 0.4em 0.5em;
  border-left: 1px solid #cccccc;
}

@media print,
screen and (max-width: 768px) {

  .table01 th,
  .table01 td {
    font-size: 1.2rem;
  }
}

.table01 th:nth-child(1),
.table01 td:nth-child(1) {
  border-left: none;
}

.table01 th {
  background: #808080;
  color: #fff;
  font-weight: 400;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
}

@media print,
screen and (min-width: 769px) {

  .table01 td:nth-child(1),
  .table01 td:nth-child(2),
  .table01 td:nth-child(3) {
    white-space: normal;
  }
}

.table01 i {
  color: #fff;
  background: #006eb0;
  font-style: normal;
  font-size: 1.2rem;
  padding: 0 0.5em;
}

@media print,
screen and (min-width: 769px) {
  .table01 i {
    font-size: 1.3rem;
  }
}

.table01 tr:nth-child(odd) {
  background: #f5f5f5;
}

@media print,
screen and (max-width: 768px) {
  .table01 .sewa {
    font-weight: 500;
  }
}

@media print,
screen and (min-width: 769px) {
  .tableMemo {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: end;
    align-items: flex-end;
  }
}

.tableMemo .keisyo {
  font-size: 1.2rem;
  text-align: right;
}

/* ul */
.ul01 li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.ul01 li ul {
  margin-top: 0.3em;
}

.ul02 li {
  padding-left: 1em;
  text-indent: -1em;
}

.listMarkerCircle li {
  position: relative;
  padding-left: 1em;
}

.listMarkerCircle li:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 0.5em;
  left: 0;
  left: 5px;
}

@media print,
screen and (min-width: 769px) {
  .listMarkerCircle li:after {
    top: 0.6em;
  }
}

.listMarkerCircle li+li {
  margin-top: 0;
}

.listMarkerCircle.ls {
  font-size: 1.6rem;
}

@media print,
screen and (min-width: 769px) {
  .listMarkerCircle.ls {
    font-size: 2rem;
  }
}

.listMarkerCircle.ls a {
  color: #000;
}

/* dl */
@media print,
screen and (min-width: 769px) {
  .dl01>dt {
    float: left;
  }
}

.dl01>dt>em {
  background: #a9a9a9;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media print,
screen and (max-width: 768px) {
  .dl01>dt>em {
    padding: 0.2em 0 0.1em;
    margin-bottom: 0.5em;
  }
}

@media print,
screen and (min-width: 769px) {
  .dl01>dt>em {
    width: 65px;
    height: 65px;
  }
}

.dl01>dd {
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 1.9em;
}

@media print,
screen and (min-width: 769px) {
  .dl01>dd {
    min-height: 65px;
    padding-left: 1em;
  }
}

.dl01>dd:last-child {
  margin-bottom: 0;
}

.dl02 dt {
  color: #00afcc;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 14px;
}

@media print,
screen and (min-width: 769px) {
  .dl02 dt {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
}

@media print,
screen and (min-width: 769px) {
  .dl02 dd {
    padding-left: 2.5em;
  }
}

@media print,
screen and (min-width: 769px) {
  .dl02Flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media print,
screen and (min-width: 769px) {
  .dl02Flex.v1 dl:first-child {
    width: 22%;
  }

  .dl02Flex.v1 dl:last-child {
    width: 69%;
  }
}

@media print,
screen and (min-width: 769px) {
  .dl02Flex.v2>dl {
    width: 43%;
  }

  .dl02Flex.v2 .inner {
    width: 46%;
  }
}

@media print,
screen and (max-width: 768px) {
  .dl02Flex figure.pc {
    display: none;
  }
}

@media print,
screen and (min-width: 769px) {
  .dl02Flex figure.pc {
    display: block;
    width: 195px;
    margin-left: 5px;
  }
}

@media print,
screen and (min-width: 769px) {
  .dl02Flex figure.sp {
    display: none;
  }
}

@media print,
screen and (max-width: 768px) {
  .dl02Flex figure.sp {
    display: block;
    margin: 0.5em;
  }
}

@media print,
screen and (min-width: 769px) {
  .dl02Flex .innerFlex {
    display: -webkit-flex;
    display: flex;
  }

  .dl02Flex .innerFlex ul {
    -webkit-box-flex: 1;
    flex: 1;
  }
}

.dl03 dt {
  float: left;
}

.dl03 dd {
  padding-left: 6em;
}

@media print,
screen and (min-width: 769px) {
  .dl03 dd {
    padding-left: 7em;
  }
}

/* iframe */
.iframe {
  text-align: center;
}

@media print,
screen and (max-width: 768px) {
  .iframe {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
}

@media print,
screen and (max-width: 768px) {
  .iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

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

  .sp-display {
    display: block;
  }
}

@media only screen and (min-width: 769px) {
  .pc-display {
    display: block;
  }

  .sp-display {
    display: none;
  }
}

/* clearfix */
.interview-content .layout:after,
.inner section:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden;
  font-size: 0;
}

/* フッターのリンク色 */
footer ul li a {
  color: #000000 !important;
  /* 好きな文字色に変更 */
  text-decoration: none !important;
  /* 下線を消す場合 */
}

/* ホバー時の色 */
footer ul li a:hover {
  color: #00AAFF !important;
  /* ホバー時の文字色 */
}
/* ナビゲーションの文字を黒に */
#g-nav a,
#g-nav a span {
  color: #000000; /* 黒 */
}
/* ナビゲーションの文字を黒にして下線を消す */
#g-nav a,
#g-nav a span {
  color: #000000;      /* 黒 */
  text-decoration: none; /* 下線なし */
  font-weight: 500;  
}
/* ホバー時は少し薄い黒（グレーっぽく） */
#g-nav a:hover,
#g-nav a:active {
  color: #666666;           /* 黒より少し薄い */
  text-decoration: none;    
}
/* ホバー時は半透明にして薄く見せる */
#g-nav a:hover,
#g-nav a:active {
  color: rgba(0, 0, 0, 0.5); /* 黒の50%透明度 */
  text-decoration: none;    
}
/* 文字を黒にして、ホバー時は薄く見せる */
#g-nav a span {
  color: #000000 !important;           /* 通常は黒 */
  text-decoration: none !important;    /* 下線なし */
  transition: color 0.3s;
}

#g-nav a:hover span,
#g-nav a:active span {
  color: rgba(0,0,0,0.5) !important;  /* ホバー時は薄い黒 */
  text-decoration: none !important;
}
/* ナビリンク内のアイコンと文字を縦に並べる */
#g-nav a {
  display: flex;           /* フレックスボックスにする */
  flex-direction: column;  /* 縦並びに */
  align-items: center;     /* 横方向を中央揃え */
  text-decoration: none;   /* 下線なし */
}
/* 全ナビアイコンを強制的に同じサイズに統一 */
#g-nav li a .nav-icon {
  width: 22px !important;
  height: auto !important;
  margin-bottom: 5px !important;
  transform: none !important;  /* scaleなどをリセット */
}

/* HOMEだけ少し小さく */
#g-nav li.current a .nav-icon {
  width: 15px !important;
  height: auto !important;
  transform: none !important;
}
