@charset "utf-8";

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0
}

html,
body {
  height: 100%
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%
}

input,
button,
textarea,
select {
  font: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word
}

#root,
#__next {
  isolation: isolate
}

/*------------------------------------------------------------
●common
-------------------------------------------------------------*/
:root {
  --orange: #f36c00;
  --bright-orange: #ffba7b;
  --dark-orange: #e06200;
  --thin-orange: #ffe7c1;
  --bs-white: #fff;
  --bs-black: #333;
  --text-color: #333;
  --bg-black: #464646;
  --fc-gray: #666;
  --comp-color: #0b2a59;
  --bright-comp-color: #dae9ff;
  --accent-color: #00a6b7;
  --bright-grey: #f6f6f6;
  --grey: #c2c2c2;
  /* --cta-btn: #d8d84f; */
  /* --cta-btn-hover: #0847c3; */
  --font-base: 'Noto Sans JP', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --gradient-comp-color: linear-gradient(110deg, #0064ce 0%, var(--comp-color) 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Noto+Sans+JP:wght@400;700&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bs-white);
  color: var(--bs-black);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

section {
  padding: 60px 0 4rem;
}

.content_maxwidth {
  margin: 0 auto;
  width: 1000px;
}

@media screen and (max-width: 1000px) {
  .content_maxwidth {
    padding: 0 20px;
    width: auto;
  }
}

a {
  transition: .3s;
}

/* a:visited {
  color: var(--dark-orange);
} */

a:hover {
  /* color: var(--bright-orange); */
}

a:hover img {
  opacity: .7;
}

h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2em;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 30px;
  padding-bottom: 15px;
  /* border-bottom: 2px solid var(--comp-color); */
  position: relative;
}

h2 span {
  font-size: 1.4rem;
  font-weight: normal;
}

.contents-menu {
  margin: 0 auto;
  max-width: 925px;
  width: 100%;
}

.breadcrumb {
  font-size: .875rem;
  margin: 1rem auto 1.5rem;
}

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

.bc_white {
  background: var(--bs-white);
}

.bc_gray {
  background: var(--bs-gray);
}

.mtitle {
  background: var(--bs-rightblue);
  font-size: 1.875rem;
  margin-bottom: 1em;
  text-align: center;
}

.txt-j {
  text-align: justify;
}

.jirei_section {
  background-color: #f8fcff;
}

.border {
  border: solid 1px var(--text-color);
}

.border-grey,.border-short {
  border: solid 1px var(--grey);
}

.disabled {
  pointer-events: none;
  cursor: default;
  color: #666;
  text-decoration: none;
}