@charset "utf-8";

/*
Theme Name: shunsetsu
*/
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

:root {
  --color-white: #fff;
  --color-cream: #FAFAF0;
  --color-orange: #FF6C00;
  --color-blue: #0552B5;
  --color-lightblue: #F0F5FC;
  --color-red: #BB0033;
  --color-black: #000;
  --color-lightblack: #3B4043;
  --color-gray: #707070;
  --color-lightgray: #CDD6DD;
}

body {
  position: relative;
  overflow-x: hidden;
  line-height: 1.75;
  color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.mincho {
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}

.en {
  font-family: "Lato", sans-serif;
}

main {
  position: relative;
  z-index: 1;
}

.wrapper {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  color: inherit;
  opacity: .7;
}

a:focus {
  text-decoration: none;
}

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

.container {
  max-width: 1114px;
  width: 90%;
  margin: auto;
}

.container.middle {
  max-width: 1206px;
}

.container.wide {
  max-width: 90%;
}

.invisible {
  visibility: hidden;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.grid {
  display: grid;
}

a[href^="mailto"] {
  text-decoration: none;
}

@media (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}

@media (max-width:767px) {
  body {
    font-size: 1.4rem;
  }
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5,82,181,.87);
  color: var(--color-white);
  z-index: 100;
}

header .headWrap {
  padding: 8px 90px 7px 10px;
  align-items: flex-end;
}

header .logo a {
  align-items: center;
}

header a {
  display: block;
  color: var(--color-white);
}

header .pc-nav {
  padding: 0 0 28px 50px;
  width: calc(100% - 285px);
}

header .pc-nav ul {
  justify-content: flex-end;
}

header .pc-nav li {
  margin-right: 60px;
}

header .pc-nav li a {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

header .pc-nav li.ig {
  margin-right: 40px;
}

header .global-nav {
  position: fixed;
  right: 0;
  top: 0;
  padding: 120px 80px 100px 100px;
  width: 100%;
  max-width: 751px;
  background: var(--color-blue) url(assets/img/common/menu_bg.png) repeat-x center top / auto;
  z-index: 100;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  visibility: hidden;
  transition: all 0.4s ease;
}

.hamburger {
  display: block;
  position: fixed;
  right: 40px;
  top: 35px;
  width: 50px;
  height: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 300;
  transition: all 0.5s ease-in-out;
}

header .global-nav ul {
  width: 45%;
}

header .global-nav li {
  margin-bottom: 50px;
}

header .global-nav li a {
  line-height: 1;
}

header .global-nav li .en {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
}

header .global-nav li .jp {
  display: block;
  margin-top: 10px;
  letter-spacing: 1px;
}

header .global-nav .privacy a {
  font-weight: 700;
  text-decoration: underline;
}

header .global-nav .privacy a:hover {
  text-decoration: none;
}

.hamburger__line {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 50px;
  height: 2px;
  background-color: var(--color-white);
  transition: all .6s;
}

.hamburger__line--1 {
  top: 0px;
}

.hamburger__line--2 {
  top: 12px;
}

.hamburger__line--3 {
  top: 24px;
  margin: 0;
  width: 20px;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.nav-open .global-nav .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}

.nav-open .hamburger__line--1 {
  transform: rotate(20deg);
  top: 15px;
}

.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.nav-open .hamburger__line--3 {
  transform: rotate(-20deg);
  top: 15px;
  width: 100%;
}

@media (max-width: 1300px) {
  header .headWrap {
    padding: 20px 90px 19px 10px;
  }

  header .logo {
    width: 200px;
  }

  header .pc-nav {
    padding: 0 0 10px 30px;
    width: calc(100% - 200px);
  }

  header .pc-nav li {
    margin-right: 30px;
  }

  header .pc-nav li a {
    font-size: 1.3rem;
  }

  header .global-nav li {
    margin-bottom: 40px;
  }

  header .global-nav li .en {
    font-size: 2.4rem;
  }

  header .global-nav li .jp {
    font-size: 1.4rem;
  }
}

@media (max-width: 1000px) {
  header .headWrap {
    padding: 28px 80px 28px 10px;
  }

  header .logo {
    width: 141px;
  }

  header .pc-nav {
    padding: 0 0 6px 10px;
    width: calc(100% - 150px);
  }

  header .pc-nav li,
  header .pc-nav li.ig {
    margin-right: 10px;
  }

  header .pc-nav li a {
    font-size: 1.1rem;
  }

  header .global-nav {
    padding: 100px 50px 80px 80px;
    max-width: 600px;
  }

  header .global-nav li {
    margin-bottom: 30px;
  }

  header .global-nav li .en {
    font-size: 2rem;
  }

  header .global-nav li .jp {
    font-size: 1.3rem;
  }

  header .global-nav .ig img {
    max-width: 30px;
  }

  .hamburger {
    right: 20px;
  }
}

@media (max-width: 767px) {
  header .headWrap {
    padding: 7px 60px 6px 10px;
    align-items: center;
  }

  header .pc-nav {
    padding: 0;
    width: calc(100% - 150px);
  }

  header .pc-nav li {
    display: none;
  }

  header .pc-nav li.ig {
    display: block;
  }

  header .global-nav {
    padding: 50px 10%;
    height: 100vh;
  }

  header .logo2 {
    margin: 0 0 30px -8%;
  }

  header .global-nav ul {
    width: 100%;
  }

  header .global-nav li {
    margin-bottom: 30px;
  }

  header .global-nav li .en {
    font-size: 1.8rem;
  }

  header .global-nav li .jp {
    margin-top: 5px;
    font-size: 1.2rem;
  }

  header .global-nav .ig {
    position: absolute;
    right: 10%;
    bottom: 5%;
  }

  header .global-nav .privacy {
    position: absolute;
    right: 25%;
    bottom: 6%;
    font-size: 1.3rem;
  }

  .hamburger {
    top: 19px;
    width: 25px;
    height: 26px;
  }

  .hamburger__line {
    width: 25px;
  }

  .hamburger__line--1 {
    top: 0px;
  }

  .hamburger__line--2 {
    top: 8px;
  }

  .hamburger__line--3 {
    top: 16px;
    right: auto;
    width: 12px;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(20deg);
    top: 8px;
  }

  .nav-open .hamburger__line--2 {
    top: 8px;
    left: 0;
    transform: rotate(-20deg);
    width: 100%;
  }

  .nav-open .hamburger__line--3 {
    width: 0;
  }
}

/* common style
-------------------------------------------------------------- */
#mv {
  position: relative;
  overflow: hidden;
}

#mv::after {
  position: absolute;
  bottom: -130px;
  left: -5%;
  width: 110%;
  height: 200px;
  border-radius: 50%;
  background: var(--color-white);
  content: "";
  z-index: 1;
}

.eachTextAnime span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 0.3s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.eachTextAnime.vertical span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
}

.eachTextAnime.vertical.appeartext span {
  animation: text_anime2_on 0.3s ease-out forwards;
}

@keyframes text_anime2_on {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#mv h1 {
  position: absolute;
  top: 40%;
  right: calc((100% - 1114px) / 2);
  color: var(--color-white);
}

#mv h1 .en {
  display: block;
  padding-bottom: 10px;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

#mv h1 .jp {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.ttl_h2 {
  color: var(--color-blue);
}

.ttl_h2 .en {
  display: block;
  padding-bottom: 10px;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

.ttl_h2 .jp {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.btn-more {
  justify-content: flex-end;
}

.btn-more a {
  position: relative;
  align-items: center;
  box-sizing: border-box;
  width: 230px;
  color: var(--color-blue);
  line-height: 1;
}

.btn-more a span {
  font-size: 2.4rem;
  font-weight: 700;
}

.btn-more a img {
  transition: all 0.5s ease-in-out;
}

.btn-more a:hover img {
  transform: translateX(20px);
}

.btn-back {
  justify-content: center;
}

.btn-back a {
  position: relative;
  align-items: center;
  box-sizing: border-box;
  width: 150px;
  color: var(--color-blue);
  line-height: 1;
}

.btn-back a span {
  font-size: 2.4rem;
  font-weight: 700;
}

.btn-back a img {
  transition: all 0.5s ease-in-out;
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  #mv::after {
    bottom: -70px;
    left: -25%;
    width: 150%;
    height: 100px;
  }
  
  #mv h1 {
    top: 52%;
    left: 10%;
    right: 10%;
    width: 80%;
  }
  
  #mv h1 .en {
    padding-bottom: 5px;
    font-size: 3.6rem;
  }
  
  #mv h1 .jp {
    font-size: 1.4rem;
  }
  
  .ttl_h2 .en {
    padding-bottom: 5px;
    font-size: 3.6rem;
  }

  .ttl_h2 .jp {
    font-size: 1.3rem;
  }

  .btn-more a {
    margin: auto;
    width: 160px;
  }

  .btn-more a span {
    font-size: 2rem;
  }

  .btn-more img {
    width: 32px;
  }
  
  .btn-back a {
    margin: auto;
    width: 100px;
  }

  .btn-back a span {
    font-size: 2rem;
  }

  .btn-back img {
    width: 32px;
  }
}

/* point
-------------------------------------------------------------- */
.point {
  padding: 80px 0 60px;
  background: linear-gradient(to bottom left, #E3F9FF, #F0F5FC);
  border-radius: 70px 70px 0 0;
}

.point .txt-area {
  width: 340px;
}

.point h3 strong {
  display: inline-block;
  margin-bottom: 8px;
  background: var(--color-orange);
  color: var(--color-white);
}

.point h3 span {
  display: inline-block;
  font-weight: 700;
}

.point h3 .jp {
  padding: 10px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.point ul {
  width: calc(100% - 410px);
}

.point li {
  position: relative;
  padding: 0 0 20px 50px;
  font-size: 2rem;
  font-weight: 500;
}

.point li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 32px;
  background: url(assets/img/common/ico_check.svg) no-repeat center / contain;
  content: "";
}

@media (max-width: 767px) {
  .point {
    padding: 35px 0 20px;
    border-radius: 20px 20px 0 0;
  }
  
  .point .txt-area {
    width: 100%;
  }
  
  .point h3 strong:last-of-type {
    margin-left: -22px;
  }
  
  .point h3 .jp {
    padding: 5px 10px;
    font-size: 2rem;
  }
  
  .point ul {
    padding-top: 20px;
    width: 100%;
  }
  
  .point li {
    padding: 0 0 15px 30px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .point li::before {
    width: 25px;
    height: 21px;
  }
}

/* cv
-------------------------------------------------------------- */
#cv .btn a {
  margin: 100px auto;
  max-width: 410px;
}

#cv .btn a span {
  display: block;
  color: var(--color-blue);
  line-height: 1;
}

#cv .btn a .en {
  padding-bottom: 20px;
  font-size: 5rem;
  font-weight: 900;
}

#cv .btn a .jp {
  font-weight: 700;
}

#cv .btn a img {
  transition: all 0.5s ease-in-out;
}

#cv .btn a:hover img {
  transform: translateX(20px);
}

@media (max-width: 767px) {
  #cv .btn a {
    margin: 60px auto;
    max-width: 280px;
  }

  #cv .btn a .en {
    padding-bottom: 10px;
    font-size: 3.6rem;
  }

  #cv .btn a .jp {
    font-size: 1.3rem;
  }

  #cv .btn img {
    width: 40px;
  }
}

/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  padding: 100px 0 60px;
  background: var(--color-blue);
  color: var(--color-white);
}

footer .container {
  justify-content: flex-end;
}

footer .info {
  padding-right: 10%;
  width: 45%;
}

footer .info address {
  padding: 40px 0 0 40px;
  font-size: 2rem;
  font-style: inherit;
  line-height: 1.7;
}

footer .f-nav {
  justify-content: flex-start;
  width: 55%;
}

footer .f-nav ul {
  padding-right: 5%;
  width: 45%;
}

footer .f-nav li {
  margin-bottom: 50px;
}

footer .f-nav li a {
  line-height: 1;
}

footer .f-nav li .en {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
}

footer .f-nav li .jp {
  display: block;
  margin-top: 10px;
  letter-spacing: 1px;
}

footer .f-nav .privacy a {
  font-weight: 700;
  text-decoration: underline;
}

footer .f-nav .privacy a:hover {
  text-decoration: none;
}

footer .ig {
  padding: 20px 0 30px;
  width: 100%;
  text-align: right;
}

footer .copy {
  width: 100%;
  font-size: 1.4rem;
  text-align: right;
  line-height: 1;
}

/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 50px;
  right: 3%;
  width: 70px;
  cursor: pointer;
  z-index: 20;
}

#Pagetop p {
  color: var(--color-blue);
  font-weight: 500;
}

#Pagetop .dot {
  display: inline-block;
  margin-left: 10px;
  background: var(--color-blue);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

#Pagetop:hover .dot {
  transform: scale(1.4);
}

@media (max-width: 767px) {
  footer {
    padding: 40px 0 30px;
  }

  footer .container {
    justify-content: flex-start;
  }

  footer .info {
    padding: 0 0 40px;
    width: 1000%;
  }

  footer .logo {
    width: 300px;
  }
  
  footer .info address {
    padding: 20px 0 0 20px;
    font-size: 1.4rem;
  }

  footer .f-nav {
    padding-left: 20px;
    width: 100%;
  }

  footer .f-nav ul {
    padding: 0;
    width: 100%;
  }

  footer .f-nav li {
    margin-bottom: 20px;
  }

  footer .f-nav li .en {
    font-size: 2rem;
  }

  footer .f-nav li .jp {
    margin-top: 5px;
    font-size: 1.3rem;
  }

  footer .f-nav .privacy a {
    font-size: 1.2rem;
  }

  footer .ig {
    padding: 20px;
  }

  footer .ig img {
    width: 30px;
  }

  footer .copy {
    padding-right: 20px;
    font-size: 1rem;
  }

  #Pagetop {
    bottom: 20px;
    width: 50px;
  }

  #Pagetop .dot {
    width: 6px;
    height: 6px;
  }
}

/* 404
-------------------------------------------------------------- */
#errormsg {
  padding: 100px 0;
}

#errormsg p {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 767px) {
  #errormsg {
    padding: 60px 0 150px;
  }

  #errormsg p {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: left;
  }

  #errormsg .btnMore {
    text-align: center;
  }
}