@charset "UTF-8";

*,*::before,*::after{box-sizing:border-box}
ul[class],ol[class]{padding:0}
body,h1,h2,h3,h4,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0}
html{scroll-behavior:smooth}
body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}
ul[class],ol[class]{list-style:none}
a:not([class]){text-decoration-skip-ink:auto}
img,picture{max-width:100%;display:block}
article>*+*{margin-top:1em}
input,button,textarea,select{font:inherit}
img:not([alt]){filter:blur(10px)}
@media(prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
}
/* addition */
main{display:block}
h5,h6{margin:0}
img,picture{width:100%;height:auto}
table{border-collapse:collapse;border-spacing:0}
a{color:inherit;word-break:break-all}
/*.cf:before,.cf:after{content:"";display:table}
.cf:after{clear:both}*/


/* font
================================================= */
@font-face {
  font-family: "NotoSansJP-Bold";
  font-weight: 700;
  font-style: normal;
  src: url('../fonts/NotoSansJP-Bold.woff2') format('woff2'),
    url('../fonts/NotoSansJP-Bold.woff') format('woff'),
    url('../fonts/NotoSansJP-Bold.ttf') format('truetype');
}
@font-face {
  font-family: "Lato-Bold";
  font-weight: 700;
  font-style: normal;
  src: url('../fonts/Lato-Bold.ttf') format('truetype');
}


/* base
================================================= */
html {
	font-size: 62.5%;
}
body {
	background-color: #ffffff;
	color: #181818;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
a {
  color: #1558d6;
}
a:visited {
  color: #681da8;
}
a:hover,
a:active {
  color: #44a0ff;
}
@media print, screen and (min-width: 1366px) {
  body { font-size: 1.8rem; }
}


/* text decoration
================================================= */
.text-smallest {
  font-size: 0.7em;
}
.text-small {
  font-size: 0.85em;
}
.text-large {
  font-size: 1.25em;
}
.text-largest {
  font-size: 1.4em;
}
.text-bold {
  font-weight: bold;
}
.text-red {
  color: #C80028;
}
.text-center {
  text-align: center;
}


/* button
================================================= */
.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 350px);
  height: 80px;
  margin: 0.4em auto;
  padding: 0 30px;
  border-radius: 100vh;
  line-height: 1.2;
}
.btn.small {
  width: min(100%, 285px);
  height: 58px;
  padding: 0 25px;
}
a.btn {
  background-color: #060025;
  color: #ffffff;
  text-decoration: none;
  transition: .15s;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a.btn:hover,
a.btn:active {
  background-color: #ff2002;
}
a.btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 24px;
  margin-left: 0.5em;
  margin-right: -0.1em;
  background-image: url(../image/icons/arrow-l_white.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}
a.btn.podcast::after {
  width: 24px;
  height: 24px;
  background-image: url(../image/icons/podcast_white.svg);
}
@media print, screen and (min-width: 960px) {
  .btn { height: 90px; padding: 0 40px; }
  .btn.small { height: 64px; padding: 0 30px; }
}


/* bunner
================================================= */
a.banner {
  display: block;
  border: #181818 solid 1px;
}


/* main : layout
================================================= */
main {
  background-image: url("../image/bg_hexagon.png");
  background-repeat: no-repeat;
  background-position: left -20vw top;
  background-size: 100% auto;
}
@media print, screen and (min-width: 625px) {
  main { background-position: left -10vw top; background-size: 70% auto; }
}
@media print, screen and (min-width: 1366px) {
  main { background-position: left top; background-size: 980px auto; }
}

/* area */
main > .area {
  padding: 12% 0;
}
main > .area.narrow {
  padding: 8% 0;
}
main > .area.hexagon {
  background-image: url("../image/bg_hexagon-bottom.png");
  background-repeat: no-repeat;
  background-position: right -20vw bottom;
  background-size: 100% auto;
  border: 0px solid #ff0000;
}
main > .area.light-blue {
  background-color: #6de6f7;
}
main > .area.blue-gray {
  background-color: #d5ddf0;
}
main > .area.white {
  background-color: #ffffff;
}
@media print, screen and (min-width: 625px) {
  main > .area { padding: 8% 0; }
  main > .area.narrow { padding: 5.5% 0; }
  main > .area.hexagon { background-position: right -10vw bottom; background-size: 70% auto; }
}
@media print, screen and (min-width: 1366px) {
  main > .area { padding: 110px 0; }
  main > .area.narrow { padding: 75px 0; }
  main > .area.hexagon { background-position: right bottom; background-size: 980px auto; }
}

/* section */
.area > section {
  width: min(90%, 1230px);
  margin-left: auto;
  margin-right: auto;
}
.area > section > h2 {
  width: 100%;
  color: #060025;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.4;
  text-align: center;
}
.area > section > h2 img {
  width: 100%;
  margin: 0 auto;
}
@media print, screen and (min-width: 625px) {
  .area > section > h2 img { width: 80%; }
}
@media print, screen and (min-width: 960px) {
  .area > section > h2 img { width: 73%; }
}


/* main : swiper
================================================= */
.swiper-button-prev,
.swiper-button-next {
	text-rendering: auto;
}


/* main : interview : article
================================================= */
.interviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -8%;
}
.interviews article {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: calc(1.9rem * 2.5 - 6px);
  margin-bottom: 8%;
  padding: 5%;
  border-color: #96ed1d;
  border-style: solid;
  border-width: 6px;
  border-radius: 8px;
  background-color: #ffffff;
}
.interviews article h3 {
  position: absolute;
  top: -2.5em;
  left: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10em;
  height: 2.5em;
  background-color: #96ed1d;
  border-radius: 8px 8px 0 0;
  color: #060025;
  font-family: "Lato-Bold", sans-serif;
  font-size: 1.9rem;
  line-height: 1.0;
}
.interviews article .swiper {
  width: 100%;
  margin-top: 0;
}
.interviews article .interviewee {
  width: 100%;
  margin: 5% 0 8%;
  color: #060025;
  font-weight: bold;
}
.interviews article .interviewee + .interviewee {
  margin-top: -3%;
}
.interviews article .interviewee .name {
  font-size: 2.4rem;
  line-height: 1.3;
}
.interviews article .interviewee .school {
  margin-top: 0.2em;
  line-height: 1.6;
}
.interviews article .desc {
  width: 100%;
  margin: -2% 0 8%;
}
.interviews article .podcast-player {
  margin-top: auto;
}
@media print, screen and (min-width: 625px) {
  .interviews { margin-bottom: -6%; }
  .interviews article { width: 48%; margin-top: calc(2.05rem * 2.5 - 8px); margin-bottom: 6%; padding: 2.5%; }
  .interviews article h3 { font-size: 2.05rem; }
}
@media print, screen and (min-width: 640px) {
  .interviews article { width: 47%; }
  .interviews article .interviewee { margin-bottom: 7%; }
  .interviews article .desc { margin-bottom: 7%; }
}
@media print, screen and (min-width: 960px) {
  .interviews article { margin-top: calc(2.3rem * 2.5 - 8px); border-width: 8px; }
  .interviews article h3 { left: -8px; font-size: 2.3rem; }
  .interviews article .interviewee { margin: 4% 0 6%; }
  .interviews article .interviewee .name { font-size: 2.6rem; }
  .interviews article .desc { margin-bottom: 6%; }
}
@media print, screen and (min-width: 1366px) {
  .interviews article { margin-top: calc(2.5rem * 2.5 - 10px); border-width: 10px; border-radius: 10px; }
  .interviews article h3 { left: -10px; border-radius: 10px 10px 0 0; font-size: 2.5rem; }
  .interviews article .interviewee .name { font-size: 2.8rem; }
}


/* main : message : senior list
================================================= */
ul.seniors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -6%;
}
ul.seniors li {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-bottom: 6%;
  background: #ffffff;
  border-radius: 8px;
}
ul.seniors li img.photo {
  border-radius: 8px 8px 0 0;
}
ul.seniors li hgroup {
  padding: 4% 6% 0;
  color: #060025;
  font-weight: bold;
}
ul.seniors li hgroup p {
  margin-bottom: 0.4em;
  line-height: 1.5;
}
ul.seniors li hgroup h3 {
  font-size: 2.4rem;
  line-height: 1.3;
}
ul.seniors li .siteflow {
  padding: 0.7em 6% 8%;
}
ul.seniors li .siteflow a.btn.small {
  margin-top: 0;
  margin-bottom: 0;
}
ul.seniors li .work {
  margin-top: auto;
  padding: 8%;
  border-radius: 0 0 8px 8px;
  background-color: #f0f0f0;
}
ul.seniors li .work a.banner {
  width: min(100%, 250px);
  margin: 0 auto;
}
@media print, screen and (min-width: 625px) {
  ul.seniors { justify-content: space-between; }
  ul.seniors li { width: 47%; }
}
@media print, screen and (min-width: 960px) {
  ul.seniors { margin-bottom: -4%; }
  ul.seniors li { width: 31%; margin-bottom: 4%; }
  ul.seniors li:nth-child(3n+2):last-child { margin-right: 34.5%; }
  ul.seniors li hgroup h3 { font-size: 2.6rem; }
}
@media print, screen and (min-width: 1366px) {
  ul.seniors li hgroup h3 { font-size: 2.8rem; }
}


/* footer
================================================= */
footer {
	padding: 15px 0;
	background: #060025;
	color: #fff;
  font-size: 1.2rem;
	text-align: center;
}
address {
  font: inherit;
  line-height: 20px;
}
@media print, screen and (min-width: 768px) {
  footer { padding: 25px 0;  }
}
