@charset "UTF-8";

/*============================
	index 共通
============================*/
/* btn ▼*/
html.active {
  overflow-y: hidden;
}

.link__btn a {
  display: block;
  font-size: 1.4rem;
  position: relative;
  white-space: nowrap;
  transition: 0.5s;
  padding-left: 90px;
  width: -moz-fit-content;
  width: fit-content;
}

.link__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 80px;
  height: 1px;
  background: #111;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.5s;
}

.link__btn a:hover {
  opacity: 0.8;
  color: #1d3b72;
}

.link__btn a:hover::before {
  width: 60px;
}

/* btn ▲*/
.section__ttl {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.section__ttl .font-en {
  font-size: 8rem;
  letter-spacing: 0;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}

.section__ttl02 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 60px;
}

.section__ttl02 .font-en {
  font-size: 6rem;
  letter-spacing: 0;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 1040px) {
  .section__ttl {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .section__ttl .font-en {
    font-size: 5rem;
  }

  .section__ttl02 {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  .section__ttl02 .font-en {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .section__ttl {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .section__ttl .font-en {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .section__ttl02 {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .section__ttl02 .font-en {
    font-size: 2.6rem;
  }

  .link__btn a {
    font-size: 1.2rem;
    padding-left: 70px;
  }

  .link__btn a::before {
    width: 60px;
  }
}

/*============================
	header
============================*/

header {
  z-index: 999;
  position: relative;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100px;
  padding: 20px 1%;
  background: #1d3b72;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  width: 100%;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12); */
}

.hd__h1 {
  font-size: 1.1rem;
  letter-spacing: 0.025em;
  margin: 0 20px 0 0;
  flex: 1 1 auto;
}

.hd__left {
  width: 40%;
  flex: 0 1 auto;
}

.hd__right {
  width: 60%;
  flex: 1 1 auto;
}

.hd__logo {
  width: 323px;
  max-width: 100%;
  height: auto;
}

.hd__contact {
  flex: 0 1 200px;
  margin-right: 1%;
}

.hd__contact a {
  display: block;
  width: 100%;
  line-height: 60px;
  background: #2e559b;
  font-size: 1.4rem;
  letter-spacing: 0.075em;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.hd__contact img {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.hd__access {
  flex: 0 1 200px;
  margin-right: 2%;
}

.hd__access a {
  display: block;
  width: 100%;
  line-height: 60px;
  background: #2e559b;
  font-size: 1.4rem;
  letter-spacing: 0.075em;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.hd__access img {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.hd__tel {
  font-size: 3rem;
  letter-spacing: 0.075em;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.hd__tel .small {
  font-size: 1.6rem;
}

/***** g-nav PC ▼*****/

.g-nav__pc {
  text-align: center;
  height: 100px;
}

.g-nav__pc--ul {
  max-width: 1080px;
  margin: 0 auto;
}

.g-nav__li {
  position: relative;
  z-index: 9;
  flex: 1 1 auto;
}

.g-nav__li a {
  white-space: nowrap;
  font-size: min(1.6rem, 1.6vw);
  letter-spacing: 0.05em;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  line-height: 100px;
  font-weight: bold;
}

.g-nav__li a:hover {
  opacity: 0.8;
  color: #1d3b72;
}
.g-nav__li.on a {
  color: #1d3b72;
}

.g-nav__li.sub-triger {
  position: relative;
}

.g-nav__li.li02:hover > ul {
  display: block;
  opacity: 1;
}

.g-nav__li.li02 > ul {
  position: absolute;
  background: rgba(34, 34, 34, 0.85);
  padding: 20px 10%;
  min-width: 150px;
  left: 50%;
  top: 95px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  display: none;
  opacity: 0;
  transition: 0.5s;
  animation: sub-navAppear 0.5s forwards;
  color: #fff;
}
.g-nav__li.li02 > ul li a {
  color: #fff;
  line-height: 50px;
}

@keyframes sub-navAppear {
  0% {
    opacity: 0%;
  }

  100% {
    opacity: 1;
  }
}

.g-nav__pc--ul .sub-nav__li {
  margin: 0 0 10px;
}

.g-nav__pc--ul .sub-nav__li a {
  font-size: 1.5rem;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: solid 1px #fff;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.g-nav__pc--ul .sub-nav__li a:hover {
  color: #fff;
}

/* g-nav 伸びるボーダー */

.g-nav__pc--ul li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  background: #1d3b72;
  left: 50%;
  bottom: -2px;
  border-radius: 1px;
  transition: 0.5s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.g-nav__pc--ul li a:hover:before {
  width: 60px;
}
.g-nav__pc--ul li.on a:before {
  width: 60px;
}
.g-nav__pc--ul .sub-nav__li a:hover::before {
  display: none;
}

/***** g-nav ▲*****/

/***** ハンバーガー ▼*****/

.hd__menu {
  font-weight: bold;
  font-size: 1rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  /* background: #00528d; */
  transition: 0.5s;
  margin: 0 0 0 auto;
  padding: 10px 0;
}

/* .hd__menu.active {
    background: #00528d;
} */

.hd__hamburger {
  width: 40px;
  height: 10px;
  cursor: pointer;
}

.hd__hamburger span {
  background: #fff;
  height: 2px;
  width: 100%;
  left: 0;
}

.hd__hamburger.active span {
  background: #fff;
}

.hd__menu .hd__menu--txt {
  font-size: 1rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
  margin-top: 5px;
}

/* .hd__gnav--sp.active .hd__menu--txt {
    
} */

.hd__hamburger--top {
  top: 0;
  transition: 0.5s;
}

.hd__hamburger--middle {
  top: 42.5%;
  transition: 0.5s;
}

.hd__hamburger--bottom {
  bottom: 0;
  transition: 0.5s;
}

.hd__hamburger.active .hd__hamburger--top {
  transform: translateY(0px) rotate(30deg);
}

.hd__hamburger.active .hd__hamburger--middle {
  display: none;
}

.hd__hamburger.active .hd__hamburger--bottom {
  transform: translateY(-8px) rotate(-30deg);
}

/***** sp nav *****/
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(000, 000, 000, 0.5);
  opacity: 0;
  display: none;
  transition: 0.5s;
}

html.active body:before {
  opacity: 0;
  z-index: 999;
  display: block;
  animation-name: BgAppear;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes BgAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes BgHide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.g-nav__bg {
  position: fixed;
  top: 0;
  right: -120%;
  height: 100vh;
  width: 70vw;
  transition: all 0.5s;
  background: #1d3b72;
  overflow: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 60px 10% 100px;
  margin-top: 62px;
  z-index: 9999;
}

.g-nav__bg.active {
  right: 0;
}

.g-nav__h1 {
  display: block;
  margin: 0 0 30px;
  line-height: 1.6;
  font-size: 1.2rem;
}

/* .g-nav__sp{
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
} */
.g-nav__sp-ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}

.g-nav__bg .g-nav__li a {
  font-size: 1.6rem;
  height: 100%;
  display: block;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}

.g-nav__sp-ul .sub-triger {
  margin-bottom: 15px;
}

.g-nav__bg .sub-nav__li a {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.g-nav__sp ul span {
  font-size: 2.4rem;
  margin-right: 10px;
}

.g-nav__tel {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.g-nav__tel a {
  color: #fff;
}

.g-nav__tel--txt {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.g-nav__tel img {
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.g-nav__tel--time {
  margin-bottom: 30px;
  font-size: 1.4rem;
  text-align: center;
}

.g-nav__access img {
  width: 15px;
  margin-right: 10px;
  vertical-align: middle;
}

.g-nav__access a {
  display: block;
  width: 90%;
  margin: 0 auto;
  max-width: 100%;
  line-height: 50px;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  text-align: center;
  background: #2e559b;
  color: #fff;
}

.g-nav__contact {
  width: 100%;
}

.g-nav__contact img {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.g-nav__contact a {
  display: block;
  width: 90%;
  margin: 0 auto 20px;
  max-width: 100%;
  line-height: 50px;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  text-align: center;
  background: #2e559b;
  color: #fff;
}

@media screen and (max-width: 1040px) {
  .g-nav__pc {
    display: none;
  }

  header .pc {
    display: none;
  }

  header .sp {
    display: block;
  }

  .hd__left {
    padding: 0;
  }

  .hd__flex--sp.sp {
    display: block;
  }

  .hd__gnav--sp {
    display: block;
  }

  .hd__h1.sp {
    display: block;
    color: #111;
    text-align: center;
    margin: 0 0 30px;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  header {
    height: 62px;
    position: fixed;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    padding: 10px 10px;
  }

  header .inner {
    padding: 0 1%;
  }

  .hd__logo {
    width: 180px;
    max-width: none;
    height: auto;
    position: relative;
    z-index: 999;
    margin: 0;
    flex: 0 0 auto;
  }

  .hd__flex {
    display: flex;
  }

  .hd__tel--ico {
    display: block;
    margin: 5px 5% 0 auto;
    width: 35px;
  }
}

@media screen and (max-width: 767px) {
  header {
    height: 52px;
    padding: 10px 10px;
    background-size: 300%;
  }

  .hd__txt.sp {
    padding: 0;
    margin: 0;
    right: auto;
    left: 20%;
    top: 20px;
    text-align: center;
    line-height: 1.6;
  }

  .hd__left {
    width: auto;
  }

  .hd__right {
    width: auto;
  }

  .hd__hamburger span {
    height: 1px;
  }

  .g-nav__bg {
    width: 100vw;
    padding: 30px 10% 100px;
    margin-top: 52px;
  }

  .g-nav__bg .g-nav__li a {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .g-nav__tel {
    font-size: 2.6rem;
  }

  .g-nav__tel img {
    width: 25px;
  }

  .hd__logo {
    max-width: none;
    width: 140px;
  }

  .hd__menu {
    padding-top: 15px;
  }

  .g-nav__sp-ul {
    padding: 0 5%;
  }

  .g-nav__contact a {
    font-size: 1.4rem;
    line-height: 40px;
  }

  .g-nav__access a {
    font-size: 1.4rem;
    line-height: 40px;
  }

  header .hd__tel--ico {
    display: none;
    margin: 5px 5% 0 auto;
    width: 30px;
  }

  .hd__tel--ico img {
    vertical-align: middle;
  }
}

/*============================
	fv
============================*/
.fv {
  z-index: 9;
  background: #fff;
}

/* .fv__img img {
    object-fit: cover;
    width: 100%;
    height: calc(100vh - 110px);
} */

.fv__copy {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99;
  top: 70%;
  left: 30%;
  width: 50%;
  max-width: 1000px;
}

.fv__scroll {
  bottom: 30%;
  left: 2%;
  font-size: 1.1rem;
  /* left: calc(50% + 770px); */
  z-index: 99;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.fv__scroll::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100px;
  background: #222;
  left: 45%;
  top: 60px;
  animation: scrollAnime 2s 0s infinite;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

@keyframes scrollAnime {
  0% {
    height: 100px;
  }

  50% {
    height: 120px;
  }

  100% {
    height: 100px;
  }
}

/* .mv__scroll::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 15px 10px;
    border-color: transparent transparent transparent #ffffff;
    left: 45%;
    bottom: 0;
} */

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  left: -35%;
  bottom: 10%;
  z-index: 99;
}

.slick-dots li {
  width: 30px;
}

.slick-dots li button:before {
  content: "●";
  width: 7px;
  height: 7px;
  font-size: 10px;
  color: #fff;
  opacity: 0.8;
}

.slick-dots li.slick-active button:before {
  color: #1d3b72;
}

/* スライド slick fade*/

/* .slide-animation img {
    animation: fadezoom 8s 0s forwards;
} */

@keyframes fadezoom {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 1040px) {
  .fv {
    margin-top: 62px;
  }

  .fv__img img {
    object-fit: cover;
    height: 60vw;
    width: 100%;
  }

  .fv__scroll {
    width: 70px;
    right: 58px;
  }

  .side__road {
    width: 200px;
  }

  .side__car {
    width: 30px;
    top: 100px;
    right: 65px;
  }
}

@media screen and (max-width: 768px) {
  .fv .slick01.pc {
    display: block;
  }

  .fv__img.pc {
    display: block;
  }

  .fv__img.sp {
    display: none;
  }

  .fv__copy.pc {
    display: block;
  }

  .fv__copy.sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    margin-top: 52px;
  }

  .fv .slick01 {
    width: 100%;
  }

  .fv__img.pc {
    display: none;
  }

  .fv__img.sp {
    display: block;
  }

  .fv__img img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    object-position: center center;
  }

  .hd__h1.sp {
    top: 20px;
    left: 3%;
    font-size: 1rem;
  }

  .fv__copy {
    top: 65%;
    left: 45%;
    width: 80%;
    min-width: auto;
  }

  .fv__copy02 {
    width: 90%;
    min-width: auto;
    bottom: -4%;
  }

  .slick-dots {
    bottom: 20px;
    left: -35%;
  }

  .slick-dots li {
    width: 15px;
  }

  .fv__scroll {
    font-size: 1rem;
    display: none;
  }

  .fv__scroll::before {
    bottom: 70px;
  }

  .side__roadwrap {
    display: none;
  }
}

/*============================
	message
============================*/
.message {
  padding: 180px 0 160px;
  background: url(../img/top/message_bg.jpg) no-repeat center center/cover;
}

.message__txt {
  font-size: 1.8rem;
  line-height: 2;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 1040px) {
  .message {
    padding: 100px 0;
    background-position: left 78% center;
  }

  .message__txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .message {
    background-position: left 58% center;
  }
}

@media screen and (max-width: 767px) {
  .message {
    padding: 60px 0;
    background-position: left 57% center;
  }

  .message__txt {
    font-size: 1.2rem;
  }
}

/*============================
	features
============================*/
.features {
  padding: 180px 0 160px;
  background: url(../img/top/features_bg.jpg) no-repeat center center/cover;
}

.features__txt {
  font-size: 1.8rem;
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.features .link__btn a {
  color: #fff;
  margin: 0 10% 0 auto;
}

.features .link__btn a::before {
  background: #fff;
}

@media screen and (max-width: 1040px) {
  .features {
    padding: 100px 0;
    background-position: left 78% center;
  }

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

@media screen and (max-width: 768px) {
  .features {
    background-position: left 60% center;
  }
}

@media screen and (max-width: 767px) {
  .features {
    padding: 60px 0;
  }

  .features__txt {
    font-size: 1.2rem;
  }

  .features .link__btn a {
    margin: 0 0 0 auto;
  }
}

/*============================
	service
============================*/

.service {
  padding: 150px 0 0;
}

.service__flex {
  align-items: flex-start;
}

.service__item {
  width: 30%;
}

.service__item.item02 {
  margin-top: 50px;
}

.service__item.item03 {
  margin-top: 100px;
}

.service__h3 {
  font-size: min(1.6rem, 1.6vw);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  width: 100%;
  top: 50%;
  left: 50%;
  padding: 0 1%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.service__h3 .font-en {
  font-size: min(4rem, 2.6vw);
  letter-spacing: 0;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}

.service__btn {
  width: 30%;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media screen and (max-width: 1040px) {
  .service {
    padding: 100px 0 0;
  }

  .service__item {
    width: 32%;
  }

  .service__item.item02 {
    margin-top: 30px;
  }

  .service__item.item03 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .service {
    padding: 60px 0 0;
  }

  .service__item {
    width: 90%;
    margin: 0 auto;
  }

  .service__item.item03 {
    margin-top: 30px;
  }

  .service__h3 .font-en {
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .service__h3 {
    font-size: 1.4rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  margin-top: -300px;
}

.gallery__top {
  padding: 560px 0 60px;
  background: url(../img/top/gallery_bg.png) no-repeat center center/cover;
}

.gallery .section__ttl02 {
  margin: 0;
}

.gallery__item {
  position: relative;
}

.gallery__hv {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  padding: 30% 1% 0;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
}

.gallery__hv:hover {
  opacity: 1;
}

.gallery__txtwrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.gallery__date {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #fff;
}
.gallery__h3 {
  color: #fff;
}

.gallery .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.gallery .slick-dots {
  left: 0%;
  bottom: -30px;
  z-index: 99;
}

.gallery .slick-dots li {
  width: 30px;
}

.gallery .slick-dots li button:before {
  content: "●";
  width: 7px;
  height: 7px;
  font-size: 10px;
  color: #ccc;
  opacity: 0.8;
}

.slick-dots li.slick-active button:before {
  color: #1d3b72;
}

.gallery .link__btn a {
  margin-top: 100px;
}

@media screen and (max-width: 1040px) {
  .gallery {
    margin-top: -260px;
  }

  .gallery__top {
    padding: 400px 0 40px;
  }

  .gallery .link__btn a {
    margin-top: 60px;
  }

  .gallery__hv {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .gallery {
    margin-top: -120px;
  }

  .gallery__top {
    padding: 200px 0 20px;
  }

  .gallery .link__btn a {
    margin-top: 50px;
  }

  .gallery__date {
    margin-bottom: 20px;
  }

  .gallery__h3 {
    font-size: 1.4rem;
  }
}

/*============================
	flow
============================*/
.flow {
  padding: 200px 0 160px;
  background: url(../img/top/flow_bg.png) no-repeat top right/50%;
  margin-top: -125px;
}

.flow__left {
  width: 50%;
}

.flow__right {
  width: 50%;
  max-width: 540px;
  margin: 0 auto 0 0;
  padding: 220px 0 0 7%;
}

.flow__img img {
  object-fit: cover;
  width: 100%;
  height: 600px;
}

.flow .section__ttl02 {
  text-align: left;
}

.flow .section__ttl02 .font-en {
  margin-left: -10px;
}

.flow .link__btn {
  margin-top: 30px;
}

.flow__flex__btm {
  margin-top: -110px;
  position: relative;
}

.flow__item {
  width: 23%;
  height: 240px;
  max-width: 240px;
  background: url(../img/top/flow_box.jpg) no-repeat center center/contain;
  text-align: center;
  padding: 70px 1% 0;
}

.flow__num {
  font-size: 4rem;
  color: #2e559b;
  line-height: 1;
  margin-bottom: 10px;
}

.flow__h3 {
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1040px) {
  .flow {
    margin-top: -90px;
    padding: 140px 0 60px;
    background-size: 45%;
  }

  .flow__right {
    padding: 160px 3% 0 5%;
  }

  .flow__img img {
    height: 400px;
  }

  .flow__flex__btm {
    margin-top: -80px;
  }

  .flow__item {
    height: 200px;
    padding: 60px 1% 0;
  }

  .flow__num {
    font-size: 3rem;
  }

  .flow__h3 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .flow {
    margin-top: -80px;
    padding: 120px 0 60px;
  }

  .flow__flex {
    display: flex;
    flex-direction: column-reverse;
  }

  .flow__left {
    width: 100%;
  }

  .flow__right {
    width: 100%;
    display: flex;
  }

  .flow__img img {
    height: auto;
  }

  .flow__right {
    padding: 30px 5% 0;
  }

  .flow .section__ttl02 .font-en {
    margin: 0 0 10px;
  }

  .flow__flex__btm {
    display: flex;
    flex-wrap: wrap;
    margin-top: -50px;
  }

  .flow__item {
    width: 48%;
    height: 180px;
  }

  .flow__h3 {
    font-size: 1.6rem;
  }
}

/*============================
	pickup
============================*/

.pickup__ttlwrap {
  margin-bottom: 50px;
}

.pickup .section__ttl02 {
  margin-bottom: 0;
  text-align: left;
}

.pickup__item {
  width: 32%;
}

.pickup__img {
  margin-bottom: 10px;
}

.pickup__maker {
  font-size: 1.2rem;
}

.pickup__h3 {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1040px) {
  .pickup__ttlwrap {
    margin-bottom: 40px;
  }

  .pickup__h3 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .pickup__ttlwrap {
    display: flex;
    margin-bottom: 30px;
  }

  .pickup__item {
    width: 90%;
    margin: 0 auto 30px;
  }
}

/*============================
	news
============================*/
.news {
  padding: 420px 0 110px;
  background: url(../img/top/news_bg.png) no-repeat top left;
  margin-top: -250px;
}

.news__left {
  width: 60%;
  padding: 0 4% 0 0;
}

.news__right {
  width: 40%;
  min-height: 400px;
}

.news__ttlwrap {
  margin-bottom: 40px;
}

.news__ttl {
  font-size: 4rem;
  letter-spacing: 0.05em;
}

.news__dt {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.news__dd {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.news iframe {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1040px) {
  .news {
    margin-top: -200px;
    padding: 300px 0 100px;
  }

  .news__ttlwrap {
    margin-bottom: 30px;
  }

  .news__ttl {
    font-size: 3rem;
  }

  .news__dt {
    margin-bottom: 5px;
  }

  .news__dd {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .news {
    margin-top: -100px;
    padding: 120px 0 60px;
  }

  .news__left {
    width: 100%;
    margin-bottom: 30px;
  }

  .news__right {
    width: 100%;
    min-height: auto;
  }

  .news__ttlwrap {
    display: flex;
  }

  .news__ttl {
    font-size: 2rem;
  }

  .news__dt {
    margin-bottom: 0;
  }

  .news__dd {
    font-size: 1.2rem;
  }

  .news iframe {
    height: 300px;
  }
}

/*============================
	contact
============================*/
.contact {
  padding: 120px 0 0;
  background: linear-gradient(90deg, #1d3b72 0%, #1d3b72 5%, #2e559b 5%, #2e559b 100%);
  color: #fff;
}

.contact__ttl {
  font-size: 5rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.contact__flex {
  margin-bottom: 140px;
}

.contact__left {
  width: 50%;
}

.contact__right {
  width: 50%;
}

.comtact__telwrap {
  width: fit-content;
  margin: 0 5% 0 auto;
}

.contact__tel {
  font-size: 4.8rem;
  letter-spacing: 0.075em;
  line-height: 1;
}

.contact__tel .small {
  font-size: 3rem;
}

.contact__btn a {
  display: block;
  max-width: 420px;
  line-height: 80px;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 auto 0 5%;
  color: #fff;
  border: solid 1px #fff;
}

.contact__btn a:hover {
  opacity: 0.8;
}

.contact__btn img {
  width: 28px;
  margin-right: 10px;
  vertical-align: middle;
}

.contact iframe {
  display: block;
  width: 95%;
  height: 450px;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 1040px) {
  .contact {
    padding: 80px 0 0;
  }

  .contact__ttl {
    font-size: 3rem;
    margin-bottom: 30px;
  }

  .contact__flex {
    margin-bottom: 80px;
  }

  .contact__tel {
    font-size: 3.2rem;
    line-height: 50px;
  }

  .contact__tel a {
    color: #fff;
  }

  .contact__tel .small {
    font-size: 2rem;
  }

  .contact__btn a {
    line-height: 50px;
    font-size: 1.4rem;
    max-width: 280px;
  }

  .contact__btn img {
    width: 15px;
  }

  .contact iframe {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 0 0;
  }

  .contact__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .contact__txt {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .contact__flex {
    margin-bottom: 40px;
  }
  .contact__left {
    width: 100%;
  }

  .contact__right {
    width: 100%;
  }

  .comtact__telwrap {
    margin: 0 auto 20px;
  }

  .contact__tel {
    font-size: 2.4rem;
    line-height: 1;
  }

  .contact__tel .small {
    font-size: 1.6rem;
  }

  .contact__tel img {
    width: 25px;
    vertical-align: top;
  }

  .contact__time {
    font-size: 1.2rem;
  }

  .contact__btn a {
    max-width: 80%;
    width: 220px;
    margin: 0 auto;
    line-height: 40px;
    font-size: 1.2rem;
  }

  .contact__btn img {
    width: 15px;
  }
  .contact iframe {
    height: 200px;
  }
}

/*============================
	footer
============================*/
footer {
  padding: 100px 0 60px;
  background: #1d3b72;
}

.ft__flex {
  margin-bottom: 40px;
}

.ft__left {
  width: 40%;
}

.ft__right {
  width: 60%;
  padding: 0 5% 0 0;
}

.ft__logo {
  width: 245px;
}

.ft__nav {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 10%;
}

.ft-nav__li {
  white-space: nowrap;
  font-size: min(1.4rem, 1.4vw);
  line-height: 1;
  width: 100%;
  white-space: nowrap;
  margin-bottom: 16px;
}

.ft-nav__li a {
  color: #fff;
  width: 100%;
}

.ft__copyright {
  font-size: 1.2rem;
  color: #fff;
}

@media screen and (max-width: 1040px) {
  footer {
    padding: 60px 0 40px;
  }

  .ft__flex {
    margin-bottom: 30px;
  }

  .ft__logo {
    width: 180px;
  }

  .ft-nav__li {
    font-size: 1.2rem;
  }

  .ft__copyright {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  footer {
    padding: 40px 0 20px;
  }
  .ft__flex {
    margin-bottom: 40px;
  }

  .ft__left {
    width: 100%;
  }

  .ft__right {
    width: 100%;
    display: none;
  }

  .ft__logo {
    width: 160px;
    max-width: 100%;
    margin: 0 auto 20px;
    display: block;
  }

  .ft__info {
    display: block;
    text-align: center;
  }

  .ft__nav {
    display: none;
  }

  .ft__copyright {
    font-size: 1rem;
    text-align: center;
  }
}

/*============================
	page top /side btn
============================*/

@keyframes pagetopAnime {
  0% {
    height: 60px;
  }

  50% {
    height: 80px;
  }

  100% {
    height: 60px;
  }
}

#page-top {
  position: absolute;
  width: 30px;
  bottom: 0;
  right: 3%;
  opacity: 0;
  transition: 0.5s;
  z-index: 99;
}

#page-top.active {
  opacity: 1;
}

/* #page-top a::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 80px;
    background: #fff;
    left: 50%;
    bottom: -90px;
    animation: pagetopAnime 2s 0s infinite;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
} */

@keyframes pagetopAnime {
  0% {
    height: 60px;
  }

  50% {
    height: 80px;
  }

  100% {
    height: 60px;
  }
}

#page-top.active {
  opacity: 1;
}

@media screen and (max-width: 1040px) {
  #page-top {
    width: 25px;
  }

  #page-top a {
    font-size: 1.2rem;
  }

  .side__btnwrap {
    width: 35px;
  }

  .side__recruit a {
    width: 35px;
    height: 120px;
    font-size: 1.6rem;
    padding: 10px 0 0;
  }

  .side__recruit a::before {
    border-width: 0 35px 10px 0;
  }

  .side__contact a {
    width: 35px;
    height: 120px;
    font-size: 1.6rem;
    padding: 10px 0 0;
  }

  .side__contact a::before {
    border-width: 0 35px 10px 0;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .side__btnwrap {
    display: none;
  }

  #page-top {
    right: 5px;
  }

  .wow {
    animation-delay: 0s !important;
  }
}
