@charset "UTF-8";
/* @docs
label: Core Remedies
version: 0.1.0-beta.2

note: |
  These remedies are recommended
  as a starter for any project.

category: file
*/
/* @docs
label: Box Sizing

note: |
  Use border-box by default, globally.

category: global
*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* @docs
label: Line Sizing

note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.

links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property

category: global
*/
html {
  line-sizing: normal;
}

/* @docs
label: Body Margins

note: |
  Remove the tiny space around the edge of the page.

category: global
*/
body {
  margin: 0;
}

/* @docs
label: Hidden Attribute

note: |
  Maintain `hidden` behaviour when overriding `display` values.

  category: global
*/
[hidden] {
  display: none;
}

/* @docs
label: Heading Sizes

note: |
  Switch to rem units for headings

category: typography
*/
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* @docs
label: H1 Margins

note: |
  Keep h1 margins consistent, even when nested.

category: typography
*/
h1 {
  margin: 0.67em 0;
}

/* @docs
label: Pre Wrapping

note: |
  Overflow by default is bad...

category: typography
*/
pre {
  white-space: pre-wrap;
}

/* @docs
label: Horizontal Rule

note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`

category: typography
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

/* @docs
label: Responsive Embeds

note: |
  1. Block display is usually what we want
  2. The `vertical-align` removes strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default

category: embedded elements
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

/* @docs
label: Responsive Images

note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.

  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely

category: embedded elements
*/
picture {
  display: contents;
}

source {
  display: none;
}

/* @docs
label: Aspect Ratios

note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.

category: embedded elements
*/
img, svg, video, canvas {
  height: auto;
}

/* @docs
label: Audio Width

note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.

category: embedded elements
*/
audio {
  width: 100%;
}

/* @docs
label: Image Borders

note: |
  Remove the border on images inside links in IE 10 and earlier.

category: legacy browsers
*/
img {
  border-style: none;
}

/* @docs
label: SVG Overflow

note: |
  Hide the overflow in IE 10 and earlier.

category: legacy browsers
*/
svg {
  overflow: hidden;
}

/* @docs
label: HTML5 Elements

note: |
  Default block display on HTML5 elements.
  For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)

links:
  - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/

category: legacy browsers
*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* @docs
label: Checkbox & Radio Inputs

note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10

category: legacy browsers
*/
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/* Base Layout
================================================*/
html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  width: 100%;
  text-align: left;
  line-height: 1.6em;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  overflow-x: hidden;
  background-color: #fff;
}

/* Elements
================================================*/
/* clearfix */
.clearfix:after, .main_content:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.inline-block {
  display: inline-block;
}

* {
  color: #333;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

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

i {
  font-style: italic;
}

strong {
  font-weight: 500;
}

/* Layout
================================================*/
.main_content {
  position: relative;
  margin-top: 75px;
}
.main_content .inner {
  max-width: 827px;
  padding: 40px 25px 50px;
  margin-left: auto;
  margin-right: auto;
}
.main_content.full_w .inner {
  max-width: 100%;
}
.main_content iframe {
  width: 100%;
}

.main_header {
  position: fixed;
  top: 0;
  height: 75px;
  overflow: hidden;
  z-index: 40;
  overflow: visible;
  width: 100%;
  background-color: #fff;
}
.main_header .corp {
  margin: 0;
}
.main_header .corp a {
  display: block;
  width: 100%;
  height: 75px;
}
.main_header .corp .logo {
  width: 54px;
  position: absolute;
  top: 10px;
  left: 16px;
}
.main_header .corp .sp {
  width: 198px;
  position: absolute;
  top: 10px;
  left: 78px;
}
.main_header .corp .site_ttl2,
.main_header .corp .site_ttl1 {
  font-family: "Quicksand", sans-serif;
  display: block;
  word-break: normal;
  position: absolute;
  line-height: 1.2;
  width: 220px;
}
.main_header .corp .site_ttl2 {
  font-size: 0.9rem;
  top: 10px;
  left: 78px;
}
.main_header .corp .site_ttl1 {
  font-size: 1.6rem;
  letter-spacing: 0em;
  top: 24px;
  left: 78px;
}

/* sp header menu */
.sp_head {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 9999;
}
.sp_head .sp_nav {
  width: 100%;
  margin: 0;
  z-index: 10;
}
.sp_head .sp_nav ul {
  letter-spacing: 0.04em;
  list-style-type: none;
  font-family: "Zen Maru Gothic", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
  padding: 25px 0 0 0;
  max-width: 275px;
  margin: 10px auto;
}
.sp_head .sp_nav ul li {
  line-height: 1.7;
  color: #fff;
}
.sp_head .sp_nav ul li.en a {
  padding-left: 36px;
  position: relative;
}
.sp_head .sp_nav ul li.en a:before {
  position: absolute;
  top: 13px;
  left: 6px;
  content: "";
  display: inline-block;
  width: 23.2px;
  height: 23.2px;
  background-image: url(../images/icon_en.png);
  background-size: 23.2px 23.2px;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.sp_head .sp_nav ul a {
  color: #333;
  display: block;
  padding: 10px;
  text-decoration: none;
  background-image: url(../images/arrow_r.png);
  background-size: 7.17px 14.34px;
  background-repeat: no-repeat;
  background-position: right center;
}
.sp_head.en .sp_nav ul {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 75px;
  height: 75px;
  background-color: #CE67AF;
  position: relative;
  z-index: 60;
  cursor: pointer;
  padding: 26px 0 0 23px;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 2px; /*線の太さ*/
  width: 29px; /*長さ*/
  background-color: #fff;
  display: block;
  content: "";
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
}

#nav-open span:before {
  bottom: -10px;
}

#nav-open span:after {
  bottom: -20px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none; /*はじめは隠しておく*/
  position: fixed;
  z-index: 30;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/*中身*/
#nav-content {
  margin-top: 75px;
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40; /*最前面に*/
  width: 100%; /*左側に隙間を作る（閉じるカバーを表示）*/
  height: auto;
  opacity: 0;
  -webkit-transform: translateY(-125%);
      -ms-transform: translateY(-125%);
          transform: translateY(-125%); /*右に隠しておく*/
  background-color: #fff;
  bottom: 0;
  overflow-y: auto;
}
#nav-content .nav-content-inner {
  position: relative;
  z-index: 1;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  displlay: none; /*カバーを無効化*/
  opacity: 0.5;
}

#nav-input:checked ~ #nav-open span {
  -webkit-transform: translateY(10px) rotate(45deg);
      -ms-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}

#nav-input:checked ~ #nav-open span:before {
  -webkit-transform: translateY(-20px) translateX(0px) rotate(720deg);
      -ms-transform: translateY(-20px) translateX(0px) rotate(720deg);
          transform: translateY(-20px) translateX(0px) rotate(720deg);
  opacity: 0;
}

#nav-input:checked ~ #nav-open span:after {
  -webkit-transform: translateY(-20px) translateX(0px) rotate(-90deg);
      -ms-transform: translateY(-20px) translateX(0px) rotate(-90deg);
          transform: translateY(-20px) translateX(0px) rotate(-90deg);
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%); /*中身を表示（左へスライド）*/
  opacity: 1;
}

/* footer */
#footer {
  background-color: #EDF5FD;
}
#footer .inner {
  padding: 40px 25px;
}
#footer .corp_info {
  text-align: center;
}
#footer .corp_info p {
  margin: 0;
}
#footer .corp_info a {
  display: block;
}
#footer .corp_info img {
  width: 90%;
  max-width: 290px;
  height: auto;
  margin: 0 auto;
}
#footer .corp_info .logo {
  max-width: 210px;
  margin-bottom: 12px;
}
#footer .corp_info .sp {
  width: 305px;
  max-width: 100%;
  margin-bottom: 28px;
}
#footer .corp_info address {
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 15px;
  font-style: normal;
}
#footer .corp_info .cp {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
}
#footer .corp_info .site_ttl2,
#footer .corp_info .site_ttl1 {
  font-family: "Zen Maru Gothic", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  display: block;
  word-break: normal;
  line-height: 1.2;
  text-align: center;
}
#footer .corp_info .site_ttl2 {
  font-size: 1.4rem;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
#footer .corp_info .site_ttl1 {
  font-size: 2.2rem;
  font-size: 1.7rem;
  letter-spacing: 0em;
  margin-bottom: 24px;
}
#footer .corp_info.en .site_ttl2,
#footer .corp_info.en .site_ttl1 {
  font-family: "Quicksand", sans-serif;
  display: block;
  word-break: normal;
  line-height: 1.2;
}
#footer .corp_info.en .site_ttl2 {
  font-size: 1.4rem;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
#footer .corp_info.en .site_ttl1 {
  font-size: 2.2rem;
  font-size: 1.8rem;
  letter-spacing: 0em;
  margin-bottom: 14px;
}
#footer .corp_info.en address {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-size: 1.2rem;
}

/* Top page
================================================*/
.main_cut {
  height: 100vw;
  max-height: 600px;
  background-color: #eff;
  background-image: url(../images/main_ttl_bg_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin: 0;
  position: relative;
}
.main_cut .text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_cut h1 {
  margin: 0;
  width: 80%;
  max-width: 550px;
}
.main_cut h2 {
  font-family: "Zen Maru Gothic", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  margin-top: 1.3em;
}
.main_cut.en .inner {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.main_cut.en .inner h1 {
  text-align: center;
  width: 100%;
  max-width: 100%;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.main_cut.en .site_ttl2,
.main_cut.en .site_ttl1,
.main_cut.en .description {
  font-family: "Quicksand", sans-serif;
  display: block;
  word-break: normal;
  line-height: 1.2;
  text-align: center;
}
.main_cut.en .site_ttl2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.main_cut.en .site_ttl1 {
  font-size: 3rem;
  letter-spacing: 0em;
  margin-bottom: 14px;
}
.main_cut.en .description {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 2;
  margin-bottom: 0;
}

/* common
================================================*/
.sct_title {
  margin: 0 0 35px;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  position: relative;
  padding-bottom: 14px;
}
.sct_title:after {
  content: "";
  display: block;
  position: absolute;
  width: 54px;
  height: 2px;
  background-color: #3077CE;
  bottom: 0;
  left: calc(50% - 27px);
}
.sct_title.en {
  font-family: "Poppins", sans-serif;
}

.btn a {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 66px;
  line-height: 66px;
  margin: 30px auto 45px;
  background-color: #3077CE;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.btn.arrow a {
  background-image: url(../images/arrow_r_b.png);
  background-size: 13px 11.5px;
  background-repeat: no-repeat;
  background-position: top 27px right 30px;
}
.btn.small a {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: 42px;
  line-height: 42px;
  margin: 16px 0 0;
  padding: 0 23px;
  font-size: 1.5rem;
}
.btn.en a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* bread_crumb
================================================*/
.bread_crumb {
  display: none;
}
.bread_crumb ul {
  max-width: 1210px;
  padding: 0 25px;
  margin: 10px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.bread_crumb ul li {
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  list-style-type: none;
}
.bread_crumb ul li a {
  text-decoration: underline;
}
.bread_crumb ul li:not(:last-child):after {
  content: ">";
  margin: 0 6px;
}
.bread_crumb.en ul li {
  font-family: "Poppins", sans-serif;
}

/* news
================================================*/
.headlines {
  max-width: 827px;
  margin: 0 auto;
}
.headlines article time {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}
.headlines article .headline {
  margin: 0 0 20px;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
}
.headlines.en article .headline {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.year_ttl {
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-bottom: 1px solid #3077CE;
  padding: 0 0 8px;
  margin: 0 0 26px;
}
.year_ttl.en {
  font-family: "Poppins", sans-serif;
}

#year_index {
  margin: 20px 0 0;
}

.year_index {
  border-radius: 15px;
  background-color: #f9fbfc;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  padding: 15px 22px;
}
.year_index .year_index_ttl {
  font-weight: 500;
  font-size: 1.8rem;
  border-bottom: 1px solid #3077CE;
  padding: 0 12px 17px;
}
.year_index ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  padding: 0 12px;
  margin: 18px 0 0;
}
.year_index ul li {
  margin: 0 0 16px;
  width: 33.33%;
  list-style-type: none;
}
.year_index ul li a {
  display: block;
}
.year_index ul li:nth-child(3n) a {
  text-align: right;
}
.year_index ul li:nth-child(3n+1) a {
  text-align: left;
}
.year_index ul li:nth-child(3n+2) a {
  text-align: center;
}
.year_index.en {
  font-family: "Poppins", sans-serif;
}

.sec_ttl_container {
  background-color: #EDF5FD;
  background-image: url(../images/circle_obj.png);
  background-repeat: no-repeat;
  background-size: 56vw 56vw;
  background-position: calc(50% + 18vw) center;
  height: 136px;
}
.sec_ttl_container .sec_ttl {
  font-family: "Poppins", sans-serif;
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 0;
  padding: 44px 0 0;
}
.sec_ttl_container .sec_ttl .ja {
  display: block;
  margin-top: 4px;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0;
}
.sec_ttl_container.en .sec_ttl {
  padding: 55px 0 0;
}

.entry {
  margin-bottom: 40px;
}
.entry .entry_ttl,
.entry .fz_26 {
  margin: 0 0 20px;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
}
.entry .entry_ttl.fz_26,
.entry .fz_26.fz_26 {
  margin: 0px 0 30px;
}
.entry .fz_24 {
  margin: 0 0 6px;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.entry .fz_24:not(:first-child) {
  margin-top: 30px;
}
.entry .fz_20 {
  margin: 0 0 14px;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.entry .fz_20 + p {
  margin-top: -12px;
}
.entry time {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}
.entry p {
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 1.7em;
}
.entry p + hr.dotted {
  margin-top: -16px;
}
.entry p + .small {
  font-size: 1.3rem;
}
.entry .access_map {
  margin: 0 0 26px;
  max-height: 90vw;
}
.entry .map img {
  margin: 0 auto 20px;
  width: 660px;
  max-width: 95%;
}
.entry .pad_lr1 {
  padding: 0 7px;
  line-height: 1.75;
}
.entry hr.dotted {
  border-top: 1px dotted #000;
  margin: 12px 0;
}
.entry .bar_blue {
  position: relative;
  margin-top: 20px;
  padding-top: 30px;
}
.entry .bar_blue:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 2px;
  background-color: #A7CDFD;
}
.entry .about_fig {
  padding: 40px 0 0;
}
.entry .about_fig img {
  width: 700px;
  margin: 0 auto;
}
.entry.en .entry_ttl,
.entry.en .fz_26 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.entry.en .fz_24 {
  margin: 0 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.entry.en .fz_20 {
  margin: 0 0 22px;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}
.entry.en time {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.entry.en p {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}
.entry .entry_ctt.contact {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100%;
  margin: 85px 0 100px;
}
.entry .entry_ctt.contact iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

p a {
  color: #3077CE;
  display: inline-block;
  position: relative;
  word-break: break-all;
}
p a[target=_blank] {
  padding-right: 24px;
  text-decoration: underline;
}
p a[target=_blank]:after {
  content: "";
  width: 17px;
  height: 15px;
  display: block;
  position: absolute;
  top: 8px;
  right: 0;
  background-image: url(../images/icon_link_bg_gr.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
}

/* members
================================================*/
.note {
  margin: 30px 0 40px;
}
.note.en {
  font-family: "Poppins", sans-serif;
}

.member_box .member {
  background-color: #f9fbfc;
  border-radius: 20px;
  padding: 32px 26px;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}
.member_box .member .position {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 500;
}
.member_box .member h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 12px;
  border-bottom: 2px solid #3077CE;
}
.member_box .member p {
  margin: 0 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  word-break: break-all;
}
.member_box.en .member {
  font-family: "Poppins", sans-serif;
}

/* publications
================================================*/
.publications_box {
  border-bottom: 1px solid #ccc;
}
.publications_box .publication {
  padding: 30px 10px;
  border-top: 1px solid #ccc;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}
.publications_box .publication h2 {
  padding: 8px 0 0;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.publications_box .publication h2:before {
  content: "";
  width: 29px;
  height: 2px;
  background-color: #E688CA;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.publications_box .publication p {
  margin: 0;
}
.publications_box.en .publication {
  font-family: "Poppins", sans-serif;
}

.pb_ttl {
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* archives
================================================*/
.archives_box {
  border-bottom: 1px solid #ccc;
}
.archives_box .archive {
  padding: 30px 10px;
  border-top: 1px solid #ccc;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}
.archives_box .archive .thumnail {
  text-align: center;
}
.archives_box .archive .thumnail img {
  margin: 0 auto;
}
.archives_box .archive h2 {
  padding: 8px 0 0;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.archives_box .archive p {
  margin: 0;
  text-align: center;
  font-size: 1.4rem;
}
.archives_box.single {
  border-bottom: none;
}
.archives_box.single .archive {
  border-top: none;
}
.archives_box.single .archive h1 {
  padding: 20px 0 0;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 10px 0 20px;
  text-align: center;
}
.archives_box.single .archive p {
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 1em;
  line-height: 2;
}
.archives_box.single .archive hr {
  margin: 30px 0;
  border-top: 1px solid #ccc;
}
.archives_box.en .archive {
  font-family: "Poppins", sans-serif;
}

.acv_ttl {
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* banners
================================================*/
.banners {
  border-top: 1px solid #eaf4fa;
  padding: 45px 25px 40px;
  margin: 0;
}
.banners ul {
  list-style: none outside;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.banners li {
  margin: 0;
  max-width: 600px;
}
.banners li a {
  display: block;
  /* border: 1px solid var.$color_black;
  border-radius: 10px; */
  text-align: left;
  /* height: 68px; */
  position: relative;
  padding-right: 0;
}
.banners li a:after {
  display: none;
}
.banners li a img {
  /* max-width: 90%; */
}
.banners li a.riken img {
  width: 150px;
}
.banners li a.yokohama img {
  width: 240px;
}
.banners li a.ims img {
  width: 240px;
}
.banners li a.pubpoli img {
  width: 180px;
}
.banners li a img {
  /* position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  margin: 0 auto;
}
.banners.en li a.riken img {
  width: 118px;
}
.banners.en li a.yokohama img {
  width: 182px;
}
.banners.en li a.ims img {
  width: 208px;
}
.banners.en li a.pubpoli img {
  width: 240px;
}

/* sp/pc
================================================*/
@media only screen and (max-width: 1040px) {
  .pc,
  .head_r,
  .foot_r {
    display: none;
  }
}
@media only screen and (min-width: 1040px) {
  .sp,
  .sp_head {
    display: none;
  }
}
/* news
================================================*/
@media only screen and (min-width: 679px) {
  .headlines article time {
    font-size: 1.5rem;
    width: 126px;
    float: left;
  }
  .headlines article .headline {
    margin: 0 0 20px 126px;
    font-size: 1.6rem;
  }
}
/* news year include
================================================*/
@media only screen and (max-width: 300px) {
  .year_index {
    padding: 15px 22px;
  }
  .year_index ul li {
    margin: 0 0 10px;
    width: 100%;
  }
  .year_index ul li:nth-child(3n) a {
    text-align: left;
  }
  .year_index ul li:nth-child(3n+1) a {
    text-align: left;
  }
  .year_index ul li:nth-child(3n+2) a {
    text-align: left;
  }
}
/* pc
================================================*/
@media only screen and (min-width: 1040px) {
  /* Layout
  ================================================*/
  .main_content {
    margin-top: 150px;
  }
  .main_content .inner {
    padding: 100px 25px 80px;
  }
  .main_content.col_1 .inner {
    max-width: 940px;
    padding: 85px 0 190px;
  }
  .main_content.col_1.narrow .inner {
    max-width: 753px;
    padding: 85px 0 100px;
  }
  .main_content.col_2 .inner {
    max-width: 940px;
    padding: 85px 0 190px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
  }
  .main_content.col_2 .inner .col_l {
    width: calc(100% - 260px);
  }
  .main_content.col_2 .inner .col_r {
    width: 210px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .main_content.col_2 .inner .btn {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 0;
  }
  .main_content.col_2 .inner .btn a {
    margin: 0 auto;
  }
  .main_header {
    height: 150px;
  }
  .main_header .inner {
    max-width: 1210px;
    padding: 0 25px;
    margin: 0 auto;
    position: relative;
  }
  .main_header .corp a {
    height: 150px;
    width: 580px;
  }
  .main_header .corp .logo {
    width: 85px;
    height: auto;
    position: absolute;
    top: 29px;
    left: 25px;
  }
  .main_header .corp .pc {
    width: 400px;
    position: absolute;
    top: 52px;
    left: 127px;
  }
  .main_header .corp .site_ttl2,
  .main_header .corp .site_ttl1 {
    width: 370px;
  }
  .main_header .corp .site_ttl2 {
    font-size: 1.6rem;
    top: 34px;
    left: 127px;
  }
  .main_header .corp .site_ttl1 {
    font-size: 2.2rem;
    letter-spacing: 0.01em;
    top: 60px;
    left: 127px;
  }
  .main_header .head_r {
    position: absolute;
    top: 22px;
    right: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 480px;
  }
  .main_header .head_r ul {
    width: 100%;
    list-style-type: none;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
    font-family: "Zen Maru Gothic", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0;
  }
  .main_header .head_r ul li a {
    display: block;
  }
  .main_header .head_r ul.nav_1 {
    font-size: 1.4rem;
  }
  .main_header .head_r ul.nav_1 a {
    padding: 4px 4px 4px 30px;
    background-size: 26px 26px;
    background-repeat: no-repeat;
    background-position: left center;
  }
  .main_header .head_r ul.nav_1 .news {
    margin-top: 10px;
  }
  .main_header .head_r ul.nav_1 .news a {
    background-image: url(../images/icon_news.png);
  }
  .main_header .head_r ul.nav_1 .access {
    margin-top: 10px;
  }
  .main_header .head_r ul.nav_1 .access a {
    background-image: url(../images/icon_access.png);
  }
  .main_header .head_r ul.nav_1 .en {
    margin-top: 10px;
  }
  .main_header .head_r ul.nav_1 .en a {
    background-image: url(../images/icon_en.png);
  }
  .main_header .head_r ul.nav_1 .inquiry a {
    background-color: #CE67AF;
    border-radius: 30px;
    color: #fff;
    padding: 10px 34px;
  }
  .main_header .head_r ul.nav_2 {
    font-size: 1.7rem;
    margin-top: 20px;
  }
  .main_header .head_r ul.nav_2 a {
    padding-bottom: 8px;
  }
  .main_header .head_r ul.nav_2 a:hover {
    opacity: 1;
  }
  .main_header .head_r ul.nav_2 li.current a,
  .main_header .head_r ul.nav_2 li a:hover {
    border-bottom: 2px solid #E688CA;
  }
  .main_header .head_r.en ul {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .main_header .head_r.en ul.nav_1 {
    font-size: 1.5rem;
  }
  .main_header .head_r.en ul.nav_1 .inquiry a {
    font-size: 1.4rem;
    padding: 10px 40px;
  }
  .main_header .head_r.en ul.nav_2 {
    font-size: 1.8rem;
  }
  /* footer */
  #footer .inner {
    padding: 60px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1130px;
    margin: 0 auto;
  }
  #footer .corp_info {
    text-align: left;
  }
  #footer .corp_info p {
    margin: 0 0 14px;
  }
  #footer .corp_info img {
    margin: 0;
    width: 396px;
    max-width: 397px;
  }
  #footer .corp_info .logo {
    max-width: 234px;
    margin-bottom: 18px;
  }
  #footer .corp_info .sp {
    max-width: 396px;
    margin-bottom: 20px;
  }
  #footer .corp_info address {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    margin-bottom: 70px;
  }
  #footer .corp_info .cp {
    font-size: 1.4rem;
  }
  #footer .corp_info .site_ttl2,
  #footer .corp_info .site_ttl1 {
    text-align: left;
  }
  #footer .corp_info .site_ttl2 {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  #footer .corp_info .site_ttl1 {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }
  #footer .corp_info.en .site_ttl2 {
    font-size: 1.4rem;
  }
  #footer .corp_info.en .site_ttl1 {
    font-size: 2.2rem;
  }
  #footer .corp_info.en address {
    font-size: 1.4rem;
  }
  #footer .foot_r {
    padding-top: 20px;
  }
  #footer .foot_r ul {
    margin: 0 0 60px;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 15px;
  }
  #footer .foot_r ul.nav_1 {
    font-family: "Zen Maru Gothic", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    padding: 0;
  }
  #footer .foot_r ul.nav_1 a {
    display: block;
    padding: 7px;
  }
  #footer .foot_r ul.nav_2 {
    font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    padding: 0;
  }
  #footer .foot_r ul.nav_2 a {
    display: block;
    padding: 0;
    text-align: center;
    width: 220px;
    border-radius: 100px;
    height: 47px;
    line-height: 47px;
  }
  #footer .foot_r ul.nav_2 .access a {
    background-color: #fff;
    color: #333;
  }
  #footer .foot_r ul.nav_2 .inquiry a {
    background-color: #CE67AF;
    color: #fff;
  }
  #footer .foot_r.en ul.nav_1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
    padding: 0;
    gap: 12px;
  }
  #footer .foot_r.en ul.nav_2 {
    font-family: "Poppins", sans-serif;
  }
  /* Top page
  ================================================*/
  .main_cut {
    background-image: url(../images/main_ttl_bg.jpg);
  }
  .main_cut h2 {
    font-size: 1.75rem;
  }
  .main_cut.en .site_ttl2 {
    font-size: 2.4rem;
  }
  .main_cut.en .site_ttl1 {
    font-size: 5.5rem;
  }
  .main_cut.en .description {
    font-size: 2.1rem;
  }
  /* common
  ================================================*/
  .sct_title {
    margin: 0 0 70px;
    font-size: 2.8rem;
    padding-bottom: 15px;
  }
  .sct_title:after {
    width: 54px;
    height: 2px;
    left: calc(50% - 27px);
  }
  .btn a {
    max-width: 350px;
    height: 73px;
    line-height: 73px;
    margin: 60px auto 40px;
    font-weight: 400;
    font-size: 1.8rem;
  }
  .btn.arrow a {
    background-size: 18px 16px;
    background-repeat: no-repeat;
    background-position: top 30px right 40px;
  }
  .sec_ttl_container {
    height: 163px;
    background-size: 465px 465px;
    background-position: calc(80% + 36px) center;
  }
  .sec_ttl_container .sec_ttl {
    font-size: 5rem;
    padding: 60px 0 0;
  }
  .sec_ttl_container .sec_ttl .ja {
    margin-top: 10px;
    font-size: 2rem;
  }
  .sec_ttl_container.en .sec_ttl {
    padding: 70px 0 0;
  }
  /* bread_crumb */
  .bread_crumb {
    display: block;
  }
  /* news */
  .year_ttl {
    font-size: 3rem;
    border-bottom: 1px solid #3077CE;
    padding: 9px 0 14px;
    margin: 0 0 40px;
  }
  #year_index {
    margin: 0 0 0;
  }
  .year_index {
    border-radius: 15px;
    background-color: #f9fbfc;
    font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    padding: 15px 22px;
  }
  .year_index .year_index_ttl {
    font-weight: 600;
    font-size: 1.8rem;
    border-bottom: 1px solid #3077CE;
    padding: 0 12px 17px;
  }
  .year_index ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    padding: 0 12px;
    margin: 18px 0 0;
  }
  .year_index ul li {
    margin: 0 0 16px;
    width: 33.33%;
    list-style-type: none;
  }
  .year_index ul li a {
    display: block;
  }
  .year_index ul li:nth-child(3n) a {
    text-align: right;
  }
  .year_index ul li:nth-child(3n+1) a {
    text-align: left;
  }
  .year_index ul li:nth-child(3n+2) a {
    text-align: center;
  }
  .entry {
    margin-bottom: 60px;
  }
  .entry .entry_ttl,
  .entry .fz_26 {
    margin: 10px 0 24px;
    font-size: 2.6rem;
    letter-spacing: 0.05em;
  }
  .entry .entry_ttl.fz_26,
  .entry .fz_26.fz_26 {
    margin: 10px 0 50px;
  }
  .entry .fz_24 {
    margin: 0 0 6px;
    font-size: 2.4rem;
  }
  .entry .fz_24:not(:first-child) {
    margin-top: 40px;
  }
  .entry .fz_20 {
    margin: 0 0 24px;
    font-size: 2rem;
  }
  .entry .fz_20 + p {
    margin-top: -24px;
  }
  .entry time {
    font-size: 1.5rem;
    margin: 0 0 24px;
  }
  .entry p {
    font-size: 1.6rem;
  }
  .entry p + .small {
    font-size: 1.4rem;
  }
  /* members
  ================================================*/
  .note {
    margin: -30px 0 40px;
  }
  .member_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .member_box .member {
    width: calc(33.33% - 20px);
    padding: 42px 30px;
    margin-bottom: 0;
  }
  .member_box .member .position {
    margin: 0 0 6px;
    font-size: 1.6rem;
  }
  .member_box .member h2 {
    margin: 0;
    font-size: 2.6rem;
    padding-bottom: 20px;
    margin-bottom: 12px;
  }
  .member_box .member p {
    font-size: 1.6rem;
  }
  /* publications
  ================================================*/
  .publications_box .publication {
    padding: 50px 10px;
  }
  .publications_box .publication h2 {
    padding: 12px 0 0;
    font-size: 2rem;
  }
  .pb_ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  /* archives
  ================================================*/
  .archives_box .archive {
    padding: 50px 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .archives_box .archive .thumnail {
    text-align: left;
    width: calc(40% - 15px);
  }
  .archives_box .archive .txt {
    text-align: left;
    width: calc(60% - 15px);
  }
  .archives_box .archive h2 {
    padding: 32px 0 0;
    position: relative;
    font-size: 2rem;
    text-align: left;
  }
  .archives_box .archive p {
    margin: 0;
    text-align: left;
    font-size: 1.6rem;
  }
  .archives_box.single .archive .thumnail {
    width: calc(30% - 15px);
  }
  .archives_box.single .archive .txt {
    width: calc(70% - 15px);
  }
  .archives_box.single .archive h1 {
    padding: 20px 0 0;
    font-size: 2rem;
    margin: 0 0 24px;
    text-align: left;
  }
  .archives_box.single .archive p {
    font-size: 1.6rem;
    text-align: left;
  }
  .acv_ttl {
    font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  /* banners
  ================================================*/
  .banners {
    padding: 87px 25px 70px;
  }
  .banners ul {
    /* display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 30px; */
    /* max-width: 870px; */
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 25px;
  }
  .banners li {
    /* width: calc(100% / 3 - 40px / 3); */
  }
  .banners li a {
    /* border-radius: 10px;
    height: 85px; */
  }
  .banners li a.riken img {
    width: 162px;
  }
  .banners li a.yokohama img {
    width: 209px;
  }
  .banners li a.ims img {
    width: 217px;
  }
  .banners li a.pubpoli img {
    width: 180px;
  }
  .banners li a img {
    /* position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    margin: 0 auto;
  }
}
/*# sourceMappingURL=style.css.map */