@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-black2: #1d3846;
  --color-white: #ffffff;

  --color-blue: #537a9b;

  --noto: "Noto Sans JP", sans-serif;
  --ja: "Zen Kaku Gothic New", sans-serif;
  --en: "Josefin Sans", sans-serif;
  --header: 7rem;
  scroll-padding: var(--header);
}


/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1920>> 10px */
  /* font-size: clamp(10px, 0.5208vw, 100px); */
  /* font-size: clamp(5px, 0.907656vw, 10px); */
  /* 1366>> 10px */
  font-size: clamp(5px, 0.732vw, 10px);
  scroll-behavior: smooth;
}

body {
  font-family: var(--ja);
  font-weight: 500;
  font-size: 2rem;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
}


a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */


@media screen and (max-width:767px) {
  html {
    /* 750px>> 10px */
    font-size: 2vw;
  }

}


/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 4rem 13rem 2rem 2rem;
  transition: all .2s;
}

header.changeNav {
  background: var(--color-black2);
}

.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 145rem;
  margin: 0 auto;

}

.nav_left {
  width: 24rem;
  z-index: 201;
  position: relative;
}

.nav_center {
  font-family: var(--en);
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: auto;
  z-index: 201;
  position: relative;
}

.nav_center.sp {
  display: none;
}

.nav_center ul {
  display: flex;
}



.nav_center ul li a {
  width: 4.5rem;
  height: 3.3rem;
  display: grid;
  place-content: center;
  background: var(--color-black2);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  padding-top: 0.6rem;
  transition: all .2s;
  border: 1px solid transparent;
}

.nav_center ul li:first-child a {
  border-radius: 10rem 0 0 10rem;
}

.nav_center ul li:nth-child(2) a {
  border-radius: 0 10rem 10rem 0;
}

.nav_center .is-visit a {
  background: var(--color-white);
  color: var(--color-black2);
}

.nav_center div a img {
  width: 1.4rem;
  display: inline-block;
  position: relative;
  top: -0.8rem;
}

header.changeNav .nav_center div a,
header.changeNav .nav_center ul li a {
  border: 1px solid var(--color-white);
}


.hamburger {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 8rem;
  height: 8rem;
  cursor: pointer;
  z-index: 300;
  transition: all .1s ease-out;
}

/* line open */
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 50%;
  height: 0.2rem;
  background-color: var(--color-white);
  transition: all .4s ease-out;
  transform: translateX(-50%);
}

.hamburger__line--1 {
  top: 35%;
}

.hamburger__line--2 {
  top: 50%;
}

.hamburger__line--3 {
  top: 65%;
}

/* line close */
.open_nav .hamburger__line--1 {
  transform: translateX(-50%) rotate(35deg);
  top: 50%;
}

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

.open_nav .hamburger__line--3 {
  transform: translateX(-50%) rotate(-35deg);
  top: 50%;
}

/* ハンバーガーメニュー内 */
nav.global__nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-black2);
  transition: all .3s ease-out;
  z-index: 200;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  display: grid;
  place-content: center;
}

/* 表示 */
.open_nav .global__nav {
  opacity: 1;
  pointer-events: fill;
}

nav.gnav.global__nav ul {
  text-align: center;
  position: relative;
  color: var(--color-white);
}

nav.gnav.global__nav ul li {
  margin-bottom: 3rem;
}

@media screen and (max-width:767px) {
  header {
    padding: 3rem 2rem 2rem;
  }

  .hamburger {
    right: 0rem;
    top: 0rem;
  }

  .nav_left {
    width: 20rem;
  }

  nav.global__nav {
    padding-top: 15rem;
    display: block;
    place-content: start;
  }

  .nav_center.pc {
    display: none;
  }

  .nav_center.sp {
    display: block;
    margin: 0 auto 6rem;
    width: fit-content;
  }

  .nav_center div a,
  .nav_center ul li a {
    border: 1px solid var(--color-white);
  }

  .nav_center ul li a {
    width: 8.5rem;
    height: 5.3rem;
    font-size: 2.2rem;
    border: 1px solid var(--color-white);

  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 10rem;
}

.section {
  padding-top: 10rem;
}

.c_btn a {
  font-size: 2rem;
  background: var(--color-black2);
  display: block;
  padding: 0.6rem 2rem 0.8rem;
  border-radius: 10rem;
  color: var(--color-white);
  border: 1px solid var(--color-black2);
  width: fit-content;
}

.c_btn.bk a {
  background: var(--color-black);
}

.c_btn.en a {
  font-family: var(--en);
  font-size: 2rem;
  padding-top: 0.8rem;
}

.hd {
  margin-bottom: 6rem;
}

.hd .en {
  display: block;
  font-size: 7rem;
  font-weight: 500;
  font-family: var(--en);
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem 1rem;
  color: #537a9b;
}

.hd .en::before,
.hd .en::after {
  position: absolute;
  content: "";
  height: 0.5rem;
  left: 0;
  width: 50%;
  bottom: -0.4rem;
  background: var(--color-black2);
}

.hd .en::after {
  left: auto;
  right: 0;
  width: 50%;
  bottom: -0.4rem;
  background: #c8c9ca;
}

.hd .en span {
  color: #1d3846;
}

.hd .ja {
  text-align: center;
  display: block;
  font-family: var(--noto);
  font-size: 3.5rem;
  margin-top: 2rem;
}

/* 
.wrap {
  padding: 0 2rem;
} */


@media screen and (max-width:767px) {
  .c_btn a {
    font-size: 2rem;
    padding: 1rem 2rem 1.2rem;
  }

  .c_btn.en a {
    font-size: 2rem;
    padding-top: 1.7rem;
  }

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

  .hd .ja {

    font-size: 3rem;
  }
}

/*================================================
* topics
================================================*/
#topics {
  font-family: var(--noto);
}

#topics .c_btn a {
  margin: 0 auto;
}

.topicsList {
  width: 98rem;
  margin: 0 auto;
}

.topicsList li {
  margin-bottom: 6rem;
}

.topicsList li a {
  display: flex;
  align-items: start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-black);
}


.topicsList li a .date {
  font-size: 1.7rem;
  color: var(--color-blue);
  padding-top: 0.5rem;
}

.topicsList li a .cat {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.5rem;
  font-size: 1.5rem;
}

.topicsList li a .ttl {
  font-size: 2.3rem;
}




@media screen and (max-width:767px) {
  .topicsList {
    width: 92%;
    margin: 0 auto;
  }

  .topicsList li a {
    flex-wrap: wrap;
  }
}


/*================================================
* 
================================================*/
#problem .inner {
  width: 110rem;
  margin: 0 auto;
  font-family: var(--noto);

}

#problem h2 {
  text-align: center;
  font-weight: 700;
  font-size: 5.2rem;
  margin: 3rem 0;
}

#problem p {
  text-align: center;
  color: #1b3d5f;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.5;
  position: relative;
  padding: 0 10rem;
  width: fit-content;
  margin: 8rem auto 0;
}

.problem_icon01,
.problem_icon02 {
  position: absolute;
  width: 8rem;
  top: 50%;
  transform: translateY(-50%);
}

.problem_icon01 {
  left: 0;
}

.problem_icon02 {
  right: 2rem;
}

@media screen and (max-width:767px) {
  #problem .inner {
    width: 92%;
  }

  #problem h2 {
    font-size: 2.8rem;
  }

  #problem p {
    font-size: 3rem;
    padding: 0;
    width: fit-content;
    margin: 8rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }

  .problem_icon01,
  .problem_icon02 {
    position: static;

    transform: translateY(0%);
  }

  .problem_icon01 {
    left: 0;
  }

  .problem_icon02 {
    right: 2rem;
  }
}

/*================================================
* penalty
================================================*/
#penalty {
  background: #e7e9f4;
}

#penalty .inner {
  width: 110rem;
  margin: 0 auto;
}

.penalty_clm {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.penalty_txt {
  width: 79rem;
}

.penalty_img {
  width: 49rem;
}

.penalty_clm h3 {
  font-size: 2.6rem;
  font-weight: 700;
}

.penalty_clm h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-black2);
  width: fit-content;
  border-bottom: 1px solid;
  font-feature-settings: "palt";
  letter-spacing: 0;
}






#penalty .box {
  background: var(--color-black2);
  color: var(--color-white);
  font-size: 2.8rem;
  padding: 3rem;
  margin-top: -5rem;
  position: relative;
}

#penalty .box_en {
  background: var(--color-black2);
  color: var(--color-white);
  font-size: 2.8rem;
  padding: 3rem;
  margin-top: -1rem;
  position: relative;
}


#penalty .box::before {
  position: absolute;
  content: "▼";
  top: -7rem;
  left: 21%;
  color: #4f7594;
}

#penalty .box_en::before {
  position: absolute;
  content: "▼";
  top: -7rem;
  left: 21%;
  color: #4f7594;
}

@media screen and (max-width:767px) {
  #penalty .inner {
    width: 92%;
  }

  .penalty_clm {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }

  .penalty_clm h3 {
    font-size: 2rem;
    font-weight: 700;
  }

  .penalty_clm h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-black2);
    width: fit-content;
    border-bottom: 1px solid;
    font-feature-settings: "palt";
    letter-spacing: 0;
  }

  .penalty_img {
    width: 80%;
  }

  #penalty .box {
    font-size: 2rem;
    padding: 3rem 2rem;
    margin-top: 6rem;
  }

  #penalty .box::before {
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
  }
	
	
  #penalty .box_en {
    font-size: 2rem;
    padding: 3rem 2rem;
    margin-top: 6rem;
  }

  #penalty .box_en::before {
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*================================================
* service
================================================*/
#service {
  background: url(../images/service_bg01.webp) no-repeat center top/cover;
}


#service .inner {
  max-width: 150rem;
  margin: 0 auto;
  position: relative;
	width: 78%;
}

#service .inner p {
  position: absolute;
  font-size: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
}



@media screen and (max-width:767px) {
  #service .inner p {
    font-size: 1.7rem;
    top: 48rem;
    transform: translateX(50%);
    right: 50%;
    white-space: nowrap;
    text-align: center;
  }

  #service .inner {
    width: 96%;
  }
}

/*================================================
* about
================================================*/
#about h2 {
  text-align: center;
  font-size: 3.8rem;
  color: var(--color-black2);
  font-weight: 700;
  margin-bottom: 6rem;
}

#about h2 img {
  width: 85rem;
  margin: 0 auto;
}

#about p {
  text-align: center;
  margin-top: 4rem;
}

@media screen and (max-width:767px) {
  #about h2 {
    text-align: center;
    font-size: 2.6rem;
    color: var(--color-black2);
    font-weight: 700;
    margin-bottom: 6rem;
  }

  #about h2 img {
    width: 40rem;
    margin: 0 auto;
  }
}

/*================================================
* interface
================================================*/
#interface {
  background: #e7e9f4;
}

#interface ul {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
  width: 110rem;
  margin: 0 auto;
}

@media screen and (max-width:767px) {
  #interface ul {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    width: 92%;
  }
}

/*================================================
* strength
================================================*/

#strength {
  background: #537a9b;
}

#strength h2 {
  color: var(--color-white);
  font-size: 5rem;
  font-family: var(--noto);
  margin-bottom: 6rem;
  text-align: center;
}

.strengthList {
  width: 110rem;
  margin: 0 auto;
}

.strengthList li {
  background: var(--color-white);
  padding: 6rem;
  border-radius: 2rem;
  margin-top: 5rem;
}

.strengthList li h3 {
  font-size: 3.5rem;
  font-weight: var(--noto);
  border-bottom: 1px solid var(--color-black2);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  position: relative;
  padding-left: 4rem;
  font-weight: 700;
  line-height: 1.4;
}

.strengthList li h3 span {
  width: 13rem;
  height: 13rem;
  font-size: 10rem;
  font-family: var(--en);
  display: grid;
  place-content: center;
  color: var(--color-white);
  background: var(--color-black2);
  position: absolute;
  left: -13rem;
  top: -3rem;
  z-index: 1;
}

.strengthList li h3 span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #e6e6e6;
  right: -1rem;
  bottom: -1rem;
  z-index: -1;
}

.strengthList li h3 span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-black2);
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width:767px) {
  #strength h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }

  .strengthList {
    width: 92%;
    margin: 0 auto;
  }

  .strengthList li {
    padding: 3rem;
    border-radius: 2rem;
  }

  .strengthList li h3 {
    font-size: 2rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    padding-left: 4rem;
  }

  .strengthList li h3 span {
    width: 6rem;
    height: 6rem;
    font-size: 3.5rem;
    left: -4rem;
    top: 0rem;
  }
}

/*================================================
* corporate
================================================*/
.corporate_clm {
  display: flex;
  justify-content: space-between;
  width: 123rem;
  margin: 0 auto;
}

.co_item01 {
  width: 70rem;
  background: rgb(222 234 247 / 43%);
  padding: 6rem 3rem;
}

.co_item01 dl {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-wrap: wrap;
}

.co_item01 dl dt {
  width: 20rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px dotted;
}

.co_item01 dl dd {
  width: calc(100% - 20.1rem);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px dotted;
  margin-left: 0.1rem;
}

.co_item02 {
  width: 48rem;
}

.co_item02 dl {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-wrap: wrap;
}

.co_item02 dl dt {
  width: 12rem;
  padding-bottom: 2rem;
}

.co_item02 dl dd {
  width: calc(100% - 12rem);
  padding-bottom: 2rem;
}

.co_item03 {
  width: 48rem;
}

.co_item03 dl {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-wrap: wrap;
}

.co_item03 dl dt {
  width: 12rem;
  padding-bottom: 2rem;
}

.co_item03 dl dd {
  width: calc(100% - 12rem);
  padding-bottom: 2rem;
}

@media screen and (max-width:767px) {
  .corporate_clm {
    flex-wrap: wrap;
    width: 92%;
    gap: 3rem;
  }

  .co_item01 {
    width: 100%;
  }

  .co_item01 dl dt {
    width: 14rem;
  }

  .co_item01 dl dd {
    width: calc(100% - 14.1rem);
  }

  .co_item02 {
    width: 100%;
  }

  .co_item03 {
    width: 100%;
  }
}

/*================================================
* philosophy
================================================*/
#philosophy {
  background: #1d3846;
  color: var(--color-white);
}

#philosophy .en {
  color: var(--color-white);
}

#philosophy .en::before {
  background: #537a9b;
}

.philosophyList {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: start;
  width: 110rem;
  margin: 0 auto;
}


.philosophyList dt {
  width: 19rem;
  margin-bottom: 4rem;
}

.philosophyList dt p {
  background: var(--color-white);
  color: var(--color-black2);
  padding: 0.5rem 1rem;
}

.philosophyList dd {
  width: calc(100% - 19rem);
  padding-left: 2rem;
  margin-bottom: 4rem;
}

.philosophyList dd li {
  display: flex;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.philosophyList dd li span {
  font-size: 6.2rem;
  font-family: var(--en);
  font-weight: 700;
  display: block;
  min-width: 3rem;
  text-align: center;
  position: relative;
  top: -1rem;
}


@media screen and (max-width:767px) {
  .philosophyList {
    width: 92%;
  }

  .philosophyList dt {
    width: 100%;
    margin-bottom: 2rem;
  }



  .philosophyList dd {
    width: 100%;
    padding-left: 0;
    margin-bottom: 6rem;
  }
}

/*================================================
* contact
================================================*/
#contact {
  background: #000000;
  color: var(--color-white);
}



#contact .en {
  color: var(--color-white);
}

#contact .en::before {
  background: #537a9b;
}

#contact .c_btn {
  margin-top: 5rem;
}

#contact .c_btn a {
  font-size: 3.8rem;
  color: var(--color-black);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0.6rem 10rem 0.8rem;
  gap: 2rem;
}

#contact .c_btn a img {
  width: 3.8rem;
}

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

/*================================================
* 
================================================*/


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

/*================================================
* 
================================================*/

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

/*================================================
* 
================================================*/


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

/*================================================
* 
================================================*/

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

/*================================================
* 
================================================*/


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

/*================================================
 *  footer
 ================================================*/
footer {
  padding: 5rem 0;
  text-align: center;
  font-size: 2rem;
}


@media screen and (max-width:767px) {
  footer {
    padding: 5rem 0;
    text-align: center;
    font-size: 1.2rem;
  }
}


/*================================================
* subMain
================================================*/
#subMain {
  padding: 10rem 2rem;
  background: var(--color-black2);
  margin-bottom: 10rem;
}

#subMain img {
  width: 32rem;
}

#subMain .hd span {
  color: var(--color-white);
}

#subMain .hd .en::before {
  background: var(--color-white);
}

@media screen and (max-width:767px) {
  #subMain {
    padding: 12rem 2rem 3rem;
  }

  #subMain img {
    width: 11rem;
  }
}

/*================================================
* topicsDetail
================================================*/
#topicsDetail {
  padding-top: 6rem;
}

#topicsDetail .wrap {
  width: 98rem;
  margin: 0 auto;
}

#topicsDetail h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}

#topicsDetail .date {
  text-align: right;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

#topicsDetail .topics_img {
  margin: 4rem auto;
}

#topicsDetail img {
  height: auto;
}


.topicsPages .topics_list li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 4rem;
}

.pnavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 10rem;
}

.pnavi a,
.pnavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1000px;
}

.pnavi a:hover,
.pnavi span.current {
  opacity: 1;
  background: var(--color-black2);
  color: var(--color-white);
}


.backBtn {
  text-align: center;
  margin: 10rem 0 0;
}

.backBtn a {
  text-decoration: underline;
}

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


  #topicsDetail {
    padding-top: 0;
  }

  #topicsDetail h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
  }

  #topics.topicsPages {
    padding-top: 0;
  }

  #topicsDetail .wrap {
    width: 92%;
    margin: 0 auto;
  }
}

/*================================================
* contact
================================================*/
#contactPages .hd {
  margin-bottom: 2rem;
}

#contactPages .form {
  width: 90rem;
  margin: 0 auto;
}

#contactPages .wp-block-snow-monkey-forms-item {
  margin: 1rem 0 3rem;
}



.form .smf-item__col--label {
  margin-bottom: 1rem;
}

.smf-item__label__text {
  position: relative;
  padding-right: 6rem;
}

.form .wp-block-snow-monkey-forms-item:has([data-validations="required"]) .smf-item__label__text::before,
.form .wp-block-snow-monkey-forms-item:has([data-validations="email required"]) .smf-item__label__text::before {
  position: absolute;
  content: "必須";
  color: var(--color-white);
  font-weight: 600;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  background: #be0000;
  padding: 3px 1rem 4px;
  border-radius: 3px;
  line-height: 1;
}

.form .smf-form .smf-text-control__control,
.form .smf-form .smf-textarea-control__control {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  padding: 1rem;
  --_border-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  box-shadow: unset;
  min-height: 5rem;
}

.form .smf-form .smf-textarea-control__control {
  height: 20rem;
}


.form .smf-action .smf-button-control__control {
  background-color: var(--color-black2);
  font-size: 2rem;
  font-weight: 600;
  background-image: none;
  color: var(--color-white);
  padding: 2rem 10rem;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width:767px) {
  #contactPages .form {
    width: 92%;
    margin: 0 auto;
    min-width: unset;
  }
}