@charset "utf-8";
/*
Theme Name: 株式会社國光
Version: 1.0.0
Author: 株式会社ピーツーティー P2T
Author URI: http://p2t.jp/
*/

/* ========================================================
  RESET
========================================================= */
* {
	padding: 0px;
	margin: 0px;
	outline: none;
}

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

html {
	border: 0px;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}

body {
	color: #000000;
	cursor: default;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 19px; font-size: 1.9rem;
	line-height: 1.8;
	word-wrap: break-word;
  letter-spacing: .05em;
  text-align: justify;
  width: 100%;
}

img {
	max-width:100%;
	height:auto;
	vertical-align: bottom;
	border: 0;
}

a {
	color: #007dd4;
  text-decoration: none;

}
a:hover,
a:hover img {
	opacity: .7;
	-webkit-opacity: .7;
	-moz-opacity: .7;
}

a img {
  transition: all .3s;
}

/* ========================================================
  LAYOUT
========================================================= */
/*  header ------------------  */
.header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transition: all .3s;
}
.header__inner {
  width: 95%;
  max-width: 1300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin: 0 auto;
  align-items: center;
  height: 130px;
  padding: 20px 0 20px;
  transition: all .3s;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 34px; font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
  filter: brightness(0) saturate(100%) invert(91%) sepia(100%) saturate(0%) hue-rotate(276deg) brightness(103%) contrast(107%);
}
.header__logo img {
  width: 400px;
  margin-right: 15px;
  vertical-align: baseline;
  transition: all .3s;
}
.header__logo a {
  text-decoration: none;
}
.header.fixed {
  background-color: rgba(92, 168, 173, 0.9);
}
.header.fixed .header__inner {
  height: 85px;
}
.header.fixed .header__logo img {
  width: 240px;
}
@media only screen and (max-width: 1350px) {
.header__logo img {
  width: 320px;
}
}
@media only screen and (max-width: 1200px) {
.header__logo img {
  width: 240px;
}
}
@media only screen and (max-width: 960px) {
.header__logo img {
  max-width: 240px;
}
.header__inner {
  align-items: inherit;
  height: auto;
  padding: 0;
}
.header.fixed .header__inner {
  height: inherit;
}
}

/*  nav-global ------------------  */
.global-nav {
  width: 100%;
  flex: 1;
}
.global-nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: right;
  margin: 0 auto;
  list-style: none;
  gap: 20px;
}
.global-nav li.global-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  margin: 0;
}
.global-nav li.global-nav__item a {
  color: #fff;
  text-decoration: none;
  font-size: 20px; font-size: 2.0rem;
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
}
.global-nav li.global-nav__item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:#fff;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.global-nav li.global-nav__item.current a::after,
.global-nav li.global-nav__item a:hover::after,
.home .global-nav li.global-nav__home a::after,
.company .global-nav li.global-nav__company a::after,
.business .global-nav li.global-nav__business a::after,
.example .global-nav li.global-nav__example a::after,
.collaborators .global-nav li.global-nav__collaborators a::after,
.recruit .global-nav li.global-nav__recruit a::after,
.contact .global-nav li.global-nav__contact a::after,
.news .global-nav li.global-nav__news a::after,
.archive .global-nav li.global-nav__news a::after,
.single .global-nav li.global-nav__news a::after {
  transform: scale(1, 1);
}

.global-nav li.global-nav__item a:hover {
  opacity: 1;
}

.global-nav__dropdown-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -10px;
  white-space: nowrap;
  list-style: none;
  background-color: rgba(0, 125, 212, 0.8);
  padding: 10px 20px;
}
.global-nav .global-nav__item:hover .global-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: .8s;
  transition:  .8s;
}
.global-nav li.global-nav__item .global-nav__dropdown-menu a::after {
  display: none;
}
.global-nav .global-nav__item .global-nav__dropdown-menu a {
  font-size: 15px; font-size: 1.5rem;
  font-weight: 400;
  display: block;
  text-align: left;
  padding: 10px 0 5px 10px;
  position: relative;
}
.global-nav .global-nav__item .global-nav__dropdown-menu a::before {
  content: "";
  width: 5px;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
}
.global-nav .global-nav__item .global-nav__dropdown-menu a:hover {
  color: #fff;
  opacity: .8;
}
.global-nav .global-nav__item .global-nav__dropdown-menu a:hover::before {
  background-color: #fff;
}

.openbtn {
  display: none;
}

@media only screen and (max-width: 1280px) {
.global-nav li.global-nav__item a {
  font-size: 19px; font-size: 1.9rem;
}
}
@media only screen and (max-width: 1180px) {
.global-nav li.global-nav__item a {
  font-size: 16px; font-size: 1.6rem;
}
.global-nav__wrap {
  gap: 15px;
}
.global-nav li.global-nav__item {
  margin: 0;
}
}
@media only screen and (max-width: 960px) {
.header {
  z-index: 999;
  position: fixed;
  top: 0;
}
.header__inner {
  width: 100%;
}
.header__logo {
  padding: 17px 15px 17px;
  z-index: 999;
}
html.fixed {
  height: 100%;
  overflow: hidden;
}
.global-nav {
	position: absolute;
	z-index: 998;
	width: 100%;
	height: auto;
  padding: 0;
	transition: all .5s;
  opacity: 0;
}
.global-nav.panelactive {
  opacity: 1;
}
.global-nav__wrap {
  position: absolute;
  z-index: 998;
  width: 100%;
  height: 100vh;
  padding: 120px 20px 120px;
  background-color: rgba(92, 168, 173, 0.92);
  display: none;
  overflow: auto;
}
.panelactive .global-nav__wrap {
  display: block;
}
.global-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  position: static;
  width: 100%;
  white-space: nowrap;
  padding: 0px 20px 10px;
  background-color: inherit;
}
.global-nav li.global-nav__item {
  width: 100%;
  flex-wrap: wrap;
  justify-content: left;
}
.global-nav li.global-nav__item a {
  padding: 15px 20px 15px;
  text-align: left;
  text-shadow: none;
  color: #fff;
}
.global-nav li.global-nav__item a:hover,
.global-nav .global-nav__item .global-nav__dropdown-menu a:hover {
  color: #aaddff;
}
.global-nav li.global-nav__item > a {
  border-top: 1px dotted #fff;
  font-family: var(--font-serif);
  font-size: 18px; font-size: 1.8rem;
}
.global-nav li.global-nav__item:last-of-type > a {
  border-bottom: 1px dotted #fff;
}
.global-nav__item a::before {
  content: none;
}
.global-nav__item a::before {
  background-size: 50px 38px;
  width: 50px;
  height: 38px;
}
.openbtn {
  position: absolute;
	z-index: 9999;/*ボタンを最前面に*/
	top: 0;
	right: 10px;
	cursor: pointer;
	width: 60px;
	height: 60px;
  display: block;
}
.openbtn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 13px;
	height: 4px;
	border-radius: 2px;
	background-color: #fff;
	width: 60%;
}
.openbtn span:nth-of-type(1) {
  top:15px; 
}
.openbtn span:nth-of-type(2) {
  top:23px;
}
.openbtn span:nth-of-type(3) {
  top:31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}
.openbtn .openbtn-menu {
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
  position: absolute;
  bottom: 2px;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  letter-spacing: .1em;
}

.global-nav li.global-nav__item.current a::after,
.global-nav li.global-nav__item a:hover::after,
.home .global-nav li.global-nav__home a::after,
.company .global-nav li.global-nav__company a::after,
.business .global-nav li.global-nav__business a::after,
.example .global-nav li.global-nav__example a::after,
.collaborators .global-nav li.global-nav__collaborators a::after,
.recruit .global-nav li.global-nav__recruit a::after,
.contact .global-nav li.global-nav__contact a::after,
.news .global-nav li.global-nav__news a::after,
.archive .global-nav li.global-nav__news a::after,
.single .global-nav li.global-nav__news a::after {
  display: none;
}

}

/*  Page Home ------------------------  */
.mainvisual {
  background-image: url(images/home/main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.mainvisual .mainvisual__inenr {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 250px 0 180px;
}
.mainvisual__inenr .mainvisual__img img {
  max-width: 430px;
  width: 100%;
}
.home-catch-copy {
  font-size: 70px; font-size: 7.0rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: .8em;
  text-align: left;
  word-break: break-word;
}
.home-catch-copy-sub {
  font-size: 30px; font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

@media only screen and (max-width: 1200px) {
.home-catch-copy {
  font-size: 60px; font-size: 6.0rem;
}
.home-catch-copy-sub {
  font-size: 20px; font-size: 2.0rem;
}
}
@media only screen and (max-width: 960px) {
.home-catch-copy {
  font-size: 45px; font-size: 4.5rem;
}
}
@media only screen and (max-width: 600px) {
.home-catch-copy {
  font-size: 30px; font-size: 3.0rem;
  margin-bottom: 1em;
  padding: 0 20px;
}
.home-catch-copy-sub {
  font-size: 18px; font-size: 1.8rem;
  padding: 0 20px;
}
}

.section--collaborators {
  background-image: url(images/home/collaborators_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.section--collaborators::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.col-2--bgimg--recruit {
  background-image: url(images/home/recruitment_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 6.5em 20px 4em;
  position: relative;
}
.col-2--bgimg--contact {
  background-image: url(images/home/contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 6.5em 20px 4em;
  position: relative;
}
.col-2--bgimg--recruit::before,
.col-2--bgimg--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 768px) {
.col-2--bgimg--recruit,
.col-2--bgimg--contact {
  padding: 6.5em 10px 4em;
}
}

#wrapper {
  position: relative;
}
.home #wrapper::before {
  content: '';
  width: 40%;
  height: 60%;
  margin: 0 0 0 9%;
  aspect-ratio: 1;
  clip-path: polygon(0 100%,100% 0,100% 100%);
  background: #5ca8ad;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
.home #wrapper::before {
  width: 100%;
  height: 40%;
}
}

/*  Page company ------------------------  */
.name-kunimatsu {
  max-width: 280px;
}

.section--history {
  background-image: url(company/images/history_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.dl-style-circle {
  display: flex;
}
.dl-style-circle dt {
  color: #298dd9;
  width: 7.2em;
  padding: 1em 0;
}
.dl-style-circle dd {
  flex: 1;
  padding: 1em 0 1em 2em;
  position: relative;
}
.dl-style-circle dd::before {
  content: "";
  border-left: 1px solid #b2b2b2;
  padding: 1em 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.dl-style-circle dd::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  position: absolute;
  left: -3px;
  top: 33px;
  border-radius: 100px;
  display: block;
  outline: solid 6px #113c59;
}
.section--faq .dl-style-circle dt {
  width: 5em;
}
@media only screen and (max-width: 768px) {
.dl-style-circle dd::after {
  top: 28px;
}
}

.m-t-60pc {margin-top: 50px!important;}
@media only screen and (max-width: 768px) {
  .m-t-60pc {margin-top: 20px!important;}
}

/*  Page recruit ------------------------  */
.section--faq {
  background-image: url(recruit/images/faq_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

/*  Page common ------------------------  */
.list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list li {
  position: relative;
  padding-left: 2em;
  text-indent: 0em;
  margin-bottom: .3em;
}
.list li::before {
  content: "";
  display: block;
  width: 2.3rem;
  height: 1.5rem;
  border-left: 6px solid #007dd4;
  border-bottom: 6px solid #007dd4;
  transform: rotate(-45deg);
  position: absolute;
  top: 1rem;
  left: 0;
}
@media only screen and (max-width: 768px) {
.list li::before {
  width: 2rem;
  height: 1.2rem;
  border-left: 5px solid #007dd4;
  border-bottom: 5px solid #007dd4;
  top: .5em;
}
}

.p-l-25 {
  padding-left: 25px;
}

.dl-list {
  display: flex;
  flex-wrap: wrap;
}
.dl-list dt {
  width: 50%;
}
.dl-list dd {
  width: 50%;
}

.table-dl {
  display: flex;
  gap: 0 5px;
  margin-top: -2px;
}
.table-dl dt {
  border-top: 2px solid #2e4f6f;
  border-bottom: 2px solid #2e4f6f;
  width: 14em;
  padding: 1em 0 1em 1em;
  font-weight: 600;
  text-align: left;
}
.table-dl dd {
  border-top: 2px solid #bec2c9;
  border-bottom: 2px solid #bec2c9;
  flex: 1;
  padding: 1em 0 1em 1em;
  text-align: left;
}
.table-dl.table-dl--3col dt {
  width: 20em;
}
.table-dl.table-dl--3col dd:last-of-type {
  width: 6em;
  flex: none;
  padding: 1em;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .table-dl {
    flex-direction: column;
  }
  .table-dl dt {
    width: 100%;
    padding-bottom: 0;
    position: relative;
    border-top: none;
  }
  .table-dl dt::before {
    content: "";
    display: block;
    position: absolute;
    width: 65%;
    height: 2px;
    background-color: #bec2c9;
    top: 0;
    right: 0;
  }
  .table-dl dt::after {
    content: "";
    display: block;
    position: absolute;
    width: 35%;
    height: 2px;
    background-color: #2e4f6f;
    top: 0;
    left: 0;
  }
  .table-dl dd {
    padding-top: .5em;
  }
  .table-dl-wrap .table-dl dt {
    border-bottom: none;
  }
  .table-dl-wrap .table-dl dd {
    border-top: none;
  }
  .table-dl.table-dl--3col {
    flex-direction: initial;
    flex-wrap: wrap;
    border-bottom: 2px solid #bec2c9;
  }
  .table-dl.table-dl--3col dt {
    width: 100%;
  }
  .table-dl.table-dl--3col dd {
    border-bottom: none;
  }
}


.page-header {
  background-image: url(images/home/main.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}
.page-header__item {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.page-header__item-line {
  max-width: initial;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border: none;
  background-color: #fff;
  height: 5px;
}
.page-header__item-ttl-en {
  font-size: 70px; font-size: 7.0rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  padding: 2em 0 15px;
  word-break: break-word;
}
.page-header__item-ttl {
  font-size: 30px; font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  padding: 15px 0 2.5em;
}
@media only screen and (max-width: 1080px) {
.page-header__item-ttl-en {
  font-size: 50px; font-size: 5.0rem;
}
}
@media only screen and (max-width: 768px) {
.page-header__item-ttl-en {
  font-size: 30px; font-size: 3.0rem;
  padding: 3em 0 15px;
}
.page-header__item-ttl {
font-size: 24px; font-size: 2.4rem;
}
}


.col-scroll {
  overflow-y: scroll;
  height: 200px;
  background-color: #fff;
  padding: 1.5em;
  font-size: 18px; font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
.col-scroll {
  font-size: 15px; font-size: 1.5rem;
}
}

/*  slider ------------------  */
.slider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  list-style: none;
}
.slider li {
  height: auto;
  margin-right: 10px;
  margin-left: 10px;
}
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider a {
  text-decoration: none;
  color: #000;
}
.slider-arrow {
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 2;
  cursor:pointer;
  transition: all .2s;
}
.prev-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.2em;
  height: 1.2em;
  transform: translateX(-25%) rotate(225deg);
  left: -25px;
  filter: drop-shadow(0px 0px 2px #000);
}
.prev-arrow::before,
.prev-arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.prev-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.prev-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
}
.next-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.2em;
  height: 1.2em;
  transform: translateX(-25%) rotate(45deg);
  right: -30px;
  filter: drop-shadow(0px 0px 2px #000);
}
.next-arrow::before,
.next-arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.next-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.next-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
}
.prev-arrow:hover  {
  opacity: .7;
}
.next-arrow:hover {
  right: -32px;
}


.arrow-link {
  background-image: url(images/common/icon_link.png);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: left center;
  text-align: center;
  display: table;
  margin: 0 auto;
  padding-left: 1.2em;
  font-size: 36px; font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: #113c59;
  text-decoration: none;
}
@media only screen and (max-width: 1080px) { 
.arrow-link {
  font-size: 26px; font-size: 2.6rem;
}
}
@media only screen and (max-width: 768px) { 
.arrow-link {
  font-size: 24px; font-size: 2.4rem;
}
.arrow-link {
  background-size: 22px;
}
}
/*  btnlink ------------------  */
.btnlink {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px; font-size: 2.0rem;
  font-weight: 500;
  text-decoration: none;
  margin: 1em auto 2em;
  padding: .6em 2em;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  opacity: 1;
}
.btnlink:hover {
  transition: all .5s;
  color: #000;
  background-color: #fff;
}
.btnlink.btnlink--blue {
  border: 1px solid #007dd4;
  color: #007dd4;
}
.btnlink:hover.btnlink--blue {
  color: #fff;
  background-color: #007dd4;
}
@media only screen and (max-width: 768px) { 
.btnlink {
  font-size: 18px; font-size: 1.8rem;
}
}


/*  heading ------------------  */
.heading-lv2 {
  word-break: break-word;
  font-size: 50px; font-size: 5.0rem;
  font-weight: 500;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0;
  color: #007dd4;
}
.heading-lv2 span {
  display: block;
  margin: .5em auto .5em;
  padding: 0;
  font-size: 30px; font-size: 3.0rem;
  font-weight: 500;
  text-align: center;
  color: #007dd4;
  letter-spacing: .02em;
}
.heading-lv2-2 {
  word-break: break-word;
  display: inline-block;
  font-size: 30px; font-size: 3.0rem;
  font-weight: 500;
  margin-bottom: .8em;
  padding-left: 20px;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0;
  color: #113c59;
  position: relative;
}
.heading-lv2-2::before {
  content: "";
  display: block;
  width: 10px;
  height: 1em;
  background-color: #113c59;
  position: absolute;
  top: .15em;
  left: 0;
}
.heading-lv2-2--white {
  font-size: 33px; font-size: 3.3rem;
  color: #fff;
}
.heading-lv2-2--white::before {
  background-color: #fff;
}
.heading-lv2.fadeLeftTrigger {
  opacity: 0;
}
.heading-lv3 {
  font-size: 28px; font-size: 2.8rem;
  font-weight: 500;
  color: #113c59;
  margin: 0 0 1.2em;
  line-height: 1.4;
  text-align: center;
}
.heading-lv4 {
  font-size: 20px; font-size: 2.0rem;
  font-weight: 600;
  margin: 1em 0 .6em;
  line-height: 1.4;
}

.lead-txt {
  font-size: 24px; font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.border-box {
  background-color: #fff;
  border: 2px solid #f3b53a;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 1080px) {
.heading-lv3 {
  font-size: 24px; font-size: 2.4rem;
}
}
@media only screen and (max-width: 768px) {
.heading-lv2 {
  font-size: 34px; font-size: 3.4rem;
}
.heading-lv2 span {
  font-size: 22px; font-size: 2.2rem;
}

.heading-lv2-2 {
  font-size: 28px; font-size: 2.8rem;
}
.heading-lv2-2--white {
  font-size: 28px; font-size: 2.8rem;
}

.lead-txt {
  font-size: 20px; font-size: 2.0rem;
}
}
@media only screen and (max-width: 600px) {
.heading-lv2-2 {
  font-size: 24px; font-size: 2.4rem;
}
.heading-lv2-2--white {
  font-size: 24px; font-size: 2.4rem;
}

.heading-lv3 {
  font-size: 20px; font-size: 2.0rem;
}

.lead-txt {
  font-size: 15px; font-size: 1.5rem;
}
}


/*  footer ------------------  */
.footer {
  padding: 3em 0;
  position: relative;
}
.footer__inner {
  max-width: 1300px;
  width: 94%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  align-items: end;
}
.footer__logo {
  margin-bottom: .5em;
}
.footer__logo img {
  width: 280px;
}
.footer-address {
  text-align: left;
  width: 45%;
}
.footer-address h2 {
  font-size: 28px; font-size: 2.8rem;
  margin-left: 5%;
}
.footer-address p {
  font-size: 18px; font-size: 1.8rem;
  letter-spacing: .01em;
  margin-left: 5%;
}
.copyright {
  width: 45%;
  font-weight: 600;
  text-align: right;
  margin-left: auto;
}
@media only screen and (max-width: 960px) {
.footer-address h2 {
  font-size: 24px; font-size: 2.4rem;
}
.footer-address p {
  font-size: 16px; font-size: 1.6rem;
}
}
@media only screen and (max-width: 768px) {
.footer__inner {
  flex-direction: column;
}
.footer__logo img {
  width: 240px;
}
.footer-address {
  width: 100%;
}
.copyright {
  width: 100%;
}
}
.footer-page-top {
  position: absolute;
  top: 0;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
	opacity: 1;
  writing-mode: vertical-rl;
  color: #113c59;
  font-size: 16px; font-size: 1.6rem;
  text-decoration: none;
}
.footer-page-top .arrow {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 2px;
  margin-bottom: 40px;
  background-color: #113c59;
  transform: rotate(270deg);
  transition: all .3s;
  bottom: 0;
}
.footer-page-top .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  right: 0;
  width: 25px;
  height: 2px;
  background-color: #113c59;
  transform: rotate(-35deg);
  transform-origin: calc(100% - 2px) 50%;
}
.footer-page-top:hover .arrow {
  bottom: 5px;
}
@media only screen and (max-width: 1080px) {
.footer-page-top {
  font-size: 14px; font-size: 1.4rem;
  right: 0;
}
}
@media only screen and (max-width: 600px) {
.footer-page-top .arrow {
  width: 50px;
  margin-bottom: 35px;
}
.footer-page-top .arrow::before {
  width: 20px;
}
.footer-page-top:hover .arrow {
  bottom: 0;
}
}

.table-1 {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
  border-top: 1px solid #c9caca;
  width: 100%;
  line-height: 1.6;
  text-align: left;
}
.table-1 th,
.table-1 td {
  border-bottom: 1px solid #c9caca;
  padding: 25px 5px 25px 1em;
  vertical-align: middle;
}
.table-1 th {
  border-top: 1px solid #007dd4;
  border-bottom: 1px solid #007dd4;
  padding: 25px 5px;
  vertical-align: middle;
  color: #007dd4;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
.table-sp-col1 th,
.table-sp-col1 td {
  display: inline-block;
  width: 100%;
}
.table-sp-col1 th {
  border-bottom: none;
  padding: 20px 0 10px 0;
}
.table-sp-col1 td {
  padding: 0 0 20px 0;
}
}

.table-30 {
  width: 30%;
}
.table-35 {
  width: 35%;
}
.table-65 {
  width: 65%;
}
.table-70 {
  width: 70%;
}

/*  iframe ------------------  */
iframe#inlineframe { 
  width: 100%;
  border: none;
}


/*  common ------------------  */
.contents {
  margin: 0 auto 0;
  word-break: break-all;
}
@media screen and (max-width: 960px) {
.contents {
  margin: 0 auto 0;
}
}

.home .section {
  position: relative;
  padding: 5em 0;
}
.section {
  position: relative;
  padding: 3em 0;
}
.section__inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.section__inner--1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.section-googlemap {
  padding: 3em 0 0;
}
.section-googlemap iframe {
  vertical-align: bottom;
}

.section.section--white {
  background-color: #fff;
}
.section.section--gray {
  background-color: #3d5975;
  position: relative;
}
.section.section--gray::before{
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  clip-path: polygon(0 0,50% 100%,100% 0);
  background-color: #3d5975;
  left: 0;
  bottom: -59px;
  z-index: 9;
}
.section.section--l-gray {
  background-color: #f7f7f7;
}
.section.section--yellow {
  background-color: #f3e389;
}
.section.section--btmline {
  border-bottom: 1px solid #c9caca;
}

.section p {
  margin-bottom: 1em;
}
.section p:last-of-type {
  margin-bottom: 0;
}

.col-wrap {
  display : flex;
  flex-wrap : wrap;
  justify-content:space-between;
  gap: 25px 2%;
}
/* 子要素 */
.col-2 .col__item { 
  width: 48%;
}
.col-3 .col__item { 
  width: 32%;
}
.col-wrap.col-3::after {
  content: "";
  display: block;
  width: 32%;
}
.col-reverse {
  flex-direction: row-reverse;
}
.col-align-items--center {
  align-items: center;
}

.col-banner {
  max-width: 1080px;
  width: 80%;
  margin: 3em auto;
  align-items: center;
  gap: 0;
}

@media screen and (max-width: 768px) {
.col-wrap { 
  gap: 25px 0;
}
.col-2 .col__item,
.col-3 .col__item { 
  width: 100%;
}
}

ul {
  margin-left: 1em;
}
ol {
  margin-left: 1.5em;
}
ul li,
ol li {
  margin-bottom: 0;
}
ul ul {
  list-style: '-';
  margin-left: .5em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
}

.br-sp {
  display: none;
}

.text-s {
  font-size: 14px;
  line-height: 1.6;
}
.text-l {
  font-size: 18px;
  line-height: 1.6;
}
.text-l2 {
  font-size: 21px;
  line-height: 1.6;
}
.text-b {
  font-weight: 600;
}

.red {
  color: #ff0007;
}

.white {
  color: #fff;
}

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

.center {
  text-align: center;
}

.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}

.nowrap {
  white-space: nowrap;
  display: inline-block;
}

.m-t-0 {margin-top: 0!important;}
.m-t-10 {margin-top: 10px!important;}
.m-t-20 {margin-top: 20px!important;}
.m-t-30 {margin-top: 30px!important;}
.m-t-40 {margin-top: 40px!important;}
.m-t-50 {margin-top: 50px!important;}
.m-t-60 {margin-top: 60px!important;}
.m-t-70 {margin-top: 70px!important;}
.m-t-80 {margin-top: 80px!important;}
.m-b-0 {margin-bottom: 0!important;}
.m-b-10 {margin-bottom: 10px!important;}
.m-b-20 {margin-bottom: 20px!important;}
.m-b-30 {margin-bottom: 30px!important;}
.m-b-40 {margin-bottom: 40px!important;}
.m-b-50 {margin-bottom: 50px!important;}
.m-b-60 {margin-bottom: 60px!important;}
.m-b-70 {margin-bottom: 70px!important;}
.m-b-80 {margin-bottom: 80px!important;}


/*  animation ------------------  */
.fadeUpTrigger,
.fadeDownTrigger,
.fadeInTrigger,
.fadeRightTrigger {
  opacity: 0;
}
.fadeIn {
animation-name: fadeInAnime;
animation-duration: 1.5s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeUp {
animation-name: fadeUpAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
  opacity: 0;
  transform: translateY(60px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeDown {
animation-name: fadeDownAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeDownAnime{
  from {
  opacity: 0;
  transform: translateY(-60px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeLeft {
animation-name: fadeLeftAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeLeftAnime{
  from {
  opacity: 0;
  transform: translateX(-30px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeBlur {
	animation-name: blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
.fadeBlur2 {
	animation-name: blurAnime;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
}
@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}
.fadeRight {
animation-name: fadeRightAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeRightAnime{
  from {
  opacity: 0;
  transform: translateX(30px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeBlur {
	animation-name: blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
.fadeBlur2 {
	animation-name: blurAnime;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
}
@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}


@media only screen and (max-width: 1080px) {
body  {
  font-size: 18px;
  font-size: 1.8rem;
}
}

@media only screen and (max-width: 768px) {
body  {
  font-size: 16px;
  font-size: 1.6rem;
}

.copyright {
  font-size: 14px;
  font-size: 1.4rem;
}

.content {
  width: 100%;
}

.br-sp {
  display: block;
}
}