@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');
body {
  line-height: 1.8;
  color: #031B24;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  text-size-adjust: 100%;
  background: #fff;
}
body#top {
  background: #24A7CD;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

p,
ol,
ul,
dl,
table {
  margin-bottom: 1.5em;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child,
ol:first-child,
ul:first-child,
dl:first-child,
table:first-child {
  margin-top: 0;
}

p:last-child,
ol:last-child,
ul:last-child,
dl:last-child,
table:last-child {
  margin-bottom: 0;
}

a {
  transition: .3s;
}

a img {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

ul,ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

dt {
  margin: 0;
  padding: 0;
}
dd {
  margin: 0;
  padding: 0;
}

.sp-link {
  cursor: auto;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/*-------------------------------------------------------------------------------------*/

.header-box {
  /*position: fixed;*/
  top: 0;
  right: 0;
  left: 0;
  z-index: 1500;
}

.header-box.is-fixed {
  /*box-shadow: 0 0 10px rgb(0 0 0 / 10%);*/
}

.header-02 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2000;
}

.header-02.is-fixed {
  position: fixed;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.header-02-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  height: 80px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-02-logo img {
  width: 339px;
}

.header-02-nav {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.header-02-nav li {
  margin: 0 0 0 32px;
}

.header-02-nav li a {
  display: block;
  position: relative;
  padding: 2px 0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.header-02-nav li a.pdf span:after {
  content: "";
  display: inline-block;
  background: url(../images/pdf-icon.png) no-repeat 0 center;
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-left: .5em;
  position: relative;
  top: 1px;
}

.header-02-nav li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #fff;
  transition: .3s;
}

.header-02-nav li a:hover:after {
  left: 0;
  width: 100%;
}

.header-02-nav .header-new a {
  display: flex;
  align-items: center;
}

.header-new span {
  display: inline-block;
  font-family: 'Noto Sans JP';
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  background: #DC0161;
  border-radius: 3px;
  padding: 0 6px;
  margin: 0 0 0 8px;
}

@media screen and (max-width: 767px) {
  .header-02-logo img {
    width: 220px;
  }
  .header-02-inner {
    height: auto;
  }
  .header-02-nav li {
    margin: 0 0 0 16px;
  }
  .header-02-nav {
    display: block;
  }
}

/*-------------------------------------------------------------------------------------*/

.kv-img {
  position: fixed;
  background-image: url(../images/kv-background.jpg);
  background-position: center bottom;
  background-size: cover;
  /*background-attachment: fixed;*/
  width: 100%;
  height: 100vh;
  z-index: -1;
  opacity: 0;
  animation: fadein 3s ease forwards;
  animation-delay: 1s;
}
.kv-section {
  z-index: 1;
  padding: 0 16px;
}

.kv-section .kv-inner{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 100vh;
}

.kv-logo {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 336px;
  margin: 0 auto;
}

.kv-logo-sec {
  position: absolute;
  right: 0;
  bottom: 160px;
  max-width: 100px;
  margin: 0;
}
.kv-logo img{
  width: 100%;
  height: auto;
}

/*.kv-logo {
  transition: opacity 1s, visibility 1s;
  opacity: 0;
}*/

.photo-opa{
  opacity:0;
}

.photo-blur {
  filter: blur(0);
  opacity: 0;
  animation: blur 3s ease forwards;
  animation-delay: 0s;
}
.photo-blur4s {
  filter: blur(0);
  opacity: 0;
  animation: blur 4s ease forwards;
  animation-delay: 4s;
}

.logo-move {
  animation: logo-move 4s ease forwards;
  animation-delay: 4s;
}
.logo-scale {
  animation: logo-scale 4s ease forwards;
  animation-delay: 4s;
}
.opacity-out {
  animation: opacity-out 2s ease forwards;
  animation-delay: 4s; 
}



@media screen and (max-width: 767px) {
  .kv-img {
    height: 100vh;
    height: -webkit-fill-available;
  }
  .kv-logo {
    width: 250px;
    margin: 0 auto;
  }

  .kv-logo-sec {
    position: absolute;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 150px;
    max-width: 100px;
    margin: 0 auto;
  }

}


.opening-copy {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
  padding-bottom: 200px;
}
.opening-copy h2{
  width: 313px;
  margin-bottom: 2em;
}
.opening-copy h2 img{
  width: 313px;
  height: auto;
}
.opening-copy dt{
  font-size: 22px;
  margin-bottom: 1.5em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .opening-copy {
    /*top: 50%;*/
    top: 43%;
    transform: translateY(-50%);
  }
}



@keyframes fadein {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@keyframes blur {
  0% {
    opacity:0;
    filter: blur(10px);
  }
  100% {
    opacity:1;
    filter: blur(0);
  }
}

@keyframes opacity-out {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}


@keyframes logo-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
@keyframes logo-scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.4);
  }
}



/*-------------------------------------------------------------------------------------*/

.ttl-01 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 0;
  font-size: 64px;
  font-weight: bold;
  color: #003288;
  position: relative;
}

.ttl-01 span{
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #031B24;
  position: relative;
  padding-left: 45px;
  font-family: "Noto Sans JP", sans-serif;
}

.ttl-01 span:before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background-color:#031B24;
}

.btn-01 a{
  position: relative;
  border: 1px #fff solid;
  color: #fff;
  display: block;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  transition: .3s ease-in-out;
  margin-right: 15px;
}

.btn-01 a:hover{
  opacity: .7;
}

.btn-01 a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  transition: .3s ease-in-out;
  width: 50px;
  height: 1px;
  background-color: #fff;
  transform: translateY(-50%);
}

.btn-01 a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  transition: .3s ease-in-out;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 0 10px;
  border-color: transparent transparent transparent #fff;
  transform: translateY(-100%);
}

.btn-02 a{
  position: relative;
  border: 1px #003288 solid;
  color: #003288;
  display: block;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  transition: .3s ease-in-out;
  margin-right: 15px;
}

.btn-02 a:hover{
  opacity: .7;
}

.btn-02 a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  transition: .3s ease-in-out;
  width: 50px;
  height: 1px;
  background-color: #003288;
  transform: translateY(-50%);
}

.btn-02 a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  transition: .3s ease-in-out;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 0 10px;
  border-color: transparent transparent transparent #003288;
  transform: translateY(-100%);
}

.btn-02 a.pdf2 span:after {
  content: "";
  display: inline-block;
  background: url(../images/pdf-icon2.png) no-repeat 0 center;
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-left: .5em;
  position: relative;
  top: 1px;
}

@media screen and (max-width: 767px) {
  .ttl-01 {
    font-size: 32px;
  }
  .ttl-01 span{
    font-size: 12px;
    padding-left: 45px;
  }
}

/*-------------------------------------------------------------------------------------*/

.opening {
  padding: 0 16px;
  background-image: url(../images/opening-bg.png);
  background-position: center bottom;
  background-size: cover;
}
.opening-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 150px;
}

.opening-objective {
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  margin-bottom: -80px;
}
.opening-objective .txt{
  width: 48.18%;
}
.opening-objective .txt dt{
  margin-bottom: 1.5em;
}
.opening-objective .txt dt img{
  width: 153px;
  height: auto;
}
.opening-objective .txt dd{
  line-height: 2.5;
  font-weight: bold;
  margin-bottom: 1px;
  font-size: 22px;
}
.opening-objective .txt ul li{
 margin-top: 20px;
}
.opening-objective .txt ul li.no1:before{
  content: "";
  display: inline-block;
  width: 23px;
  height: 30px;
  background: url(../images/objective1.png) no-repeat 0 0;
  background-size: cover;
  margin-right: .5em;
  position: relative;
  top: 8px;
}
.opening-objective .txt ul li.no2:before{
  content: "";
  display: inline-block;
  width: 23px;
  height: 30px;
  background: url(../images/objective2.png) no-repeat 0 0;
  background-size: cover;  
  margin-right: .5em;
  position: relative;
  top: 8px;
}
.opening-objective .txt ul li.no3:before{
  content: "";
  display: inline-block;
  width: 23px;
  height: 30px;
  background: url(../images/objective3.png) no-repeat 0 0;
  background-size: cover; 
  margin-right: .5em;
  position: relative;
  top: 8px;
}
.opening-objective .pic{
  width: 37.27%;
}
.opening-objective .pic img{
  position: relative;
  top: 95px;
}

@media screen and (max-width: 767px) {
  .opening-copy {
    color: #fff;
    font-size: 14px;
    padding-bottom: 40px;
  }
  .opening-copy h2 {
    /*width: 250px;*/
    width: 150px;
    margin-bottom: 1em;
  }
  .opening-copy h2 img {
    width: 100%;
    height: auto;
  }
  .opening-copy dt {
    font-size: 20px;
    margin-bottom: 1em;
  }
  .opening-objective {
    font-size: 14px;
    display: block;
    margin-bottom: 0;
  }
  .opening-objective .txt {
    width: 100%;
  }
  .opening-objective .txt dd {
    font-size: 18px;
    line-height: 1.5;
  }
  .opening-objective .txt ul li {
    margin-top: 10px;
  }
  .opening-objective .pic {
    width: 100%;
  }
  .opening-objective .pic img {
    position: relative;
    top: 40px;
  }
}

/*-------------------------------------------------------------------------------------*/

.history {
  padding: 0 16px;
  background: #fff;
}
.history-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 0 80px;
}

.history-inner .ttl-01 {
  margin:0 0 60px 0;  
}

.history-catch {
  margin:0 0 60px 0;
}

.tabArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #87C0DB;
  margin-bottom: 50px;
  height: 87px;
}
.tabArea .one_tab {
  width: 20%;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #031B24;
  cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
  /*transition-duration: 0.3s;*/
}

.tabArea .one_tab:hover {
  opacity: 0.7;
  text-decoration: none;
}
.tabArea .one_tab .tab_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  transition-duration: 0.3s;
}
.tabArea .one_tab.select .tab_inner {
  border-bottom: solid 7px #87C0DB;
}
.tabArea.bottom {
  align-items: flex-start;
}

.contents .tab_main {
  display: none;
  transition-duration: 0.3s;
}

.tab_main.is_show {
  display: block;
  transition-duration: 0.3s;
}

.year-block {
  display: flex;
  justify-content: space-between;
}

.year-block .year{
  width: 17.73%;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #003288;
  line-height: 1;
  padding-bottom: 40px;
}
.year-block .month{
  width: 11.36%;
  position: relative;
  border-left: 1px solid #87C0DB;
  padding: 0 0 40px 20px;
}

.year-block .month:before{
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background: #003288;
  top: 8px;
  left: -6px;
  border-radius: 10em;
}

.year-block .event{
  width: 36.36%;
  padding-bottom: 40px;
}
.year-block .event .pic{
  margin-bottom: 1em;
}

.year-block .event ol{
  margin-bottom: 1em;
  padding-left: 1em;
}
.year-block .event ol li{
  list-style-type: disc;
}
.year-block .japan{
  width: 30.36%;
  padding-bottom: 40px;
}
.year-block .japan dl{
  padding-left: 50px;
}
.year-block .japan dt{
  color: #87C0DB;
  margin-bottom: .5em;
}
.year-block .japan dd{
  padding: 20px;
  background: #DCEFF8;
  position: relative;
}
.year-block .japan dd ol{
  padding-left: 1em;
}
.year-block .japan dd ol li{
  list-style-type: disc;
}
.year-block .japan dd:before{
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 10px 4px 0;
  border-color: transparent #DCEFF8 transparent transparent;
}


@media screen and (max-width: 767px) {
  .history-inner {
    padding: 80px 0 40px;
  }
  .history-inner .ttl-01 {
    margin: 0 0 20px 0;
  }
  .history-catch {
    margin: 0 0 20px 0;
  }
  .tabArea {
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: solid 1px #87C0DB;
    margin-bottom: 50px;
    height: auto;
  }
  .tabArea .one_tab {
    width: 33%;
    font-size: 30px;
  }
  .tabArea .one_tab .tab_inner {
    height: 60px;
  }
  .year-block .year {
    width: 18.7%;
    font-size: 30px;
  }
  .year-block .month {
    width: 11.3%;
  }
  .year-block .event {
    width: 56%;
  }
  .year-block .japan {
    display: none;
  }
  .japan-sp dl{
    padding-left: 0;
  }
  .japan-sp dt{
    color: #87C0DB;
    margin-bottom: .5em;
  }
  .japan-sp dd{
    padding: 10px;
    background: #DCEFF8;
    position: relative;
  }
  .japan-sp dd ol{
    padding-left: 1em;
  }
  .japan-sp dd ol li{
    list-style-type: disc;
  }
  .japan-sp dd:before{
    content: none;
  }
}


/*-------------------------------------------------------------------------------------*/


.message {
  padding: 0 16px;
  background-image: url(../images/message-bg.png);
  background-position: center center;
  background-size: cover;
}
.message-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0 100px;
}
.message-inner h3{
  margin-bottom: 40px;
}
.message-inner dl{
  display: flex;
  justify-content: space-between;
}
.message-inner dl dt{
  width: 46.36%;
}
.message-inner dl dt h4 span{
  display: block;
  font-size: 32px;
  margin-top: 1em;
}
.message-inner dl dd{
  width: 50%;
}
.message-inner dl dd .name {
  text-align: right;
}
.message-inner dl dd .name span{
  display: block;
  font-size: 18px;
}


@media screen and (max-width: 767px) {
  .message-inner {
    padding: 40px 0 40px;
  }
  .message-inner h3 {
    margin-bottom: 20px;
  }
  .message-inner dl {
    display: block;
  }
  .message-inner dl dt {
    width: 100%;
  }
  .message-inner dl dd {
    width: 100%;
  }
  .message-inner dl dt h4 span {
    font-size: 30px;
    margin-top: .5em;
  }
}

/*-------------------------------------------------------------------------------------*/

.cross {
  background: #fff;
}
.cross-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 16px 80px;
}

.cross .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cross .title-wrap h3{
  width: 28.18%;
}
.cross .title-wrap p{
  width: 62.09%;
}

.cross-talk-link {
  display: flex;
  justify-content: space-between;
}
.cross-talk-link .block1,
.cross-talk-link .block2{
  width: 50%;
  background: url(../images/cross-talk1.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  min-height: 504px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}

.cross-talk-link .block2{
  background: url(../images/cross-talk2.jpg) center center no-repeat;
  background-size: cover;
}

.cross-talk-link .block1 .tab,
.cross-talk-link .block2 .tab{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  padding: 0 20px 20px;
}

.cross-talk-link .block1 .tab span,
.cross-talk-link .block2 .tab span{
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  margin-top: 1em;
}

.cross-talk-link .block1 p,
.cross-talk-link .block2 p{
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  margin: 0 0 40px 0;
}

.cross-talk-link .btn-01 {
  max-width: 255px;
  width: 100%;
  margin: 0 auto;
}

.cross-talk-link .btn-01 a{
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .cross-inner {
    padding: 40px 16px 40px;
  }
  .cross .title-wrap {
    display: block;
  }
  .cross .title-wrap h3 {
    width: 100%;
    margin-bottom: 20px;
  }
  .cross .title-wrap p {
    width: 100%;
  }
  .cross-talk-link {
    display: block;
  }
  .cross-talk-link .block1,
  .cross-talk-link .block2 {
    width: 100%;
    min-height: 404px;
  }
  .cross-talk-link .block1 .tab,
  .cross-talk-link .block2 .tab {
    position: absolute;
    font-size: 30px;
    padding: 0 10px 10px;
    line-height: 1.5;
  }
  .cross-talk-link .block1 .tab span,
  .cross-talk-link .block2 .tab span {
    font-size: 12px;
    margin-top: 0;
  }
  .cross-talk-link .block1 p,
  .cross-talk-link .block2 p {
    font-size: 18px;
    margin: 0 0 20px 0;
  }
}


/*-------------------------------------------------------------------------------------*/

.local {
  padding: 0 16px;
  background: #fff;
  position: relative;
}

.local:before {
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 535px;
  display:block;
  background-color: #F2F8FA;
}

.local-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 0 140px;
  position: relative;
  z-index: 1;
}

.local .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.local .title-wrap h3{
  width: 53%;
}

.local .title-wrap .btn-01-wrap{
  width: 31.55%;
}

.local .title-wrap .btn-01-wrap a{
  max-width: 347px;
  box-sizing: border-box;
}

.local .catch {
  margin-bottom: 40px;
}

.local-list ul {
  display: flex;
  justify-content: space-between;
}

.local-list ul li{
  width: 30.91%;
}

.local-list ul li a{
  text-decoration: none;
  color: #031B24;
}

.local-list ul li a:hover{
  opacity: .7;
}

.local-list .pic {
  margin-bottom: 1em;
}

.local-list dt{
  position: relative;
  margin-bottom: 1em;
}
.local-list dt span{
  display: inline-block;
  background: #fff;
  padding-right: .3em;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.local-list dt:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #87C0DB;
  top: 60%;
  transform: translateY(-50%);
}

.local-list dd strong{
  display: block;
  margin-bottom: .8em;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .local-inner {
    padding: 40px 0 20px;
  }
  .local .title-wrap {
    display: block;
    margin-bottom: 40px;
  }
  .local .title-wrap h3 {
    width: 100%;
    margin-bottom: 20px;
  }
  .local .title-wrap .btn-01-wrap {
    width: 100%;
  }
  .local-list ul {
    display: block;
  }
  .local-list ul li {
    width: 100%;
    margin-bottom: 40px;
  }
  .local-list dt span {
    font-size: 30px;
  }
  .local-list dd strong {
    display: block;
    margin-bottom: .4em;
    font-size: 20px;
  }
}

/*-------------------------------------------------------------------------------------*/

.scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #999;
  letter-spacing: .1em;
  padding: 0 0 76px;
}

.scroll:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: #999;
}

/*-------------------------------------------------------------------------------------*/

.footer-pic {
  display: flex;
  justify-content: space-between;
}
.footer-pic > div{
  width: 25%;
}
.footer {
  padding: 80px 0 0;
  background-image: url(../images/footer-bg.png);
  background-position: center bottom;
  background-size: cover;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 80px 16px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.footer-logo-wrap {
  width: 48%;
}
.footer-logo {
  margin: 0 0 40px;
}
.footer-logo img {
  width: 320px;
}
.footer-logo-wrap dt{
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 1em;
}
.footer-link-wrap {
  width: 48%;
}
.footer-link-wrap ul{
  display: flex;
  justify-content: end;
  margin-bottom: 110px;
}
.footer-link-wrap ul li{
  margin-left: 1em;
}
.footer-link-wrap ul li a{
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 2px 20px 3px;
  position: relative;
  font-weight: bold;
}

.footer-link-wrap ul li a:hover{
  opacity: .7;
}
.footer-link-wrap ul li a.pdf:after {
  content: "";
  display: inline-block;
  background: url(../images/pdf-icon.png) no-repeat 0 center;
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-left: .5em;
  position: relative;
  top: 1px;
}

.footer-link-wrap .btn{
  text-align: right;
}
.footer-link-wrap .btn a.blank{
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 10px 25px 12px;
  position: relative;
  margin-left: auto;
  font-weight: bold;
}
.footer-link-wrap .btn a.blank:hover{
  opacity: .7;
}
.footer-link-wrap .btn a.blank:after {
  content: "";
  display: inline-block;
  background: url(../images/blank-icon.png) no-repeat 0 center;
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-left: .5em;
  position: relative;
  top: 1px;
}
.footer-copy-wrap {
  border-top: #40A8CA 1px solid;
}
.footer-copy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px;
}
.copyright {
  font-size: 12px;
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.playfair-font{
  font-family: 'Playfair Display', serif;
}


@media screen and (max-width: 767px) {
  .footer-pic {
    flex-wrap: wrap;
  }
  .footer-pic > div{
    width: 50%;
  }
  .footer {
    padding: 40px 0 0;
  }
  .footer-inner {
    padding: 0 16px 40px 16px;
    display: block;
  }
  .footer-logo-wrap {
    width: 100%;
  }
  .footer-logo {
    text-align: center;
    margin: 0 0 20px;
  }
  .footer-logo-wrap dl {
    margin-bottom: 40px;
  }
  .footer-logo-wrap dt {
    font-size: 20px;
    margin-bottom: 1em;
    text-align: center;
  }
  .footer-link-wrap {
    width: 100%;
  }
  .footer-link-wrap ul {
    display: block;
    padding: 0;
    margin: 0 0 40px 0;
  }
  .footer-link-wrap ul li{
    margin-bottom: 20px;
  }
  .footer-link-wrap ul li a {
    padding: 10px 20px 10px;
    text-align: center;
  }
  .footer-link-wrap .btn a.blank {
    display: block;
    text-align: center;
  }
  .footer-link-wrap ul li {
    margin: 0 0 20px 0;
  }
  .footer-copy-inner {
    padding: 10px 16px;
  }
  .copyright {
    text-align: center;
  }
}





/* Talk -------------------------------------------------------------------------------------*/

.kv-img-talk1 {
  position: fixed;
  background-image: url(../images/talk1-background.jpg);
  background-position: center top;
  background-size: cover;
  /*background-attachment: fixed;*/
  width: 100%;
  height: 680px;
  z-index: -1;
}
.kv-img-talk2 {
  position: fixed;
  background-image: url(../images/talk2-background.jpg);
  background-position: center top;
  background-size: cover;
  /*background-attachment: fixed;*/
  width: 100%;
  height: 680px;
  z-index: -1;
}
.kv-talk-section {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  height: 680px;
  display: flex;
  align-items: flex-end;
}
.kv-talk-section .title{
  position: relative;
  background: #fff;
  padding: 50px 110px 0 0;
}
.kv-talk-section .title:before{
content: "";
position: absolute;
display: block;
top: 0;
bottom: 0;
width: 100vw;
height: 100%;
background: #fff;
margin-left: calc(100% - 100vw);
z-index: -1;
 } 
.kv-talk-section .title img{
  max-width: 287px;
  width: 100%;
  height: auto;
}
.kv-talk-section .title h1{
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  line-height: 1;
  margin: 0 0 .1em 0;
  padding: 0;
}
.kv-talk-section .title span{
  display: inline-block;
  padding: 0 10px;
  background: #000;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .kv-talk-section {
    height: auto;
    display: block;
    background: #fff;
  }
  .kv-img-talk1 {
    position: relative;
    background-image: none;
    width: 100%;
    height: auto;
  }
  .kv-img-talk2 {
    position: relative;
    background-image: none;
    width: 100%;
    height: auto;
  }
  .kv-talk-section .title {
    position: relative;
    background: #fff;
    padding: 20px;
    top: -20px;
    margin: 0 auto;
  }
  .kv-talk-section .title h1 {
    font-size: 64px;
    line-height: 1;
    margin: 0 0 .1em 0;
    padding: 0;
  }
  .kv-talk-section .title:before{
    content:none;
  }
}


/*-------------------------------------------------------------------------------------*/

.talk-menber {
  background: #fff;
  padding: 80px 0 120px;
}

.talk-menber .talk-menber-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px;
}

.talk-menber .talk-menber-inner .talk-menber-title-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.talk-menber .talk-menber-inner .talk-menber-title-wrap .title {
  width: 65%;
}
.talk-menber .talk-menber-inner .talk-menber-title-wrap .talk-menber-title-list-wrap {
  width: 32%;
}

.talk-menber .talk-menber-inner .talk-menber-title-wrap .talk-menber-title-list-wrap  ul {
  display: flex;
  justify-content: space-between;
}
.talk-menber .talk-menber-inner .talk-menber-title-wrap .talk-menber-title-list-wrap  ul li{
  width: 45%;
}
.talk-menber .talk-menber-inner .talk-menber-title-wrap .talk-menber-title-list-wrap  ul li dt{
  margin-bottom: .5em;
  max-width: 120px;
  text-align: center;
  margin: 0 auto;
}
.talk-menber .talk-menber-inner .talk-menber-title-wrap .talk-menber-title-list-wrap  ul li strong {
  font-size: 18px;
  font-weight: bold;
  display: block;
  color: #003288;
  text-align: center;
}

h2.talk-menber-title {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: relative;
  margin-bottom: 40px;
}

h2.talk-menber-title:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: #031B24;
}

.talk-menber-copy {
  margin: 0 0 40px 0;
}
.talk-menber-list-wrap {
  border-top: solid 1px #E6E6E6;
  border-bottom: solid 1px #031B24;
  padding: 0 0 40px 0;
}

.talk-menber-list-wrap ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.talk-menber-list-wrap ul:after,
.talk-menber-list-wrap ul:before{
  content:"";
  display:block;
  width: 31%;
  height:0;
}
.talk-menber-list-wrap ul:before{
  order:1;
}
.talk-menber-list-wrap ul li{
  width: 31%;
  margin-bottom: 0;
  position: relative;
}
.talk-menber-list-wrap ul li:before{
  content:"";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 51.89%;
  background: #F2F8FA;
}

.talk-menber-list-wrap ul li dl{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  top: 25px;
}

.talk-menber-list-wrap ul li dl dt{
  width: 35.29%;
}

.talk-menber-list-wrap ul li dl dd{
  width: 60%;
}

.talk-menber-list-wrap ul li dl dd strong {
  font-size: 18px;
  font-weight: bold;
  display: block;
  color: #003288;
}

.talk-menber-list-wrap ul li .copy {
  padding: 15px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .talk-menber {
    background: #fff;
    padding: 0 0 40px;
  }
  h2.talk-menber-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .talk-menber-copy {
    margin: 0 0 1em 0;
  }
  .talk-menber-list-wrap {
    padding: 0;
  }
  .talk-menber-list-wrap ul {
    padding-top: 10px;
  }
  .talk-menber-list-wrap ul:after,
  .talk-menber-list-wrap ul:before{
    width: 48%;
  }
  .talk-menber-list-wrap ul li{
    margin-bottom: 20px;
    width: 48%;
  }
  .talk-menber-list-wrap ul li::before {
    content: none;
  }
  .talk-menber-list-wrap ul li .copy {
    padding: 15px;
    background: #F2F8FA;
    z-index: 0;
  }
  .talk-menber-list-wrap ul li dl {
    top: 10px;
  }
  .talk-menber-list-wrap ul li dl dt {
    width: 37.29%;
  }
  .talk-menber-list-wrap ul li dl dd {
    width: 58%;
  }
  .talk-menber-list-wrap ul li dl dd strong {
    font-size: 16px;
  }
}

/*-------------------------------------------------------------------------------------*/

.talk-item {
  background: #fff;
}
.talk-item .talk-item-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 80px;
}
.talk-item .talk-item-inner dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.talk-item .talk-item-inner dl dt{
  width: 6.36%;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
.talk-item .talk-item-inner dl dd{
  width: 91.82%;
  font-size: 24px;
  font-weight: bold;
}
.talk-item .talk-item-inner ul {
  display: flex;
  justify-content: space-between;
}

.talk-item .talk-item-inner ul li{
  width: 50%;
}
.talk-item .talk-item-inner ul li:last-child{
  border-left: 1px solid #fff;
}

.talk-item-end {
  background: #fff;
}
.talk-item-end .talk-item-end-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 120px;
}

.talk-item-end .talk-item-end-inner p{
  padding: 0;
  margin: 0 0 40px 0;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .talk-item .talk-item-inner {
    padding: 0 16px 20px;
  }
  .talk-item .talk-item-inner dl {
    margin-bottom: 20px;
  }
  .talk-item .talk-item-inner dl dt {
    width: 16%;
    font-size: 28px;
  }
  .talk-item .talk-item-inner dl dd {
    width: 80%;
    font-size: 18px;
  }
  .talk-item .talk-item-inner ul {
    display: block;
  }
  .talk-item .talk-item-inner ul li {
    width: 100%;
  }
  .talk-item .talk-item-inner ul li:last-child {
    border-top: 1px solid #fff;
    border-left:none;
  }
  .talk-item-end .talk-item-end-inner {
    padding: 0 16px 40px;
  }
  .talk-item-end .talk-item-end-inner p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: bold;
  }
  .talk-menber .talk-menber-inner .talk-menber-title-wrap {
    display: block;
    margin-bottom: 20px;
  }
  .talk-menber .talk-menber-inner .talk-menber-title-wrap .title {
    width: 100%;
    margin-bottom: 40px;
  }
  .talk-menber .talk-menber-inner .talk-menber-title-wrap .talk-menber-title-list-wrap {
    width: 100%;
  }
  .talk-menber .talk-menber-inner .talk-menber-title-wrap .talk-menber-title-list-wrap ul li strong {
    font-size: 16px;
  }
}


/*-------------------------------------------------------------------------------------*/


.talk-wrap {
  background: #fff;
}
.talk-wrap .talk-wrap-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 120px;
}
.talk-parts-l {
  max-width: 720px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 40px;
}
.talk-parts-l dt{
  width: 11.11%;
}
.talk-parts-l dt strong{
  display: block;
  text-align: center;
}
.talk-parts-l dd{
  position: relative;
  width: 85.14%;
  box-sizing: border-box;
  padding: 30px;
  background: #DCEFF8;
}
.talk-parts-l dd:before{
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 14px 5.5px 0;
  border-color: transparent #dceff8 transparent transparent;
}
.talk-parts-r {
  max-width: 720px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  margin: 0 0 40px auto;
}
.talk-parts-r dt{
  width: 11.11%;
}
.talk-parts-r dt strong{
  display: block;
  text-align: center;
}
.talk-parts-r dd{
  position: relative;
  width: 85.14%;
  box-sizing: border-box;
  padding: 30px;
  background: #F2F8FA;
}
.talk-parts-r dd:before{
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 14px;
  border-color: transparent transparent transparent #F2F8FA;
}

@media screen and (max-width: 767px) {
  .talk-wrap .talk-wrap-inner {
    padding: 0 16px 40px;
  }
  .talk-parts-l {
    margin: 0 0 20px;
  }
  .talk-parts-l dt{
    width: 20.11%;
  }
  .talk-parts-l dd{
    width: 72.14%;
    padding: 15px;
  }
  .talk-parts-r {
    margin: 0 0 20px;
  }
  .talk-parts-r dt{
    width: 20.11%;
  }
  .talk-parts-r dd{
    width: 72.14%;
    padding: 15px;
  }
}


/*-------------------------------------------------------------------------------------*/


.talk-next {
  display: flex;
  justify-content: space-between;
}
.talk-next .block1,
.talk-next .block2{
  width: 100%;
  background: url(../images/cross-talk1-all.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  min-height: 504px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}

.talk-next .block2{
  background: url(../images/cross-talk2-all.jpg) center center no-repeat;
  background-size: cover;
}

.talk-next .block1 .tab,
.talk-next .block2 .tab{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  padding: 0 20px 20px;
}

.talk-next .block1 .tab span,
.talk-next .block2 .tab span{
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  margin-top: 1em;
}

.talk-next .block1 p,
.talk-next .block2 p{
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  margin: 0 0 40px 0;
}

.talk-next .btn-01 {
  max-width: 255px;
  width: 100%;
  margin: 0 auto;
}

.talk-next .btn-01 a{
  width: 100%;
  box-sizing: border-box;
}


@media screen and (max-width: 767px) {
  .talk-next .block1,
  .talk-next .block2{
    background: url(../images/cross-talk1-all-sp.jpg) center center no-repeat;
    background-size: cover;
    min-height: 380px;
  }
  .talk-next .block2{
    background: url(../images/cross-talk2-all-sp.jpg) center center no-repeat;
    background-size: cover;
  }
  .talk-next .block1 .tab,
  .talk-next .block2 .tab{
    font-size: 34px;
    padding: 0 15px 15px;
  }
  .talk-next .block1 p, .talk-next .block2 p {
    font-size: 18px;
    margin: 0 0 20px 0;
  }
}

/*-------------------------------------------------------------------------------------*/

.breadcrumb {
  background: #fff;
}

.breadcrumb .inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
}
.breadcrumb .inner p{
  margin: 0;
  padding: 0;
}

.breadcrumb .inner p a{
  text-decoration: none;
  color: #031B24;
}

.breadcrumb .inner p:not(:last-child):after {
  content: ">";
  margin: 0 5px;
}

@media screen and (max-width: 767px) {
}

/*-------------------------------------------------------------------------------------*/
