@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Reset
	## reset
# Setting
	## mixin
	## color
	## animation
	## links
	## btn
# Base
	## base
# Module
	## header
	## footer
	## fullmenu
	## modal
# Page
	## top
	## page

--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
/*--------------------------------------------------------------
# Reset
--------------------------------------na------------------------*/
/* Box sizing rules */
/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*--------------------------------------------------------------
# Setting
--------------------------------------------------------------*/
@keyframes PageIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes PageIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes Bullet {
  0% {
    background-color: #3282B8;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes Bullet {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

a {
  color: #3282B8;
  text-decoration: none;
  transition: ease-in .3s;
}

a:visited {
  color: #3282B8;
}

a:hover, a:focus, a:active {
  color: #66C0CD;
}

a:hover, a:active {
  outline: 0;
}

.btn {
  position: relative;
  display: block;
  padding: .8em 0 .8em;
  border: 1px solid #3282B8;
  color: white;
  background-color: #3282B8;
  border-radius: 10px;
  text-align: center;
  font-size: 1.4rem;
  text-decoration: none;
  transition: ease-in .3s;
}

.btn:visited {
  color: white;
}

.btn:hover {
  color: #3282B8;
  background-color: white;
}

.btn_full {
  width: 100%;
}

.btn_small {
  width: 180px;
}

.btn_large {
  width: 100%;
  margin: 20px 0;
}

@media screen and (min-width: 600px) {
  .btn_large {
    width: 360px;
    margin: 40px auto;
  }
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2.0;
  letter-spacing: 0.06em;
  height: 100vh;
  width: 100vw;
  color: #2b2b2b;
  font-size: 1.5rem;
}

.fullnav_on {
  overflow: hidden;
}

#page {
  overflow-x: hidden;
  min-height: calc(100vh - 140px);
}

@media print, screen and (min-width: 1025px) {
  #page {
    min-height: calc(100vh - 108px);
  }
}

#main {
  -webkit-animation: PageIn 1.5s ease 0s 1 normal;
  animation: PageIn 1.5s ease 0s 1 normal;
}

.item_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------------
# Module
--------------------------------------------------------------*/
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

@media print, screen and (min-width: 1025px) {
  .site_header {
    border-bottom: 1px solid #dcdcdc;
    background-color: white;
  }
}

.site_header__inner {
  width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

@media screen and (min-width: 600px) {
  .site_header__inner {
    height: 90px;
    padding: 0 30px;
  }
}

@media print, screen and (min-width: 1025px) {
  .site_header__inner {
    height: 80px;
    padding: 0 50px;
  }
}

@media print, screen and (min-width: 1025px) {
  .site_header__right {
    display: flex;
    align-items: center;
  }
}

.site_header .site_logo img {
  width: 180px;
}

@media print, screen and (min-width: 1025px) {
  .site_header .site_logo img {
    width: 260px;
  }
}

.global_nav__menu {
  display: none;
}

@media print, screen and (min-width: 1025px) {
  .global_nav__menu {
    display: flex;
  }
}

.global_nav__menu li {
  line-height: 4.0;
  padding: 0 25px;
}

.global_nav__menu a {
  color: #0F4C75;
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  transition: .5s;
}

.global_nav__menu a:hover {
  color: #3282B8;
}

.page_header {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
}

@media screen and (min-width: 600px) {
  .page_header {
    padding: 60px 40px 40px;
  }
}

@media print, screen and (min-width: 1025px) {
  .page_header {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 80px;
  }
}

.page_header__left h1 img {
  width: 100%;
  transition: ease-in .2s;
}

@media screen and (min-width: 600px) {
  .page_header__left h1 img {
    width: 70%;
    margin: 0 auto;
  }
}

@media print, screen and (min-width: 1025px) {
  .page_header__left h1 img {
    width: 400px;
    margin: 0;
  }
}

.page_header__left h1 img:hover {
  opacity: .6;
}

.page_header__right {
  display: none;
}

@media print, screen and (min-width: 1025px) {
  .page_header__right {
    display: block;
    width: 500px;
  }
}

.page_header__menu {
  display: flex;
  flex-wrap: wrap;
}

.page_header__menu li {
  width: 50%;
}

.page_header__menu li a {
  font-size: 1.4rem;
  color: #2b2b2b;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  padding: 0 0 12px;
  display: inline-block;
  position: relative;
}

.page_header__menu li a:before {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #2b2b2b;
  transition: ease-in .3s;
}

.page_header__menu li a:hover::before {
  width: 100%;
}

.page_header__menu li a.current {
  position: relative;
}

.page_header__menu li a.current:before {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2b2b2b;
  transition: ease-in .3s;
}

.page_header__menu li:last-child a::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 6px;
  background-image: url(../img/icon-link.svg);
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
}

.page_footer {
  margin-top: auto;
  max-width: 1000px;
  margin: 0 auto;
}

.page_footer__inner {
  padding: 30px 30px;
}

@media screen and (min-width: 600px) {
  .page_footer__inner {
    padding: 40px 40px;
  }
}

@media print, screen and (min-width: 1025px) {
  .page_footer__inner {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
  }
}

.page_footer__responsibility {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .page_footer__responsibility {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 1025px) {
  .page_footer__responsibility {
    font-size: 1.4rem;
    order: 2;
    margin-bottom: 0;
  }
}

.page_footer__copyright {
  font-size: 1.1rem;
}

@media screen and (min-width: 600px) {
  .page_footer__copyright {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 1025px) {
  .page_footer__copyright {
    font-size: 1.3rem;
    order: 1;
  }
}

.site_header__menu {
  height: 18px;
  position: fixed;
  right: 15px;
  top: 20px;
  width: 40px;
  z-index: 99;
  cursor: pointer;
}

@media screen and (min-width: 600px) {
  .site_header__menu {
    right: 30px;
    top: 30px;
  }
}

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

.menu_line {
  background: #2b2b2b;
  display: block;
  height: 1px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}

.menu_line__top.active {
  top: 8px;
  transform: rotate(45deg);
}

.menu_line__center {
  top: 8px;
}

.menu_line__center.active {
  height: 0;
}

.menu_line__bottom {
  bottom: 0;
}

.menu_line__bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}

.fullnav {
  background: white;
  display: none;
  height: 100vh;
  position: fixed;
  width: 100%;
  z-index: 98;
  overflow-y: scroll;
}

.fullnav_wrap {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .fullnav_wrap {
    padding: 100px 50px 50px;
  }
}

.fullnav_head__logo {
  text-align: center;
  padding: 50px 0;
}

.fullnav_head__logo img {
  width: 150px;
  display: block;
  margin: 0 auto;
}

.fullnav_main {
  margin: 60px auto 0;
  width: 80%;
}

.fullnav_main__menu li a {
  font-size: 1.4rem;
  display: inline-block;
  padding: 14px 0;
  color: #2b2b2b;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 600px) {
  .fullnav_main__menu li a {
    font-size: 1.6rem;
  }
}

.fullnav_main__menu li:last-child a {
  position: relative;
}

.fullnav_main__menu li:last-child a::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icon-link.svg);
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
}

.fullnav_foot {
  margin-top: auto;
}

.fullnav_foot__logo {
  text-align: center;
  padding: 50px 0;
}

.fullnav_foot__logo img {
  width: 80%;
  display: block;
  margin: 0 auto;
}

.modal_box {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  overflow-y: scroll;
}

.modal_box__bg {
  background-color: rgba(30, 30, 30, 0.9);
  height: 100%;
  width: 100%;
}

.modal_box__inner {
  background-color: white;
  width: 90%;
  left: 50%;
  padding: 25px;
  position: absolute;
  top: 25px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 600px) {
  .modal_box__inner {
    max-width: 800px;
    padding: 40px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.modal_box__block {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
}

.modal_box__block h5 {
  font-size: 2.0rem;
  margin: 0 0 20px;
}

.modal_box__block h5 span {
  display: block;
  font-size: 1.5rem;
}

.modal_box__block h6 {
  font-size: 1.6rem;
  margin: 0 0 10px;
}

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

@media screen and (min-width: 600px) {
  .modal_box__block p {
    font-size: 1.5rem;
  }
}

.modal_box__block cite {
  margin-top: 30px;
  font-size: 1.1rem;
  text-align: right;
  display: block;
  font-family: 'Lato', sans-serif;
}

@media screen and (min-width: 600px) {
  .modal_box__block cite {
    font-size: 1.2rem;
  }
}

.modal_box__block ul {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.modal_box__block ul li {
  position: relative;
  font-size: 1.4rem;
  padding-left: 20px;
}

@media screen and (min-width: 600px) {
  .modal_box__block ul li {
    font-size: 1.5rem;
  }
}

.modal_box__block ul li:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #CFE8EF;
}

.modal_box__block ol {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  counter-reset: num;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  .modal_box__block ol {
    font-size: 1.5rem;
  }
}

.modal_box__block ol li {
  position: relative;
  padding-left: 2.4em;
  margin-bottom: .4em;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  .modal_box__block ol li {
    font-size: 1.5rem;
  }
}

.modal_box__block ol li::before {
  counter-increment: num;
  content: counter(num);
  position: absolute;
  left: 0;
  top: 2px;
  background-color: #CFE8EF;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.modal_box__block blockquote {
  font-family: 'Lato', sans-serif;
}

.modal_box__block blockquote cite {
  font-size: 1.4rem;
  text-align: left;
  margin-left: 2em;
  margin-top: 10px;
}

.modal_box__block table {
  width: 100%;
  font-size: 1.4rem;
  border-collapse: collapse;
}

@media screen and (min-width: 600px) {
  .modal_box__block table {
    font-size: 1.5rem;
  }
}

.modal_box__block table tr:first-child {
  border-top: 1px solid #dcdcdc;
}

.modal_box__block table th {
  padding: .4em 0;
  text-align: left;
  border-bottom: 1px solid #dcdcdc;
}

.modal_box__block table td {
  padding: .4em 0;
  border-bottom: 1px solid #dcdcdc;
}

.modal_box__block .note {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #CFE8EF;
  padding: 0 .6em;
}

.modal_box__block .subtitle {
  font-weight: 700;
  color: #0F4C75;
  margin-bottom: 5px;
}

.modal_box__block .annot {
  font-size: 1.4rem;
  margin-top: 20px;
}

.modal_close {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 2.2rem;
}

@media screen and (min-width: 600px) {
  .modal_close {
    top: 0;
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/
.top_content {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

@media screen and (min-width: 600px) {
  .top_content {
    padding: 60px 40px 40px;
  }
}

@media print, screen and (min-width: 1025px) {
  .top_content {
    flex-direction: row;
    align-items: flex-end;
    height: 100vh;
    padding: 40px;
    position: relative;
  }
}

@media print, screen and (min-width: 1025px) {
  .top_content__first {
    width: 30%;
  }
}

@media print, screen and (min-width: 1025px) {
  .top_content__second {
    flex: 1;
    margin-left: 60px;
  }
}

.top_link {
  display: none;
}

@media print, screen and (min-width: 1025px) {
  .top_link {
    display: block;
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  }
}

.top_link a {
  color: #2b2b2b;
  position: relative;
  padding-right: 20px;
}

.top_link a:hover::before {
  width: 100%;
}

.top_link a::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #2b2b2b;
  transition: ease-in .3s;
}

.top_link a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 2px;
  background-image: url(../img/icon-link.svg);
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
}

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

.top_head__sp h1 {
  margin-bottom: 40px;
}

@media screen and (min-width: 600px) {
  .top_head__sp h1 {
    margin-bottom: 60px;
  }
}

.top_head__sp h1 img {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .top_head__sp h1 img {
    width: 80%;
  }
}

.top_head__pc {
  display: none;
}

@media print, screen and (min-width: 1025px) {
  .top_head__pc {
    display: block;
  }
}

.top_head__pc h1 {
  margin-bottom: 10vh;
}

.top_head__pc h1 img {
  width: 60%;
  margin: 0 auto;
}

.top_slider {
  width: 100%;
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.top_slider__list {
  height: 100%;
}

.top_slider__list li {
  height: 100%;
}

.top_slider__list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.swiper-container {
  width: 100%;
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.swiper-container .swiper-slide {
  height: 100%;
}

.swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.top_gnav {
  margin-top: 40px;
}

@media print, screen and (min-width: 1025px) {
  .top_gnav {
    margin-top: 0;
  }
}

.top_gnav__menu {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 600px) {
  .top_gnav__menu {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.top_gnav__menu li:nth-child(2) a, .top_gnav__menu li:nth-child(6) a {
  background-color: #C6DBF0;
}

.top_gnav__menu li:nth-child(3) a, .top_gnav__menu li:nth-child(7) a {
  background-color: #AED1E6;
}

.top_gnav__menu li:nth-child(4) a, .top_gnav__menu li:nth-child(8) a {
  background-color: #A0C4E2;
}

@media screen and (min-width: 600px) {
  .top_gnav__menu li {
    width: 50%;
  }
}

@media print, screen and (min-width: 1025px) {
  .top_gnav__menu li {
    width: 25%;
  }
  .top_gnav__menu li:nth-child(7) a {
    background-color: #CFE8EF;
  }
  .top_gnav__menu li:nth-child(2) a, .top_gnav__menu li:nth-child(8) a {
    background-color: #C6DBF0;
  }
  .top_gnav__menu li:nth-child(3) a, .top_gnav__menu li:nth-child(5) a {
    background-color: #AED1E6;
  }
  .top_gnav__menu li:nth-child(4) a, .top_gnav__menu li:nth-child(6) a {
    background-color: #A0C4E2;
  }
}

.top_gnav__menu li a {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  color: #2b2b2b;
  text-align: center;
  display: block;
  padding: 20px 0;
  font-size: 1.5rem;
  transition: ease-in .3s;
  background-color: #CFE8EF;
  position: relative;
}

@media screen and (min-width: 600px) {
  .top_gnav__menu li a {
    padding: 50px 0;
  }
}

@media print, screen and (min-width: 1025px) {
  .top_gnav__menu li a {
    height: 20vh;
    padding: 0;
    line-height: 1.7;
  }
}

.top_gnav__menu li a:hover {
  background-color: #3282B8;
  color: white;
}

@media print, screen and (min-width: 1025px) {
  .top_gnav__menu li a p {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.top_gnav__menu li br {
  display: none;
}

@media print, screen and (min-width: 1025px) {
  .top_gnav__menu li br {
    display: inline-block;
  }
}

.top_footer {
  margin-top: 60px;
}

@media print, screen and (min-width: 1025px) {
  .top_footer {
    margin-top: 30px;
  }
}

@media screen and (min-width: 1441px) {
  .top_footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
  }
}

.top_footer__responsibility {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

@media print, screen and (min-width: 1025px) {
  .top_footer__responsibility {
    font-size: 1.4rem;
    margin-bottom: 0;
    order: 2;
  }
}

.top_footer__copyright {
  font-size: 1.1rem;
}

@media print, screen and (min-width: 1025px) {
  .top_footer__copyright {
    font-size: 1.2rem;
    order: 1;
  }
}

.site_content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
}

@media screen and (min-width: 600px) {
  .site_content {
    padding: 40px;
  }
}

@media print, screen and (min-width: 1025px) {
  .site_content {
    padding: 0;
  }
}

.page_title h2 {
  font-size: 1.6rem;
  background-color: #CFE8EF;
  z-index: 1;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  text-align: center;
  padding: 40px 0;
  letter-spacing: .08em;
}

@media screen and (min-width: 600px) {
  .page_title h2 {
    font-size: 2.0rem;
    padding: 60px 0;
  }
}

@media print, screen and (min-width: 1025px) {
  .page_title h2 {
    padding: 100px 0;
    font-size: 2.2rem;
  }
}

@media print, screen and (min-width: 1025px) {
  .page_title h2 br {
    display: none;
  }
}

.page_title h2.bg2 {
  background-color: #C6DBF0;
}

.page_title h2.bg3 {
  background-color: #AED1E6;
}

.page_title h2.bg4 {
  background-color: #A0C4E2;
}

.page_content {
  margin: 40px 0;
}

@media screen and (min-width: 600px) {
  .page_content {
    margin: 60px 0;
  }
}

@media print, screen and (min-width: 1025px) {
  .page_content {
    margin: 100px 0;
  }
}

.page_content section {
  margin-bottom: 80px;
}

.page_content h3 {
  font-size: 1.5rem;
  padding: 16px 0;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  margin-bottom: 40px;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 600px) {
  .page_content h3 {
    font-size: 1.7rem;
    padding: 18px 0;
  }
}

.page_content h4 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
}

@media screen and (min-width: 600px) {
  .page_content h4 {
    font-size: 1.6rem;
  }
}

.page_content p {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  .page_content p {
    font-size: 1.5rem;
  }
}

.page_content p.name span {
  font-size: 1.3rem;
  display: block;
}

.page_content p.right {
  text-align: right;
}

.page_content a {
  cursor: pointer;
}

.page_content ol {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: number;
}

.page_content ol li {
  position: relative;
  padding-left: 2.2em;
  line-height: 1.8;
  margin-bottom: .4em;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  .page_content ol li {
    font-size: 1.5rem;
  }
}

.page_content ol li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  left: 0;
  top: 2px;
  background-color: #2b2b2b;
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  color: white;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0;
  font-family: 'Lato', sans-serif;
}

.page_content .emblem {
  text-align: center;
}

.page_content .emblem img {
  width: 100px;
  margin: 0 auto 10px;
}

.page_content .career_title {
  font-weight: 700;
  margin: 40px 0 10px;
  padding: .6em .8em;
  background-color: #F2F9FE;
}

@media print, screen and (min-width: 1025px) {
  .page_content dl.career dt {
    float: left;
    clear: both;
    width: 140px;
    margin-bottom: 10px;
  }
}

@media print, screen and (min-width: 1025px) {
  .page_content dl.career dd {
    margin-left: 140px;
    margin-bottom: 10px;
  }
}

.page_content ol.cite_list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: number;
}

.page_content ol.cite_list li {
  position: relative;
  padding-left: 2.2em;
  line-height: 1.8;
  margin-bottom: .4em;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  .page_content ol.cite_list li {
    font-size: 1.5rem;
  }
}

.page_content ol.cite_list li::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
  background-color: white;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  color: #2b2b2b;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.page_subtitle {
  text-align: center;
  padding: 0 0 60px;
}

.page_subtitle .title {
  font-size: 2.0rem;
}

.page_subtitle .title span {
  display: block;
}

@media print, screen and (min-width: 1025px) {
  .page_subtitle .title span {
    display: inline-block;
    margin-left: 1em;
  }
}

.page_subtitle .author {
  font-size: 1.6rem;
}

.btn_link {
  position: relative;
}

.btn_link:hover::before {
  background-image: url(../img/icon-link_blue.svg);
}

.btn_link::before {
  content: '';
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icon-link_white.svg);
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  transition: ease-in .3s;
}

@media screen and (min-width: 600px) {
  .btn_link::before {
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
  }
}
